2012年2月28日 星期二

2012/02/28 Got a facebook virus message

在 Facebook 收到一個朋友傳來的訊息,看起來怪怪的。

點開網址下載了一個壓縮檔,解開來看起來就像是假裝成圖片檔的病毒。

用 Google 查一下果然是病毒,請參考這一篇。各位用 Facebook 的朋友要小心喔。

2012年2月27日 星期一

2012/02/27 義大利通心粉

新竹大遠百 Jsaon 超市買的,感覺太鹹,可能是我煮太乾了。



2012/02/27 用鬆餅粉和電子鍋做蛋糕

看到這一篇做香蕉蛋糕,看起來不難的樣子。今天外面太冷不想出門,在家試做看看。

材料比例是大約的,沒有用量杯仔細量。之前剩下的鬆餅粉160g、蛋一顆、Costco的蘋果牛奶80cc、得意的一天5珍寶健康調合油大約50cc、奶油一小塊。

全部通通丟到電子鍋中,攪拌均勻後直接按 "煮飯"。

完成圖:




2012/02/26 到台中找大學同學

早上11:00從新竹出發,上高速公路到造橋收費站前塞車,之後就順暢了。但是到中港交流道前三公里又開始塞車,一直塞到下了交流道新光三越,真是機車,可能都是要去新開的大遠百吧。

到家樂福停車已經14:20了,在大墩十七街的大洪米糕隨便吃一下,感覺很普通,吃得不太過癮。

和同學愉快的聊了一陣,接著就要去找晚餐囉。晚餐吃這一家 鱻味,在東興路上(大墩十街附近),感覺好多了,點了 蝦仁飯(小)、魯肉飯(小)、肉排飯、肉排(兩份),好吃!


19:19經過赤鬼,還有一堆人在排隊。

20:50回到新竹,氣溫只有12度 ~~~

2012年2月25日 星期六

Batch script to list windows directory security permission (DACL)

Windows 指令 cacls 可以用參數 /t 列出子目錄及所有檔案的權限。(請參考這一篇)

列出所有檔案的安全性需要執行很長的時間,而且在實際應用上大部分是針對目錄設定安全性,如果只要列出目錄下所有子目錄的安全性可以用下面的作法。
  1. 新增一個 batch file,Ex: dir-cacls.bat
  2. batch file 內容為 for /f "tokens=*" %%I in ('dir /a:d /s /b %1') do cacls "%%I"
執行 dir-cacls.bat [path] 可列出目錄下所有子目錄(不含檔案)的安全性。

2012年2月24日 星期五

Command to list windows directory security permission (DACL)

Reference:
http://technet.microsoft.com/en-au/library/bb490872.aspx (英文)
http://www.wretch.cc/blog/jerry0822/15491939 (中文)

列出 Windows 目錄及檔案的權限
Command example: cacls c:\temp /t /c > c:\acl-temp.txt

/t: 含子目錄的所有檔案
/c: 發生錯誤仍繼續

執行結果的權限對照表

Output
ACE applies to
OI
This folder and files
CI
This folder and subfolders
IO
The ACE does not apply to the current file/directory.
No output message
This folder only
(IO)(CI)
This folder, subfolders and files
(OI)(CI)(IO)
Subfolders and files only
(CI)(IO)
Subfolders only
(OI)(IO)
Files only

這個指令也可以用來修改目錄及檔案的權限,操作方法請看 Microsoft 說明

Google 實現了七龍珠的戰鬥力偵測器

七龍珠裡面的戰鬥力偵測器。

Google 的智慧型眼鏡,真是太棒了,期待趕快上市。

這支眼鏡最大的特色是具備抬頭顯示(Heads Up Display, HUD)功能,在眼鏡前方有個小鏡頭,用來偵測周圍環境狀況,也可以用來拍照。在其中一片鏡片上有個小螢幕,用來顯示系統訊息,就如同電影中魔鬼終結者眼睛看出去的情況。

2012/7/25 update:
Canon 這套系統很有趣
2012/7/26 update: Sony 也有,看起來更精緻。 http://chinese.engadget.com/2011/11/28/sonys-head-mounted-3d-visor-is-real-hmz-t1-taiwan-hands-on/
2012/07/29 update: 想像中未來的Google Glasses隱形眼鏡。
Reference: http://www.nownews.com/2012/02/24/339-2788621.htm

2012年2月23日 星期四

SUBVERSION (SVN) NOTIFY FOR WINDOWS simple configuration

Home page: http://subversionnotify.com/default.aspx
Download Link: http://sourceforge.net/projects/svn-notify/
Manual: http://subversionnotify.com/Documents/SubversionNotify_Manual.htm

Install:
  1. Download the latest version of Subversion Notify from SourceForge.net
  2. Unzip the package into the directory of your choice
  3. Copy the included pre-commit.bat, post-commit.bat and pre-revprop-change.bat to the hooks folder of your repository
  4. Edit the batch files to correctly reflect the installation location of the SubversionNotify.exe file you just extracted.

Configure the SubversionNotify.cfg file. Copy the following to  SubversionNotify.cfg. Then modify the blue part.

<?xml version="1.0" standalone="yes"?>
<subversionNotifyConfig xmlns="http://www.mckechney.com/SubversionNotifyConfig.xsd" LoggingLevel="INFO" MaximumEMailSizeInMb="5" MaximumEmailSubjectChars="255">
    <!-- Basic configuration of where to locate the SVN executables -->
    <SVNConfig ExePath="C:\Program Files\Subversion\bin\svnlook.exe" />
     
    <!-- Configure your mail server. Needed for e-mail notifications -->
    <MailServer Name="smtp.mydomain.com" Username="" Password="" ADGlobalCatalog="mydomain.com" FromAddress="fromaddress@mydomain.com"/>
     
    <!-- An example 2-types of e-mail: to a specific user and to a distribution group. Also demonstrates custom e-mail formats.-->
    <RepoPathConfig ControlledPaths="/">
       <MailTo EMailGroupName="Managers"  EMailType="HTML" />
   </RepoPathConfig>


    <EMailGroup Name="Managers">
        <EMail Address="email3@mydomain.com" />
        <EMail Address="email4@mydomain.com" />
    </EMailGroup>


</subversionNotifyConfig>

2012/08/17 update:
SVN 發 mail 的觸發點是靠 Repository 裡面的 hooks。
如果是 commit 後的動作,必須修改 post-commit.bat。
在 batch file 可以指定用某一個路徑的 SubversionNotify.exe,如果有多份 SubversionNotify.exe 就必須各自修改 SubversionNotify.cfg。

小蘇打水除污

看到這一篇 酒精+小蘇打,這也太神奇了,布沙發被彩色筆畫過居然還可以擦乾淨。

我也來實驗一下清理辦公室的椅子,我只用小蘇打而已,沒有加酒精。
濃度比例可以參考這一篇 小蘇打哪裡買?怎麼用?

清理前。

下班前噴小蘇打水,半小時後用抹布擦過,放一個晚上讓椅面乾,隔天早上那幾個斑點看起來不見了。

坐了幾分鐘後起來倒水,ㄟ~~~ 屁股坐熱的部分變更白了。

坐了一天後。


Reference:
酒精+小蘇打
小蘇打哪裡買?怎麼用?

2012年2月22日 星期三

理髮 2012/02/22 & 馬賽克

今天中午到交大理髮。


馬賽克效果用 PhotoCap 做的。(Download Link http://www.johnson-wang.idv.tw/)
馬賽克效果製作教學網頁


Before:


After:


Toyota 汽車遙控器換電池

遙控器變成只能 Lock 不能 Unlock,Toyota 說要換一個遙控器 (NT$ 750),剛好缺料換不成。(天意?)
同事說有可能是電池快沒電了,可以換電池試試看。

步驟:
1. 把鐵環拆下來。
2. 用一字起子把遙控器拆開。
3. 拿舊電池去電子材料行買一樣的,兩顆共 NT$ 48。
4. 發現裝電池的塑膠卡榫斷了,電池裝上去沒效。剪了一張厚紙片來墊,蓋上測試 OK。

拿到車子前面測試,可以正常 Lock & Unlock,省了 NT$ 702  ^__^

2012年2月21日 星期二

Fix “Word Cannot Start the Converter MSWRD632.WPC” Error

Reference: http://helpdeskgeek.com/office-tips/word-cannot-start-the-converter-mswrd632-wpc/

狀況:
Powerpoint 檔案插入 Object (Word file),並選擇 Display as icon。Double click 開啟 Object 出現錯誤訊息 "Word cannot start the converter mswrd632.wpc."
解法:
開啟 regedit,刪除 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Text Converters\Import\MSWord6.wpc

Error when install Windows 8 (Solutions)

Error message:
Windows cannot be installed to this disk. The selected disk has an MBR partition table. On EFI systems, Windows can only be installed to GPT disks.

Solution1:
Modify BIOS boot Options. Move EFI device to the last.
Solution2:
Disable EFI Boot Manager in BIOS Boot Options.
Move the cursor to EFI Boot Manager and press Enter. Then, you can select Disabled.
Reference http://support.acer.com/acerpanam/server/0000/Acer/AltosG520/AltosG520faq15.shtml

2012年2月20日 星期一

2012/02/19 新竹市科學園區的台灣櫻花

搭配這一篇 "高砂鋸鍬形蟲與血櫻花",感覺有點淡淡的哀傷。
想起了這一篇莊子的故事 "無用"。

新竹市科學園區的台灣櫻花











2012/02/18 新竹市 金山七街 肯尼斯 Kennice

老婆在Groupon買的餐券,如果沒有用餐券,菜單上的單價算是偏高。