顯示具有 網站相關工具 標籤的文章。 顯示所有文章
顯示具有 網站相關工具 標籤的文章。 顯示所有文章

2008年6月9日 星期一

Days Since

The basic idea and usage model behind Days Since has affinity with Getting Things Done and other time management techniques — get the noise of remembering your recurring todos out of your head, and onto your iGoogle dashboard!

http://leancode.com/dayssince/

2008年6月8日 星期日

CanYouSeeMe.org - Open Port Check Tool

http://www.canyouseeme.org

This page will serve as a free utility for remotely verifying a port is open or closed. It will be useful for users who wish to check to see if a server is running or a firewall or ISP is blocking certain ports.

2008年5月9日 星期五

網頁的時鐘


提供各種個性化的新穎時鐘。你所要做的只是在你的網頁上添加一個標籤。我們的時鐘會根據你的選擇顯示你所需要的城市的名字。同時,你也可以選擇不同的時區。用我們的時鐘來裝飾你的網站!

2008年5月4日 星期日

免安裝!自製網頁版Google Talk

「Google Talk」推出網頁版囉!所謂的網頁版即時通,就是不必安裝軟體,直接就可以在網頁上進行即時通的各項功能,特別適合經常使用不固定電腦或不想安裝太多軟體到自己電腦上的朋友。除了可以將「Google Talk」加入Google個人首頁之外,還夠自訂語法加到其他個人化首頁,相當方便。

Step

1.開啟瀏覽器連上「 http://www.google.com/ig/directory?synd=open&num=24&url=http://www.google.com/ig/modules/googletalk.xml 」後,按下頁面右側的〔新增至您的網頁〕。

2.我們可以透過下方的「顯示設定」,自行修改要放在網頁上的「Google Talk」尺寸大小、標題及邊框類別,設定完成後按下下方的〔取得程式碼〕。

3.此時將游標移至下方程式碼處,按下〔Ctrl〕+〔A〕全部選取後,按一下滑鼠右鍵,並從快速選單中選取【複製】。

4.接著在我們自己的網頁中,將剛才複製的程式碼在合適的地方,利用[Ctrl]+[V]貼上。

5.以後即可在個人網頁上,看到剛才嵌入的「Google Talk」工具,接著點選上面的「Sign In」。

6.登入自己的帳號密碼後,即可透過網頁上的「Google Talk」跟朋友對話,不需安裝程式在本機上哦!

轉載自密技偷偷報

2008年4月28日 星期一

2008年4月26日 星期六

free php Web Based FTP Client

to download the latest stable version 4.0 from our servers, unzip the file and copy all files to a directory on your webserver.

For installation, refer to Documentation page which contains brief information on how to install the phpWebFTP software on your own server. You might also consider looking at the Questions & Answers page and User Forums page for more help and information.

http://www.phpwebftp.com/download/

AJAX,未來的網頁設計

您一定聽過或見過 AJAX,您一定想說,這不過是一種網頁編寫的新程式,就像 HTML、ASP、PHP 一樣‧但是 AJAX 不是您想的那種,它是網頁的綜合技術,能讓你的網頁用一種您想都想不到的方式呈現‧AJAX 是 Asynchronous Javascript and XML 的縮寫 -- 非同步 Javascript 及 XML 網頁技術,它組合 HTML 或 XHTML 及 CSS 的技術來呈現網頁,javascript 及 DOM (Document Object Model) 來執行動態內容,以及 XMLHttpRequest 物件 (object)‧

傳統上當我們按下網頁連結時,瀏覽器幫我們向遠端網頁主機送出 http request,遠端網頁主機回應送出網頁資料給我們,一個 request,取回一個 response‧但是 AJAX 不同,當我們取回網頁資料後,其中含有供 AJAX 運作的 javascript 程式稿,在閱聽者瀏覽網頁的同一段時間,AJAX 會依照 javascript 程式稿的指示,用 XMLHttpRequest object 在背後端向遠端主機啟動另外的 http request,並取回新的一部份資料‧資料傳輸能夠非同步發生‧

依用戶的動作逐次下載內容
舉例來說,一篇「伺服器傳輸量統計」的網頁,內中的統計圖表是圖像檔案,傳輸量統計是每五分鐘統計一次;傳統上我們取用後,要取得最新資訊,便需每隔五分 鐘重新下載全部網頁內容一次‧這種網頁通常尺寸很大,必須消費較大的頻寬,但是前後次頁面下載的大部份內容都是不變的,只有部份隨時間變動,可以說是相當 浪費資源‧引用 AJAX 技術後,它會用 XMLHttpRequest 物件 (object) 在背後送出 http request、取回變動後的資料、並自動更新,網頁不變動的部份只下載一次不須要重覆,所以只需小量頻寬,或者說回應時間因資料量小而變快,因此資源消 費量變小,可以說是很環保的‧

大部份的瀏覽器都支援 AJAX,包括微軟的 IE (Internet Explorer),Mozilla Firefox,SeaMonkey,Opera,Konquerer,及蘋果電腦的 Safari‧

AJAX 概念
AJAX 概念由 Jesse James Garrett 於 2005 年 2 月首先提出‧他對 AJAX 的定義如下,認為 AJAX 不是單一技術,而是多項科技的合成,它們各自發揚,團結成一個有力的個體:
  • 用 XHTML 加上 CSS 來呈現各式各樣的網頁。
  • 用 DOM (Document Object Model) 及 Javascript 展示動態內容及互動。
  • 用 XML 及 XSLT 來作資料互交換及操控 (移動、安排、操作及控制)‧
  • 用 XMLHttpRequest 物件非同步擷取遠端 web server 的資料。
  • 用 JavaScript 結合每一件事情‧

傳統上網頁程式會如此作用
網頁裡的超本文連結 (hypertext),一般上會啟動 http request 回網頁伺服器 (web server)‧網頁伺服器會進行處理 - 擷取資料、計算數目字、與系統內的各種程式交流 - 然後回應一篇新的網頁‧這種方式當然是技術本位,但是用戶能參與的部份很少‧當伺服器在運作時,用戶在做什麼?當然只是等待而已‧每敲一次連結或「鍵」, 用戶都只能等待伺服器送回一篇新網頁‧圖中的 user interface 指含有連結或表格的網頁,datastores 指 dtabases‧

AJAX 不一樣
AJAX 程式用導入「AJAX Engine」作為仲介 (中間體) 的方式,免除網頁 start-stop-start-stop 的傳統戶互動方式,看起來好像多了一層中介者會讓反應時間更長,但事實上的結果剛好相反;只下載必要的資料,使頻寬需求較小或反應速度加快‧

網頁開始第一次下載時,瀏覽器首先載入用 javascript 寫成,隱藏起來的「AJAX Engine」‧這個引擎 (Engine) 然後載入 XHTML + CSS 使呈現網頁,並基於用戶行為在背後與網頁伺服器再次溝通‧AJAX Engine 可以在同一時段,讓閱聽者照常瀏覽網頁,同時與網頁伺服器進行 「請求與回應」的溝通 — 此稱為「非同步資料傳輸」(Asynchronous Data Transfer)‧


轉載來源


2008年4月12日 星期六

OpenID 是一種網際網路上的身份認證技術。

OpenID 是一種網際網路上的身份認證技術。一個 OpenID identity 就是一個 URL,通過這個唯一的 URL 實現在多個網站上進行單一登錄。從而避免了多次註冊的問題。

舉例來說,當你使用 OpenID 登入一個網站,這個站臺會要求你的 OpenID 提供者認證這個使用者,當 OpenID 的提供者確認後,這個網站就能夠知道你是這個 OpenID Identity 的擁有人。

http://wiki.openid.net//OpenIDServers

provides internet users with real-time ranking of blog articles based on actual impression count.

What is Spotplex?

Spotplex provides internet users with real-time ranking of blog articles based on actual impression count. In other words, you can find what is the hot news today, this week, or this month in real time at Spotplex. It is not a list of articles people recommended or voted for, but a list of articles read most in a given timeframe.

Bloggers can track and analyze their blog traffic with a simple Spotplex code or widget. Not just how many people visit the blog, they can even find which articles people read most and how many people read them. Whenever an article of the blog is read, it will show up at Spotplex in real-time and get noticed by Spotplex users, thus more people will see your blog articles.




Get the Spotplex code for your blog or any site with RSS feed. Whenever your articles are read, they will show up on Spotplex while also letting you find how many people are reading your articles.

http://www.spotplex.com/zh_tw

2008年3月31日 星期一

Want to know who's on your site and where they came from, in real time?

Then give us 30 seconds and we can answer that question for you! Just take the code on the right and insert it into every page on your site.

No setup or registration required.

Not only do we tell you the number of people online, but we also show you the pages people are reading and where in the world they're coming from. Need historical data too? We do that for you automatically.

http://whos.amung.us/

2007年9月13日 星期四

個別網站的流量圖

Alexa.com只提供個別網站的流量圖,如果想要觀看幾個網站的流量比較圖怎辦?
那就趕快來試試看由Ron Hornbaker所做的statsaholic.com吧!
一進入首頁就會看到五個文字方塊提供你輸入網址,輸入完後按下"Show Trafic Graphs"就可以觀看你所輸入的網站們的比較圖囉!(資料來源是Alexa.com)跟提供資料的Alexa.com一樣,圖表也提供了從七天到5年的資料,也可以選擇要看網站到達率或是排名,可以由使用者自行選擇。