2013年9月22日 星期日

[RPi] Raspberry Pi : The Unofficial Tutorial

一篇還不錯的tutorial, 剛好有些東西是我正在找的

2013年9月21日 星期六

[XBee] XBee Factory

今天就靠這篇救回我一顆爛掉的XBee, 趕快筆記一下以免以後又要搞很久
1. Take the module out of the interface board.
2. Connect the interface board to the computer.
3. Open X-CTU make sure Baud Rate is set to 9600
4. Go to "Modem Configuration"
5. Put a check in the "Always update firmware" box
6. Select proper modem from drop down menu,
7. Select proper function set and firmware version from drop down menus.
8. Click on the "Write" button. After a few seconds of trying to read the modem, you will get an Info box that says Action Needed. At this point, CAREFULLY insert the module into the interface board.
9. You may get the info box again a short while after, just use the reset button on the interface board.
reference: Xbee Factory -Hardware reset without serial communication

2013年9月9日 星期一

[海海人生] 公司營業項目

公司營業項目如果從經濟部的公司行號營業項目帶碼表檢索系統找的話永遠不知道應該要選哪個, 不過還好經濟部全國商工行政服務入口網有提供另外一份代碼表和說明, 不過不知道有沒有定期更新就是了

2013年9月4日 星期三

[資訊安全] Debug information

今天正想在某個網站採購一些東西, 網頁載入到一半突然噴出這樣的訊息, 這樣甘好?
2006 MySQL server has gone away
in:
[select c.categories_id, cd.categories_name from categories c, categories_description cd where c.categories_id=cd.categories_id and c.parent_id= '0' and cd.language_id='1' and c.categories_status='1' order by c.sort_order, cd.categories_name ]
2006 MySQL server has gone away
in:
[select count(*) as total from sessions where sesskey = '98937f53e2395dcc174f66449017743b']

哪個網站就不說了

2013年9月3日 星期二

[Wordpress] Crayon Syntax Highlighter

開始要在wordpress上面放扣了, 就胡亂找了一些plugin來用一下, 反正就是評比高的就拿來試用看看, 目前是用Crayon Syntax Highlighter感覺很讚, 使用起來也很簡單

安裝後看要不要改設定, Settings > Crayon的Theme有一堆可以用, 還有Font, Toolbar, Code一堆選項可以改

使用上就是在純文字模式下輸入
<pre lang="LANG">
// code here
</pre>
可用的LANG在langs目錄下都查得到, 於是乎範例就像
<pre lang="c">
#include <stdio.h>

void main()
{
    printf("Hello World");

    return;
}
</pre>


配合Ultimate Tinymce寫起blog很順手, 再附贈一個教學

reference:
* Top 5 Syntax Highlighter WordPress Plugins
* Learn How To Use The Ultimate TinyMCE Plugin