網頁

2009年12月19日 星期六

Facebook auto receive gifts

When your facebook gift is too much, You can use the automatic tool.
Use the Firefox + Selenium Add-on.

Firefox is a browser. such as IE; Opera; Google Chrome.
Selenium is a tool. Is firefox add-on. The tool can auto control a web pages. For web developers is automatic test.

* Install Firefox & Run.
* Install the Selenium Add-On. (Using Firefox open the Selenium page. Click 'Add to Firefox' button)
* Download the file 'AcceptGift.test' used to receive gifts. (Please right-click -> "Save As")
* Click Firefox -> Tools -> Selenium IDE, Then opened the Selenium.

* Click Selenium-> File -> Open, Choose the 'AcceptGift.test'.
* Click the "Green Arrow with Dash" button to run, then begin to accept gift.
* If stop or many gifts is waiting. just click to run again.


ps. You must already agree the game of gift.
ps.2. In AcceptGift.test. Two lines is receive one gift. So you can copy & paste for more gifts.

2009年12月11日 星期五

facebook自動收禮物

facebook收到的禮物太多,收的很累嗎?自動收禮物幫助您。
一個簡單的方法,使用Firefox + Selenium
要開始的可直接看後段步驟。

Selenium是一個用來自動操作網頁的工具,對網頁開發者而言,可以做自動測試。
這不是幫你玩遊戲,不算機器人,只是禮物太多了,而且收禮物常要來來回回按來按去的,有時很慢又要等很久。

當然其實這個Selenium當然不只能收禮物,還能...
幫你收錢,放進銀行,還有幫你按任務等等,不過我沒有放出下載,
每個人玩的遊戲不同嘛,也不知有無違反遊戲的規則。
這也算是推廣Firefox嗎?? cc...

  • 先安裝Firefox

  • 完成後使用Firefox安裝Selenium Add-On。(請按Add to Firefox按鈕)

  • 下載用來接收禮物的檔案AcceptGift.test。(請按右鍵->另存)

  • 按Firefox->工具->Selenium IDE,就打開Selenium了。


  • 按Selenium->檔案->Open,再去選擇下載的AcceptGift.test

  • 再按下"箭頭+一條橫線"的按鈕來執行,就開始收禮物啦。

  • 如果沒收完或停住了,只要再按一次執行就OK了。


ps.必需是已同意的遊戲收禮物才會成功喔,否則該禮物會出現同意畫面,然後就繼續收下一個禮物了。
ps.2.在Selenium中AcceptGift.test的內容,兩行就是收一個禮物,所以也可以多複制幾組,一次就可多收些禮物,當然中間要順利,有時網頁會有狀況發生,造成停止。

2009年12月4日 星期五

html include html,兩種工具介紹與比較。

沒有Server Side的支援,又不想用iframe,想用html include html。
這裡提供兩個選擇,
1.inc-5(jQuery Plugin)inc: A super-tiny client-side include JavaScript jQuery plugin
2.jQuery UI - Tabs

先說明第2個,jQuery UI - Tabs,你可以只做一頁,有頭有尾,包函css等,然後用Tab的方式,當按下Tab時,會去載入該頁內容,而該頁只需是沒頭沒尾、乾淨的、只有內容的html code。
優:網頁內容單獨維護,乾淨簡單。
缺:搜尋引擎找到內頁內容時,你只能讓人看到白白的純HTML。

inc-5,網頁中就有範例。實做上有兩種大方向:
1.同jQuery UI - Tabs,只做一個page,onclick時再動態載入需要的內容。
2.每個page獨立,可以用javascript的方式,動態載入header或footer之類include用的檔案。
個人還沒有實做,但猜想:每個Page可以用最簡單的方式,但或許要包函一點必備的html頭尾及inc-5等,其它的網頁頭尾用inc-5,網頁其它設定及需求,都用js動態載入動態處理,或某些可寫在header.inc中。