2008年12月11日 星期四

Web Capture

在Firefox中, 可以用套件把整個web畫面給capture成JPG/PNG等圖檔, 而不需另用snagIt之類的螢幕擷取軟體.
但是也要打開firefox才行, 外部程式跟firefox的異質性整合似乎不是一件simple的事情.
在.Net Framework中, 1.1版尚未納入web browser進入managed code, 但在.net 2.0裡已經可以使用了.
(還在1.1的時候還得include DLL進來, 真是發神經@#%^&*&^%$@)
.net 2.0提供方便使用的web browser component, 這當然是指微軟派的IE啦, 如此, 寫一隻console mode程式便也可以call IE再背景並render 所有網頁元素, 此時整個網頁load完成時便可觸發complete事件, 於是乎, 再使用便利的.net提供的function call即可把整張render好的網頁"draw to bitmap" !!
有了bitmap raw檔, 便可存成任意格式的圖檔摟.

(Code Project: Capture Entire Web Page)

http://www.codeproject.com/KB/vb/WebCapture.aspx

但是也有更簡潔的程式, Console就可以執行, IECapt

-----------------------------------------------------------------------------

Usage: IECapt --url=http://www.example.org/ --out=localfile.png

-----------------------------------------------------------------------------

 --help                      Print this help page and exit

 --url=                 The URL to capture (http:...|file:...|...)

 --out=                The target file (.png|bmp|jpeg|emf|...)

 --min-width=           Minimal width for the image (default: 800)

 --max-wait=             Don't wait more than (default: 90000, inf: 0)

 --delay=                Wait after loading (e.g. for Flash; default: 0)

 --silent                    Whether to surpress some dialogs

-----------------------------------------------------------------------------

http://iecapt.sf.net - (c) 2003-2008 Bjoern Hoehrmann -

只需要提供網址以及儲存檔名跟附加選項, 就可以很容易被其他程式外部呼叫. 雖然這是一隻獨立的Win32 Exe, 但是現在各語言已經有提供外部呼叫程式並等待其結束後再返回原有程式繼續執行. Java使用時亦很方便.

Process proc = Runtime.getRuntime().exec("exec command string");
int exitValue = proc.waitFor();
http://iecapt.sourceforge.net/

How to read size and resize image without graphics (Thumbnail)

現今操作圖片都是使用java awt, awt裡提供getScaleInstance, 這個被批得半死, performance差的要死, 所以陸續其它人提出一些方式, 再測試過那些方式之後, 發現java 早在1.1的時代, 就有JIMI, 不知道是不是因為太舊了, 所以大家都把他遺忘了, 而改去用後來的ImageIO.
Java Image Management Interface, JIMI
要使用JIMI就如JMF一樣, 先到http://java.sun.com/products/jimi/
下載jar檔回來即可import.
/**
 * Insert the method's description here.
 * Creation date: (8/12/01 6:28:37 PM)
 */
void writeWithResizeMediaTracker()
{
try
{
Image inImage = new ImageIcon("input.jpg").getImage();
//
int maxDim = 120;
double scale = (double) maxDim / (double) inImage.getHeight(null);
if (inImage.getWidth(null) > inImage.getHeight(null))
{
scale = (double) maxDim / (double) inImage.getWidth(null);
}
// Determine size of new image.
//One of them
// should equal maxDim.
int scaledW = (int) (scale * inImage.getWidth(null));
int scaledH = (int) (scale * inImage.getHeight(null));
//
//
System.out.println(">> " 
+ inImage.getSource().getClass() 
+ " aspect ratio = " 
+ scaledW + " , " + scaledH);
Image img = inImage.getScaledInstance(scaledW , scaledH, Image.SCALE_SMOOTH);
File outputFile = new File("output.jpg");
outputFile.delete();
JimiRasterImage raster = Jimi.createRasterImage(img.getSource());
FileOutputStream fos = new FileOutputStream(outputFile);
Jimi.putImage("image/jpeg", raster, fos);
fos.flush();
fos.close();
}
catch (Throwable t)
{
t.printStackTrace();
}
}
Usage:
Input: input.jpg
Output: output.jpg
MaxDim: 最大長邊的pixel數
Thx for Kaan: http://home.tiscali.nl/~bmc88/java/sbook/ http://home.tiscali.nl/~bmc88/java/sbook/0132.html

2008年11月9日 星期日

好可怕的網站

今天打開錢櫃的網站, 居然被提示警告說這是危險網站!!

2008年11月4日 星期二

Ayu MIDI Collection Site

http://ayumi.primenova.com/midi.php

Convert MP3/WAV to MAF/MID/MLD

http://smaf-yamaha.com/tools/panasonic/index.html
Supported Windows Vista *SSD (SMAF Sound Decorator) ( Ver.1.2.3 ) [Release Note] SSD creates SMAF files(.mmf) from SMF(.mid). The SMAF files(.mmf) may be converted into .mld files for Panasonic handsets by SCP-MA2-P. Please use MA-2 mode of SSD for SCP-MA2-P. *WSD (Wave Sound Decorator) ( Ver.1.1.0 ) [Release Note] WSD creates SMAF files(.mmf) from Wave files(.wav/.aif). The SMAF files(.mmf) may be converted into .mld files for Panasonic handsets by SCP-MA2-P. Please use MA-2 mode of WSD for SCP-MA2-P.

Guide for copying videos, music, pics, ringtone, etc on NTT DoCoMo P905i

Ref: http://forums.hardwarezone.com.sg/showthread.php?t=1892278
This guide also can be used for the following DoCoMo handsets: - SO905iCS => WMA, Pictures, 3gp (verified by xenocide, johnmoon, Cryptrus) Hopefully this thread will be useful to fellow P905i users. Please do contribute ur tips as well. Thx This guide is for Windows only, as most of the software works on Windows only. Music 1. SD-Audio 2. WMA 3. AAC/3GP Last updated: Mar 14th, 2008 Video 1. MP4/3GP 2. WMV/ASF Last updated: Apr 8th, 2008 Picture 1. Use Datalink 2. Copy Manually Last updated: Mar 10th, 2008 Ringtone 1. AAC 2. I-Motion MP4 (video ringtone) 3. SMF/MLD Last updated: Apr 03rd, 2008 JAVA MIDP/I-Appli Games Last updated: Mar 9th, 2008 Kisekae Tool (Theme) Last updated: Apr 8th, 2008 ToruCa (Mobile coupon) Last updated: Apr 8th, 2008 ---------------------------------------------------------------------------------------------- Most of this is already covered by the manual, but its easier to report our findings here. USB Mode Setting 1. Communication Mode – Data sync/modem 2. microSD mode – phone become a microSD reader 3. MTP mode – Media Transfer Protocol, able to use WMP to sync files To change USB Mode setting: Menu => Settings => Other settings => USB mode setting
------------------------------------------------------------------------
Music 1. SD-Audio Requirements: - Microsoft AppLocale Utility - SD Jukebox/Moocs Player - SD card reader or USB cable (set to microSD mode) Masayuki has kindly uploaded the SD Jukebox/Moocs Player for us here: http://forums.hardwarezone.com.sg/sh....php?t=1885373 Before installing the Japanese version SD-Jukebox, install the Microsoft AppLocale Utility 1st so u can view non-Unicode apps. (credit: K_Gokiburi) http://www.microsoft.com/downloads/d...displaylang=en Just like any other Media Software, just pop ur CDs in & u can rip the contents to Moocs library. To sync with ur phone, drag the songs to the SD card. The program will automatically encode ur songs into SD-Audio. To add album art, drag pictures to the box on the upper left, below the word “Moocs” For more details, refer to K_Gokiburi's post: http://forums.hardwarezone.com.sg/sh...6&postcount=32 However, it may not accept: - mp3 file (need commercial version of Moocs Player, i think) - iTunes AAC
------------------------------------------------------------------------
2. WMA Requirements: - Windows Media Player 10/11 - USB Cable (set to MTP mode) This is the easiest method, since all of us have WMP in our system. I’m using this method for my music as well. Once u plugged in the USB cable & set the phone to MTP mode, WMP will automatically detect ur phone (see pic below) & ready to sync.
This image has been resized. Click this bar to view the full image. The original image is sized 799x567.
U will need to convert ur song collection to WMA before dumping them to WMP library. I use dBPoweramp converter + WMA codec. - Choose WMA 9.2 /Lossless. - Either VBR or CBR is fine - 192Kbps for best quality/size ratio. Album art/jacket guide: - Highlight all the particular songs that u want to add cover to, then drag cover art picture into the square next to the songs (see pic above). - Another method, highlight all the particular songs, right click & select "Advanced Tag Editor", go to "Pictures" and add ur album cover there. Choose "Cover (front)" for the "Picture Type". If the album art doesn't appear on the phone, it means the album art picture is not embedded correctly into the songs. Go back to WMP library, right click on the song and choose "Advanced Tag Editor". Go to "Pictures" and make sure there's an album art there, also "Cover (front)" must be selected on the "Picture type". Click the “Start Sync” button at the lower right corner once you’ve dragged all ur files into the phone. After its done, disconnect the USB cable and fire up the music player on ur phone.
This image has been resized. Click this bar to view the full image. The original image is sized 852x640.
------------------------------------------------------------------------
3. AAC/3GP Requirements: - 3gp converter - microSD card reader or USB cable (set to microSD mode) Use Calcium 3gp converter to convert to HE/HE2 AAC (extension 3gp). Drop ur files into: PRIVATE => DOCOMO => MMFILE => MUDxxx If u didn't see the MMFILE folder inside DOCOMO folder. Use ur computer to create one and its child directory, for e.g: MMFILE => MUD001, MUD002, MUD003, etc. U also have to rename ur files to MMF001.3gp, MMF002.3gp, MMF003.3gp, etc. If not the phone can’t see them at all. Besides, ur most likely wont be able to view the album art.
------------------------------------------------------------------------
Video 1. MP4/3GP Requirements: - Total Video Converter or 3gp Converter - microSD card reader or USB cable (set to microSD mode) Use ur favorite software to convert ur videos into MP4 or 3GP files. I use Total Video Converter for mine. Video Bit Rate: 500-1500Kbit/s Resolution: 640 x 480 (VGA) or 640 x 352 (Wide HVGA) On ur phone, go to: Menu => Data box => I-Motion => microSD => Movie If u’ve taken a video using the camera & saved to microSD before, u will see a folder called PRL001 which contains ur recorded video file (eg: MOL001). Feel free to create new folders here, u can name it anything. Once ur done, connect ur phone to the computer. Navigate to the folder called SD_VIDEO. U can see the folders u’ve created before. Yeah, even if u’ve renamed the folder using ur phone before, it will still appear as PRL001, PRL002, PRL003, and so on. Now drop ur mp4 or 3gp files into one of these folders. Rename the files as MOL001.xxx, MOL002.xxx, MOL003.xxx, MOL004.xxx, etc. "xxx" is file extension. U can rename these files again using ur phone. 
------------------------------------------------------------------------
2. WMV/ASF (credit: kenhanabi) Requirements: - Total Video Converter or any other converter apps - microSD card reader or USB cable (set to microSD mode) Just drop ur WMV/ASF files into: PRIVATE => DOCOMO => MOVIE => MVUDxxx If u didn't see the MOVIE folder inside DOCOMO folder. Use ur computer to create one and its child directory, for e.g: MOVIE => MVUD001, MVUD002, MVUD003, etc. No need to rename the files at all. To watch these movies on ur phone, go to: Menu => Data box => PC Movie Note: If using Total Video Converter to convert ur WMV - Use "Zune WMV" setting. - Video Bit Rate: 500-1000Kbit/s - Resolution: MUST be 320 x 240, otherwise ur video wont appear.   
------------------------------------------------------------------------
Ringtone 1. AAC
Quote:
Originally Posted by haonan
I haven't really started playing with making customised ringtones for my SH905i, but I just went to check out the MobileHackerz 3GP wiki site to seek some references regarding ringtones for FOMA handsets, and I'm afraid I have to drop this bad news on u guys.
  • 500KB以下のファイルはWeb経由で着信音、メール着信音などに登録可能になります。
A mere translation of the above for those who don't understand the sentence, it means that for setting a normal ringer ringtone and email ringtone, it has to be below 500KB and downloaded via web. Usually for japanese users this isn't a major problem, becos they have alot of such free uploader websites available whereby japanese ppl usually can upload their own customised AAC ringtones to and downloading them directly via their own FOMA handsets via i-mode internet. This thing is impossible for us, as we all know our FOMA handsets are restricted in terms of the internet, because firstly we're not under NTT Docomo so we don't have i-mode internet, and secondly GPRS settings cannot be configured manually on the P905i or any of the FOMA handsets, so needless to say, we can't download anything manually via GPRS to our FOMA handsets, even if our simcards does come enabled with GPRS by default, via our telco carrier providers.
2. I-Motion MP4 (video ringtone) As suggested by bro haonan b4, we could use the default video clip (the clownfish one) as a ringtone. You also can make the a 30sec clip urself, but it will not work if u copy it into SD card, the ringtone option will be greyed out. It must be downloaded thru the email or internet in order for it to work as a ringtone. So since we have no GPRS, we're out of luck again. 3. SMF/MLD Requirements: - Yamaha MLD WAV-MA2 converter - PSMPlayer - microSD card reader or USB cable (set to microSD mode) file format must be .smf or .mld Convert ur WAV to MLD by using the tool Yamaha MLD tool/converter for Panasonic from here: http://smaf-yamaha.com/tools/panasonic/index.html U can also use PSMPlayer to convert your WAV into MLD http://www.psmplayer.com/ Choose iMelody for DoCoMo phone Drop ur MLD files into: PRIVATE => DOCOMO => RINGER => RUDxxx Rename ur files as RING0001.xxx, RING0002.xxx, RING0003.xxx, etc U should be able to see the new ringtone on ur phone by going to: Menu => Drop box => Melody => microSD => Melody
------------------------------------------------------------------------
JAVA MIDP/I-Appli Games Not able to add jar files to microSD since it requires connection to Docomo. Kisekae Tool (Theme) (Credit: LHM_BB01_Minerva) Download link (English) : http://www.nttdocomo.co.jp/english/s.../kisekae_tool/ Download link (Japanese) : http://www.nttdocomo.co.jp/service/i...ool/index.html Links to the pdf that lists which models are compatible with this program : http://www.nttdocomo.co.jp/english/s...pec/index.html

2008年9月24日 星期三

Download Vista tcpip.sys and UAC Auto Patcher to Increase TCP Connection Limit

http://www.mydigitallife.info/2008/02/17/download-vista-tcpipsys-and-uac-auto-patcher-to-increase-tcp-connection-limit/

2008年9月12日 星期五

水晶指甲 ‧ 續續續續

有個好友, 他說他不想跟單獨我走在一起, 如果有第三人在旁邊他就沒關係.

我跟他溝通了許久, 歸納出他的想法:

1. 他說 他不反對也不排斥水晶指甲

2. 他說 他要是跟我走在一起, 他會不由自主地覺得旁人路人會以異樣眼光看著他, 甚至會覺得路人們心裡會有鬼祟的聲音:"噁唷~"來對著他, 所以他覺得雖然我做水晶是我的自由, 他認為這樣算是影響到他了, 除非我帶上手套, 不然不想單獨跟我碰面.

我覺得跟一個好友見面需要列條件式且條件成立才可以見面是畢生未有過之事, 所以吶悶了.

不過沉澱了一下, 先不論他立場堅不堅定, 其實讓他自己 不由自主地虛擬出別人的想法 這件事看來, 就讓我推論 那些虛擬出來的想法其實是他內心的想法, 藉由"路人"假托想法來闡述.

在我認真跟他溝通時候居然不說真話卻來說條件式, 這讓我很傷心.

所以姑且尊重他的立場, 後續就慢慢發展.

但是一來我覺得這好看好用好玩, 二來也是等我的左手真甲長好.

所以對花巧稍微膩了點, 這次換素一點的~

法式夾心水晶-果凍

上次做過腳保之後, 我的左腳大拇指指甲又裂了XD

2008年9月3日 星期三

Save a Web Page as PNG/JPG for FireFox3

這次終於找到一個超級讚的Extension, 以前firefox2的時候用Save page as 這個套件可以把整個頁面存成png/jpg, 但是花CPU USAGE很高, 而且整個網頁存起來圖超大, 重點是只能用在firefox2!!

現在firefox3想要用的話, 強力推薦這個

Abduction! 2.026

這個的好處就是可以選擇網頁部分來capture, 在網頁中右見選單出現

然後就會另開新視窗

這個時候就可以選擇你要的部分來存成PNG, 這樣存下來的檔才不會落落長又檔案超肥!!

2008年9月2日 星期二

把Firefox偽裝成IE!?

(本文轉載於http://eazieatinternet.blogspot.com/2007/02/firefoxie.html)

或許你會認為這是IE,我也是那麼認為。不過你有想過這其實是Firefox嗎XD?

這次的偽裝十分完整,由JohnHaller所完成,應該算是無懈可擊。JohnHaller還分享了偽裝教學,讓大家都有機會拿這個唬唬朋友XD 流程如下:   * 1.安裝這個佈景主題。   * 2.下載這個圖示包,再把將其中檔案放到FireFox的安裝資料夾(如C:\Program Files\Mozilla Firefox\)   * 3.對照IE,將圖示照著IE移動。   * 4.安裝Firesomething擴充套件。

2008年8月28日 星期四

水晶指甲 ‧ 續續續

起司指甲終於好點, 但是又斷了左手的中指跟無名指XXD

繼上次作的斜式法式水晶 紫色亮片+櫻花3花瓣, 一直到要卸掉之前, 看過的人都說漂亮*_*

害我不忍心把他們卸掉, 可是就是要不一樣才好玩:P

不過忘了問美甲師這叫甚麼名了耶, 應該不會是法式的樣子

藍色璀燦底 + 和風五彩水鑽小花

 璀璨的粉似乎有點透光看的到真甲

五彩的水鑽就是不同角度看過去都不一樣顏色喔, 跟雷射貼紙好像:D

最後來張特寫~

其實上次的紫色已經夠滿意了, 不過藍色意外的好搭衣服耶~

後記, 這次去的時候看到有人在用泡腳機泡腳, 我就問佩君我可不可以也泡泡看, 結果要做腳保才有, 知道腳保一次多少嗎, -> $1000!! 我開始覺得通化街的腳底按摩便宜許多@_@

2008年8月3日 星期日

水晶指甲 ‧ 續續

起司指甲噩夢持續中....

食指又斷了XD, 既然已經塗了將近一個月的硬甲油跟蜜蜂爺爺還算一點點成效, 那就繼續拿那三隻水晶來玩:D

斜式法式水晶 紫色亮片+櫻花3花瓣


本來想選藍色居然被我的美甲師阻止了, 然後她開始越弄越高興的把我的斜式法式水晶加了好幾顆鑽(每個鑽都是要coco的捏XD), 她說斜式會看到真甲, 所以要把會看到的透明真甲的部分用雕花給蓋起來, 我找了一個sample想讓她雕:


只是雕出來的顏色稍微淡了點QQ

還跟美甲師打賭, 如果我的食指再斷, 就要十隻都做水晶(拜託, 我好不容易才拆掉養真甲耶~)
她的賭注居然是她把手上的所有水晶都拆掉, 奇怪, 怎麼看都是我虧到~_~

2008年7月15日 星期二

水晶指甲 ‧ 續

歷經三個月, 我夢想的成效終於出來, 連我老媽都說"早知道有這種東西就該去做了"

OS: 老媽, 老姐都沒去做水晶了我最好是會知道有這種東西啦, 我印象還停留在假指甲甲片上哩-.-"

一隻隻拆掉水晶後, 噩夢就會來喔XD

當初被削薄的指甲, 軟到不行, 超恐怖, 輕輕碰一下就跟起司一樣, 碰了水更慘>_<

所以留著最後三支超硬的水晶來玩:P


櫻花3花瓣




四葉幸運草




這次還做了法式水晶, 法式水晶到底是啥麼咚咚, 就是水晶分前後兩半, 中間有明顯的分界, 最pure的就是有指肉的地方用透明水晶粉, 前面用純白的水晶粉, 中間一個彎彎的微笑:)


後記: 我好像在玩我的指甲 lalala~

2008年7月14日 星期一

淑娟喜宴

92級代表: ray, yan, 阿司






原圖下載:http://www.iis.sinica.edu.tw/~clotho/pigf.zip

2008年7月7日 星期一

網路芳鄰磁碟機 逾時值

cmd.exe: net config server /autodisconnect:n n = -1 ~ 65535 Ex. 不中斷: net config server /autodisconnect:-1 30分鐘中斷: net config server /autodisconnect:30

2008年6月24日 星期二

Highlight Table Rows or Columns Automatically using customized CSS and Javascript

The 2nd solution to implement the effect is:

http://forums.htmlhelp.com/index.php?showtopic=2055

Highlight Table Rows or Columns Automatically with Tablecloth using CSS and Javascript

Tablecloth is lightweight, easy to use, unobtrusive way to add style and behaviour to your html table elements. By simply adding 2 lines of code to your html page you will have styled and active tables that your visitors will love. There’s absolutely no need for hardcoded class names or id’s on the tables.Tablecloth adds those automatically. If you mouseover on a table, Tablecloth will highlight the row or column (or both) automatically. Tablecloth will also adds selected state on click. It is really useful and easy to implement. I am sure I will use it in the near future.

2008年6月11日 星期三

Java Sound API Demo

http://java.sun.com/products/java-media/sound/samples/JavaSoundDemo/index.html 解開壓縮後, 開啟Browser打開JavaSoundDemo.html 會啟動一個Demo Applet 但在啟動時會test permission, 這個是沒有signed過的Applet, 需要使用一些權限需要手動開啟. 它需要 permission java.io.FilePermission "<<ALL FILES>>", "read, write"; permission javax.sound.sampled.AudioPermission "record"; permission java.util.PropertyPermission "user.dir", "read"; 所以依照上篇修改暫時性policy權限方式加入上面三行即可使用錄音跟播放功能. Java Sound API只是JMF裡的一小部分, 若需要更多的功能還是必須include JMF.

Java Applet Security

Java Applet 在執行上會受到許多安全性限制: 1. Browser 2. Java.policy Java建議是使用signed過的.jar作為Applet的codebase, 這樣才可以不用煩惱哪邊權限沒開. 但是僅作為測試用的Applet還要去signed過就太麻煩了, 所以暫時性的手動修改Java.policy可以使用稍微多的權限. %JAVA_HOME%\(jre\)lib\security 內有個檔案 java.policy 在grant { 與 };中列著各種允許的權限. 稍微更改這個檔案, 並重開Browser, 即可啟動Applet. 或是使用Policy Tool - Policy File Creation and Management Tool http://java.sun.com/j2se/1.3/docs/tooldocs/win32/policytool.html#StartTool

2008年6月9日 星期一

【愛不一定要原諒】

--------------http://www.wretch.cc/blog/trackback.php?blog_id=garphie&article_id=7131678---------------

站在門外的海倫,手上捧著一大束玫瑰花,表情為難。依照慣例,又是那劈腿男回頭來找她了。「就只有玫瑰花嗎?不是應該還有些別的東西嗎?」我問。「還有這個啦!」海倫乖乖的從包包李拿出道歉熊。「老招,但是對付妳特別有用。」我嘆口氣,不用看,道歉熊的一腳寫的海倫,一腳寫著SORRY。「別這樣說嘛,我有進步了耶,我並沒有像前幾次那樣立刻原諒他,這次我有先不表態,然後趕緊來找妳商量。」海倫得意的說。「我看妳的名字應該去掉倫,真是海(台語:害)。」我邊說邊關上門。「至少跨出第一步了,不隨便原諒啊!」海倫邊說邊小心翼翼的把道歉熊收好。 「真不知道妳是學佛、信教還是天生心軟,那男人連劈這麼多次,妳居然都能原諒他,妳是在開收容所嗎?非洲那邊有需要,要不要調外交部幫忙拼一下外交……」因為次數實在太多,罵到我都語無倫次了。 「可是,他這次真的有改變喔,他說他還是覺得跟我在一起最適合,他終於找到自己想要的是什麼樣的女人了!」這沒出息的海倫竟然還給我露出幸福的笑容。「我看八成又是人家不要他,才跑回來說什麼妳最好,鬼話少聽點,比較不會做惡夢!」我說完順便送她一個白眼。「唉,五、六年的感情了,哪能說忘就忘,我相信他也是個念舊的人。」海倫的手忘情的伸進包包裡,去摸那隻小熊。「這次他最好是真的想清楚了~我可是先警告妳,要是他又沒想清楚,又劈腿了,妳可別再當路邊的停車格,讓他想到就回來停一下。」我義正詞嚴的說。「這次是真的,他真的想得很清楚了,他還是愛我的,要不然不會劈來劈去總是又回到我身邊!」海倫笑著對我說。「他愛不愛妳,我是不知道,但是可以肯定妳絕對愛他,如果是我,劈一次就要叫他下地獄了,哪還容許他再從地獄爬回來!」我說。 「那妳覺得……我可以原諒他嗎?」海倫瞪著天真的大眼睛看著我。「隨便妳,原諒不原諒都是妳自己的事!提醒妳,原諒不一定是愛,愛也不一定要原諒。真正愛他的話,也許應該要遠離他,讓他知道真愛可貴,要懂得珍惜,不能隨便劈!真正愛妳自己的話,也許更應該要遠離他,讓自己從原諒就是愛的魔咒裡解脫。如果妳還是想跟他在一起,有空別忘了數一下妳家裡的道歉熊有幾隻!」我說完使了個眼色給貓小皮,牠一跳上門把,門突然間打開,劈腿男瞬間滾進我家。我走向劈腿男說:「希望這是你最後一次滾進我家了,把人帶走吧!」

別用棒棒糖打我!

------http://www.wretch.cc/blog/trackback.php?blog_id=garphie&article_id=7131314--------- 「好情人要知道,棒棒糖是獎勵,巴掌是警惕,但是請小心,別用棒棒糖打我!」正妹說。 「哇!有人中樂透嗎?這麼貴的手工巧克力,買個幾盒都是我一個月的生活費了。」辦公室裡一群女人邊爭食邊說著。「唉……大家盡量吃吧!本來是買給我們家Dicky的,他居然不吃。」Monica無奈的說。「男生本來就不愛吃甜的,下次買點別的……」Peggy邊講邊塞了一顆巧克力進嘴裡。「才不是呢!我看Dicky家放了好多巧克力,不過都是那種便宜貨,想說他那麼愛吃巧克力,就特地挑了這種最高級的,他卻連碰都不碰。」Monica一臉委屈,「他真難伺候,像我看他手機用了好幾年,捨不得買新的,就把舊的給丟了,買了一支兩萬多塊的新手機給他,結果還被他臭罵一頓。」「說不定妳男朋友比較節儉,這樣很好啊,節儉的男人不花心。」「下次不要送他東西了,乾脆把錢拿來給自己買性感內衣,是男人都會喜歡。」「不然試試看比較精神層面的,譬如說帶他出國去玩。」眾家姊妹基於吃人嘴軟的立場,踴躍提供意見。 「別說了,上個月我不是請了一個禮拜的假嗎?為了給他驚喜,我找了一堆行程研究,好不容易才訂好旅行社。沒想到出發前一天,我把機票亮出來,他的臉色竟然暗下去。結果他還是去了,不過全程臭臉,連導遊都問說是不是身體不舒服,還是服務不周?十幾萬的行程耶,不知道他哪裡不滿意,真是氣死我了!」Monica一說完,眾家姊妹邊舔手指邊投以同情的眼光,有些感情比較豐富的已經眼眶含淚了。 「我看氣死的應該是妳男朋友吧!」正妹開口。「怎麼這樣說,妳別以為我是砸錢在愛他,我可是事事都以他為考量!」Monica環顧四周,大家紛紛點頭支持。「妳知道他為什麼不吃妳買的巧克力嗎?」正妹問。「我哪知道,口味不合吧。」Monica說。「他吃巧克力是因為熬夜的時候方便,隨手補充體力,並不是因愛吃。」正妹接著說,「妳把他舊手機給丟了,那他舊的通訊錄應該也消失了吧!」「這……」Monica的頭低了下來。「出去玩的前一天才跟人家說,連請假交接的時間都沒有,到底叫做愛還是為難啊?」正妹幾句話就把Monica給KO了。 愛一個人應該要用他喜歡的方式去愛他,不是只用妳喜歡的方式,再來罵他不領情。愛就是要站在他的角度想,而不是只站在妳認為對的角度。「用錯方法的愛就像把棒棒糖砸在情人的臉上,妳懂嗎?」正妹說完順手抄起一整盒巧克力,揚長而去。 正妹法則17: 用他喜歡的方式去愛他,他也會用妳喜歡的方式來愛妳。 (本文原載於自由時報咖啡因專欄『正妹想的不一樣』,每週二見報!)

2008年5月28日 星期三

鞋子尺寸對照表



日本的編號其實就是cm長度.

2008年5月26日 星期一

為什麼他都不為我做改變呢?

我們在一起也快5年了, 這5年他給了我很多的快樂 ,但我要的他卻都一直沒做到 , 一而在的跟他說 他卻都裝傻帶過, 我真的很氣, 不過他真的對我很好 有時愛的好累喔!!!! 我要的又不多 又不過份 為什麼他就是做不到呢? 我只想要他多陪我說說話 多哄哄我還有當我為他打扮能給我一句讚美的話, 因為要我打扮的人是他 打扮給他看了 他卻一個字(喔!!)帶過, 聽在我心裡真的很難過..... 我是他女朋友耶!!!!嗯~~ 教教我該怎麼做才不會愛得那麼累!!!! ------------------------------------------------------------------------------------ 如果妳對妳自己要的很清楚,很確定,那問題就在『他』那一端了。妳想要的都是比較精神層面的感覺,通常對男生有一點弱感或無感。如果妳和他,是敏感的女人遇上無感的男人,那妳真的很辛苦!我有兩個建議,請參考: 1.試著不要用感覺去溝通,不講模糊的心靈的話,而是具體的行為,就像是馬戲團的馴獸師一樣,他做對了就多獎勵,但做錯了呢?也要鼓勵喔!重點是妳要讓他瞭解到,所謂妳想要的要怎麼化成具體的行動?例如他不愛開口說愛,那妳就讓他養成習慣,每次見面就說愛妳,變成一個習慣,一個公式。如果妳希望他陪妳,那他該怎麼做呢?希望他拱妳,他該怎麼哄呢?請具體的告訴他,並讓他慢慢習慣怎麼做。避免用抱怨或責備,盡量鼓勵他,而且要不斷耳提面命,像是每次見面都提:「你今天還沒說你愛我喔!」妳要多點耐心,男人嘛〜總是有幾條感覺神經忘在媽媽的肚子裡,女人只好發揮一下母性,幫他把那幾條神經撿回來!→或許妳會說,這些還要我教,那他算什麼?妳知道嗎?如果很會哄妳,很懂女人想要的感覺,很會應付女人的男人,通常就不會是守在妳身邊、對妳好的男人了。有些個性是無法兼備的,像很會講話的男生,自然容易跟女人聊起來,女人緣就好,當然桃花也多。妳必須去理解妳的男友是什麼樣的一個男人,去欣賞他的優點,而非一再放大他的缺點。這樣只會讓妳更痛苦,也會讓他痛苦。 2.如果妳的狀況跟我上面講的不同,而是他根本就不想去瞭解妳喜歡些什麼,不想去配合妳,不想做會讓妳開心的事。那麼,問題回到妳身上,他真的是妳要的男人嗎?妳為什麼還要繼續忍受他?不管是什麼狀況祝福妳能夠幸福! 咖啡因 www.garphie.com

2008年5月2日 星期五

針對不同類型的下載配置下載動作

Download Sort 2.5.7 Automatically save downloads to different directories when using "Save Link As..." or "Save Image as..." https://addons.mozilla.org/en-US/firefox/addon/25

2008年4月17日 星期四

水晶指甲

漂亮的水晶指甲當然是女生的專利(!?)

因為聽說是Jolin很愛這東西,做一雙手要6k~~~~~

不過水晶指甲是啥?

ref: http://tw.f2.page.bid.yahoo.com/tw/auction/b39100856



這東西當然適合女生打扮用~~



不過卻有意外的效用喔!

from PTT美甲板鄉民們, 有人有咬指甲的習慣, 但自從做了水晶指甲之後, 就戒掉了!

因為那水晶指甲是塑膠, 咬起來的味道很噁心吧!!

加上snwang說現在也有男生作水晶指甲, 不是種小花那種, 是有科技感.....的樣子

其實我十分好奇, 水晶指甲作的有科技感的樣子是啥!?? 不過最後的最後我開始覺得

那是她說服我去做水晶指甲的誘因之一XD



拉著snwang陪我進東區的彩繪指甲店, 如果只有我一個人敢不敢踏進去是其次, 搞不好會被拒絕入場XD, 喔, Siva搞不好也很樂意:D



貓店是我從PTT上找來的, 店長說也有男生來作, 不過最多是保養, 我是她頭一例要上水晶指甲的男生@@, 所以管他有沒有科技感,
我就是要有指甲!!





最後一張特寫:





我以為關西三個月可以好點, 是好了點, 但是放個假, 手洗了乾淨, 就不由自主了@_@

最終還是指望水晶指甲,覆蓋著真指甲, 順便矯正甲型 最後可以不再咬指甲了XD