星期六, 九月 16, 2006

Geek to Live: Wget local copies of your online research (del.icio.us, digg or Google Notebook)

[webnote]
 
 
Geek to Live: Wget local copies of your online research (del.icio.us, digg or Google Notebook)
wget-online-research1.jpg
wget-online-research1.jpg
 
by Gina Trapani
 
You've been diligently bookmarking and clipping web pages using an online service like del.icio.us, Google Notebook or digg. Sure, storing your data on the web is great for from-any-online-computer access, but in an age of cheap, enormous hard drives and powerful desktop search, why not replicate the data you keep on the web to your computer? That way you'll have an copy of every web page as it appeared when you bookmarked it, and a searchable archive of your research even when you're offline.
 
Using my favorite command line tool wget, you can download the contents of a page of del.icio.us links, diggs or public Google Notebook automatically and efficiently to your hard drive.
Wget 101
 
Wget newbies, take a gander at my first tutorial on wget. There you'll get some background on how wget works, where to download it, and the format of a wget command.
 
Seasoned wgetters, come with me.
Archive del.icio.us bookmarks
 
Say you've got a presentation due about the current state of software and you've been collecting research on the topic in your del.icio.us bookmarks' "software" tag. Download all the documents linked from the http://del.icio.us/ginatrapani/software page using the following command (WITHOUT line breaks):
 
wget -H -r --level=1 -k -p -erobots=off -np -N 
--exclude-domains=del.icio.us,doubleclick.net 
http://del.icio.us/ginatrapani/software
 
    wget -H -r --level=1 -k -p -erobots=off -np -N 
    --exclude-domains=del.icio.us,doubleclick.net 
    http://del.icio.us/ginatrapani/software
 
How to run this script: Replace http://del.icio.us/ginatrapani/software with your del.icio.us username and desired tag. Create a new directory called "del.icio.us archive" and from that directory at the command line, run your edited version of the script. (Even better, copy and paste the command into a text file, tweak it to your own needs, and save it as a script - .bat for Windows users, and .sh for Mac users. Then run the script instead of typing out that long thing every time.) When the command has completed, you'll have directories set up named after each domain in the del.icio.us links, with the files stored within them.
 
The breakdown: This command says tells wget to fetch all the documents linked from http://del.icio.us/ginatrapani/software:
 
    * -H: Across hosts meaning, get all the links from del.icio.us to other sites
    * -r: Recursively
    * --level=1: 1 level in so as not to grab all the docments those pages link to too
    * -k: With local copy links converted to link to the local copies of pages
    * -p: Get all the images and other auxiliary files to completey construct the pages
    * -erobots=off: Ignore robots files and just download
    * -np: Don't go up to the parent directory (or all ginatrapani's bookmarks)
    * -N: Only download NEWER files than what's already been downloaded
    * --exclude-domains=del.icio.us,doubleclick.net: Exclude links to other del.icio.us pages and the ad server at doubleclick.net because you don't want to download ads.
 
If that's too much for you to swallow, simply run the command pointed at your own del.icio.us bookmarks. Trust me, it works.
 
Alternately, instead of limiting the download to one tag, get all your del.icio.us bookmarks using the following command (omit the line breaks):
 
wget -H -r --level=1 -k -p -erobots=off -np -N
--exclude-directories=ginatrapani 
--exclude-domains=del.icio.us, doubleclick.net  http://del.icio.us/ginatrapani
 
    wget -H -r --level=1 -k -p -erobots=off -np -N
    --exclude-directories=ginatrapani 
    --exclude-domains=del.icio.us, doubleclick.net  http://del.icio.us/ginatrapani
 
The only difference between this command and the last is that it includes an "--exclude-directories=ginatrapani" directive, which keeps wget from downloading every tag folder unnecessarily.
Archive someone's diggs
 
Say you want to archive all the stories Kevin Rose diggs. The wget command would look something like this (without the line breaks):
 
wget -H -r --level=1 -k -p -erobots=off -np -N 
--exclude-domains=digg.com,doubleclick.net,doubleclick.com,fastclick.net,fmpub.net,tacoda.net,adbrite.com,sitemeter.com
 http://digg.com/users/kevinrose/dugg
 
    wget -H -r --level=1 -k -p -erobots=off -np -N 
    --exclude-domains=digg.com,doubleclick.net,doubleclick.com,fastclick.net,fmpub.net,tacoda.net,adbrite.com,sitemeter.com
     http://digg.com/users/kevinrose/dugg
 
Similar to the command above, this one excludes more ad servers (so you don' t fill your hard drive with banner ad images) and is pointed at kevinrose's dugg page.
Archive a public Google Notebook
 
Google Notebook's a great way to clip sections of web pages and make notes about them online, and you can make those notebooks public. Say you've got a public Google Notebook of aviation quotes you've found all over the web you want to archive locally for when you're off line. Point wget at that notebook and tell it to save the page to aviationquotes-notebook.html with this command. (Omit the line breaks.)
 
wget  -k -p -erobots=off -np -N -nd -O aviationquotes-notebook.html
http://www.google.com/notebook/public/18344006957932515597/BDSKUIgoQ9K_Emdkh
 
    wget  -k -p -erobots=off -np -N -nd -O aviationquotes-notebook.html
    http://www.google.com/notebook/public/18344006957932515597/BDSKUIgoQ9K_Emdkh
 
Tips and tricks for archiving the web locally
 
Use Google Desktop or Mac OS X's Spotlight to search the contents of your downloaded bookmarks and web clips. Serious researchers on a Mac could import the downloaded documents into DevonThink as well.
 
Make downloaded pages expire after x amount of time. If you want to read all the stuff Kevin's dugg only in the last two weeks, clean up your download folder using the hard drive janitor, which will delete old files.
 
Schedule automatic runs of wget downloads using Windows Task Scheduler or cron on OS X and Linux.
 
Got a trusted wget recipe that you use all the time? Or a question about any of the ones presented here? Hit us up in the comments.
 
Gina Trapani, the editor of Lifehacker, thinks distributed personal data is the killer app. Her semi-weekly feature, Geek to Live, appears every Wednesday and Friday on Lifehacker. Subscribe to the Geek to Live feed to get new installments in your newsreader.
read more:
 
    * back to school
    * command line
    * del.icio.us
    * desktop search
    * digg
    * download managers
    * feature
    * geek to live
    * google notebook
    * research
    * social bookmarking
    * top
    * web as desktop
    * wget
 
Mail2Friend Permalink icon [+] Add this post to... del.icio.us digg wists
 
 
 
No commenter image uploaded phantomdata says:
 
Very nice Gina! I've always been an avid fan of wget. It's saved me any number of times from having a particular site disappear just as I was going to reference it in a report. I always keep a wget mirror of sites I reference for just that reason. However, I had never thought of using it to grab delicious tags. What a wonderful idea!
 
You could take it further if you've got a UNIX box, and set it up as a cron job to run nightly in order to ensure that you'll always have your favorite sites. When I was on dial-up I would have a cronjob fire up the connection and download all my daily reads for me around 1A, so I'd always have a local mirror to read in the mornings.
09/13/06 01:02 PM
No commenter image uploaded CorranRogue9 says:
 
@ phantomdata:
 
Good idea setting it up to run nightly, but if the site goes away, then it will rewrite your current data with the blank site. Then you *won't* have it. I would suggest that just after writing your essay that you need websites archived for, then backup the data.
09/13/06 01:34 PM
No commenter image uploaded digdug says:
 
If you use Firefox, you could also give the Slogger extension a try. It lets you archive a complete copy of a webpage with one click, or even automatically.
09/13/06 02:26 PM
Image of David Burch David Burch says:
 
Gina,
 
Couldn't you also pass a user name and password, either in the URL or as command-line arguments, to down load private Google Notebooks?
09/13/06 02:54 PM
Image of Bassam Bassam says:
 
Great Article Gina! I'll definitely be trying this out.
 
Any ideas on how to use wget to archive private Google Notebooks? I keep most of my notebooks private, and I'd love to be able to download them.
09/13/06 02:56 PM
No commenter image uploaded cebailey says:
 
Good stuff. I think this might strike a perfect balance for me in terms of keeping online bookmarks but also having an archive.
 
What would be fantastic for this is a way to somehow tie the del.icio.us notes and tags to the downloaded pages, maybe via spotlight metadata. Anyone have any thoughts on this? It might be possible using the API, or the export to HTML feature...
09/13/06 04:01 PM
Image of Gina Trapani, Lifehacker Editor Gina Trapani, Lifehacker Editor says:
 
@David: You'd probably have to pass on your Google cookies with wget to the command to authenticate to see private notebooks. I haven't given this a try, but do wget --help to see the cookie options.
 
And yes, Slogger and Scrapbook are both Firefox-based non command line (so non schedulable) extensions that do this as well, with a much friendly GUI interface.
09/13/06 04:17 PM
No commenter image uploaded kjohn says:
 
testing
09/13/06 08:03 PM
No commenter image uploaded kjohn says:
 
Good one Gina! But, still I can only get 1 pages worth of my del.icio.us bookmarks.
 
One workaround is to use the url of the form http://del.icio.us/username?setcount=100 .
Still you need multiple tries if you have more than 100 bookmarks.
09/13/06 08:08 PM
No commenter image uploaded cebailey says:
 
Gina:
 
There's an errant space in your example command for getting ALL del.icio.us links. You have:
 
--exclude-domains=del.icio.us, doubleclick.net
 
should probably be:
 
--exclude-domains=del.icio.us,doubleclick.net
09/14/06 12:17 AM
No commenter image uploaded Sander says:
 
I just found the following code, it is the most concise way I found in two days to back up delicious bookmarks.
 
wget http://del... --http-user=YOURUSERNAME --http-passwd=YOURPASSWORD --no-check-certificate
 
    wget http://del... --http-user=YOURUSERNAME --http-passwd=YOURPASSWORD --no-check-certificate
 
It gets all your bookmarks because it accesses the API. Not just your first 100 like some other examples. The only problem i have is that the results are in XML format, if anyone had a automated way of transforming it to a unordered html list that would be great. (or could adjust the command).
09/14/06 04:09 AM
No commenter image uploaded babette says:
 
Been a fan of wget for a long time and converted a few people. I have a few family members who are terrified of command line. For them I reccomend
deep vacuum. Sort of a wget with GUI for OS X. Anybody else used this?
09/14/06 12:3

星期五, 九月 15, 2006

神奇四侠 Fantastic Four

[webnote]
[movie] 
 
中文名称:神奇四侠
英文名称:Fantastic Four
资源类型:HDTVRip
发行时间:2005年
电影导演:蒂姆・斯托利 Tim Story
电影演员:迈克・奇科利斯 Michael Chiklis
     伊安・格鲁福德 Ioan Gruffudd
     杰西卡・艾尔芭 Jessica Alba
     克里斯・伊文斯 Chris Evans
     凯莉・华盛顿 Kerry Washington
地区:美国
语言:英语
制作团队:TLF
简介:
1608805.jpg
转自TLF
 
导演:蒂姆・斯托利 Tim Story
主演:迈克・奇科利斯 Michael Chiklis
   伊安・格鲁福德 Ioan Gruffudd
   杰西卡・艾尔芭 Jessica Alba
   克里斯・伊文斯 Chris Evans
   凯莉・华盛顿 Kerry Washington
类型:动作/科幻/喜剧
级别:PG-13(紧张动作场面)
发行公司:20世纪福克斯 20th Century Fox
上映日期:2005年7月8日
官方网站:http://www.fantasticfourmovie.com/
 
◇ 故事:神奇四侠太空诞生
  
挂着发明家、宇航员和科学家的头衔,李德・理查兹博士可不是吃素的!最近,他一生的梦想即将被实现,他将启程踏上深入玄妙莫测外太空,进入宇宙风暴的中心地带,此行的目标将能顺利解除人类基因码之谜。这时候,政府的拨款大幅度减缩,眼看行程又将泡汤,好在他的大学同学,也是老对手,如今的亿万富翁维克托愿意为此出资。
 
 和李德同行的是他最好的朋友,本・格里姆、苏・斯托姆和苏・斯托姆那个热血的弟弟强尼,苏同时也是维克托的基因研究小组负责人和李德的前女友。太空旅程似乎一帆风顺,直到李德发现自己计算错了迎面风暴的速度。就在那一瞬间,特殊射线和宇宙磁暴的辐射,不可避免的改变了他们的命运。
 
 本以为必死无疑的四人,却发现自己似乎毫发无损。然而,回到地球后,核爆的威力慢慢凸现了出来。不过,副作用没什么,倒是被迅速改变了DNA的四人,不但体质发生变化,还每人被赋予了别具一格的特殊超能力。李德成为神奇先生,苏成为隐身女侠,强尼变身为霹雳火,本则成为石头人,神奇四侠正式诞生,而四人将面对的挑战则是利用超能力完成看似不可能的任务――打倒妄想毁灭地球的死亡博士……
 
--------------------------------------------------------------------------------
◇ 看点:惊奇漫画旗下最长寿漫画改编
  
《蜘蛛侠》、《蝙蝠侠》、《X战警》、《夜魔侠》……,不知道惊奇漫画的元老斯坦・李怎么会有那么多的好点子,反正,今年暑假,同是出自他旗下的《神奇四侠》也将出道。可别以为《神奇四侠》是见风使舵!虽然的确是它的师兄弟们导引了漫画改编的潮流,可历史最悠久、长达44年的《神奇四侠》一向都引领着最著名无厘头超人家族的称号。而且,据说它迟迟不能面世的原因,是因为能让它现世的技术到最近几年才诞生。
 
 既然是超人,免不了和其他师兄弟一样为国家、世界和地球的和平添砖加瓦,但神奇四侠与其他的超人们区别还是很大的―这个号称第一个超人家庭的团体,可学不来单打独斗那玩意,而且他们也完全不像其他超人害羞得遮遮掩掩、整天为自己的双重身份心事重重,有超能力怕什么,这可不是酒好不怕巷子深的年代了!四人甚至还让自己的超能力成为大众焦点,崇拜的偶像。无厘头是这四个年轻人最让人追捧的特质,由于突如其来的超能力大到难以控制,四个基本靠心情变化的家伙经常在公众场合制造轰动,他们一反蜘蛛侠、蝙蝠侠们戴头盔套面罩的严肃装束,随心所欲,这样的超人也难怪每个青少年都想当!
 
--------------------------------------------------------------------------------
◇ 点评:轻轻松松过夏天
  
《星战前传》的复仇西斯,《世界大战》的末世情结,《蝙蝠侠Ⅴ:侠影之谜》的童年阴影……,比起这个夏天的其他大片来说,《神奇四侠》绝对算是欢乐大聚会。它不仅颠覆了漫画改编电影的悲情与阴暗,还来了些许异样"明星"生活纪录。四位超人一天打打闹闹,颇有不务正业之势,就连拯救世界也时常控制不好自己的超能力,不仅频频在公众场合"脱衣变身",还常搞破坏,引得路人围观,街知巷闻。
 
 导演蒂姆・斯托瑞的宣布,让众多漫画迷们保持不小的怀疑态度,这个曾拍过《理发店》和《终极杀阵》的家伙,很明显没有太多动作片的执导经验。不过,对于《神奇四侠》来说,或许他的搞笑功力正是影片需要的,作为无厘头超人组合,缺少让人捧腹的笑料怎么了得?至于动作场面,就留给那一大队幕后制作去考量吧!
 
 "缩水版X战警"、"超人总动员真人版",媒体的一大堆类似的称呼实在有点委屈历史最悠久"神奇四侠",想当年它风靡世界的时候,还不知道那一堆超人们身在何方呢!虽然打着情节紧张的科幻电影称号,可要期待看到很多让人叹为观止的特技场面却不太现实,好在四人常常大街小巷边救人边上演"清凉脱衣秀",当中还有曾在大热剧集《末世黑天使》中迷倒众生,今年早些用《罪恶之城》中所扮演的脱衣舞娘吸引了无数年轻影迷的杰西卡・艾尔芭和帅哥克里斯・伊文斯,这个炎热的夏天凉快凉快也好!
 

CODE
HDSOURCE.....1080i ts              ???哌哌哌哌哌哌哌哌哌????   
 ?DIVX RELEASE.....09.14.06              ?苘?哪 Install Notes哪?圮??   
 ?    SUPPLIER.....TEAM TLF              ?苘苘苘苘苘苘苘苘苘苘苘苘苘??   
 ?      RIPPER.....VawaV                 ?                            ?   
 ?   IMDB RATE.....6.0                        Unrar all the files,     ?   
 ?  FRAME RATE.....23.976fps                Enjoy this nice Movie!     ?   
    VIDEO CODEC.....XVID 1.20 1456kbps       Be sure to install the     ?   
    AUDIO CODEC.....AC3     384kbps          latest version of ffdshow  ?   
   ASPECT RATIO.....1.85:1                   VodSub is necessary,       ?   
     RESOLUTION.....704 X 384                if u want to watch the     ?   
        RUNTIME.....106MiN                   subtitles.                 ?   
         GENERE.....Action / Adventure / Fantasy / Sci-Fi               ?   
       LANGUAGE.....English                                                 
      SUBSTITLE.....N/A                                                   
     MOVIE SIZE.....CD1  49 X 15MB CD2  49 X 15MB                             
                                                                              
      iMDB LiNK: http://www.imdb.com/title/tt0120667/

人脉网中令你生活职场左右逢源的十种人

[webnote]
 
 
人脉网中令你生活职场左右逢源的十种人
   
  
   
2006-09-14 15:11:03.633
     
     

每个人的人脉关系是不一样的,但下面的这10种人是你的人脉关系中必须有的,因为他直接关系到你的人生和事业品质。你的人脉网中有这10种人,你生活和工作起来就会左右逢源,轻松愉快。

◆ 能够提供难以取得之门票的人

你最重要的客户刚刚打电话来,告诉你今天晚上有一场甲A联赛,他需要4张票。你打电话问过所有的票务公司,都说没有票了。这个不时之急,你怎么办? 最好的办法是告诉你的客户你会处理,然后打电话给你的球票联络人,请他给你留4张票。事实上,没有所谓的"全部卖光"这回事,有钱能使鬼推磨,但你必须知道要找谁。你几乎可以在最后一分钟买到票。

◆ 旅行社

对于同在一架飞机上的旅客而言,一百名旅客就有一百种不同的机票价格。400美元的票价,你可能300元买到,别人可能200元买到。为什么呢?因为他认识一位旅行社的朋友,而这个朋友又是最有办法的那种。你怎么能不去拥有这么一个丰富的旅行经纪资源呢?

◆ 职业介绍所,人才市场,猎头公司

除非需要一份工作,大部分的人不会和职业介绍所的人说话。其实,这是没必要的,重要的不是你现在怎样,而是你未来会怎样。即使你现在工作非常稳定,你也不妨与他们建立良好的关系。在口渴之前先掘井永远是正确的。

下次当就业顾问公司打电话来时,不管你多么满意目前的工作,都不要挂断电话,说一些话。例如:"我真的没有兴趣,但是你的电话令我受宠若惊。事实上,有时候我们可能会用到你的帮忙,或者找一份好工作,或者是寻找合适的人选。你可以留下你的联络电话,也许这一、二个月里,我们可以吃顿饭,彼此认识认识。"

◆ 银行

难道你没有发觉,银行已在你的生命中发生了越来越重要的作用。你的投资理财都需要银行这个现代商业社会最重要的角色。有了银行这个人脉,当你的资金运作出现问题时,你知道该打电话给谁。

◆ 当地公务人员、警察

几乎每一件事:填平路上的坑洞、运走垃圾、修理人行道、修剪树木、减低税赋、改变城市划分、子女就学、规范社区商业行为、监管空气、水以及噪音品质、你新买的车子被偷了、你家的门被小偷不请而入。你都需要当地公务人员、警察。

◆ 名人

要如何认识名人呢?

有许多人认为名人是很难接近的,其实他们是很寂寞的。所谓"高处不胜寒",许多名人其实比你想象的还要容易接近。

所有名人都有他们的律师、医生、牙医、会计师、亲戚、喜爱的餐厅及常去的地方。也有经纪人、宣传、公关人员及教练。先去认识这些人,然后请他为你安排一次与名人见面,或替你打第一通电话。

◆ 保险、金融、理财专家

也许,你要等到出了什么事,才知道是否要投保。但你真的想这样吗?你希望有一天你因为没有买对保单,而无法得到应得的补偿吗?如果你不在意晚年将倚赖社会救济金过日子,就可以跳过这一项。

◆ 律师

社会是复杂的,各种各样的人都有。不错,你为人善良,处事息事宁人,不愿得罪任何一个人。可是,你要明白,走在树下都有落叶打痛脑袋。有什么纠纷,你不想对薄公堂,只想自己吃亏了结。但是,你不告别人,别人可能会反咬你一口。在公堂上,如果你的人脉关系中有知名律师,你的麻烦事会少很多。

◆ 维修人员

一位优秀又诚实的维修人员是很重要的。你的汽车坏了,你家的下水道被堵了,你家的锁打不开了……事在紧急,你知道谁可以在最短的时间最快的速度以最低的费用帮你处理。因为不好而且不诚实的修理工将使你损失惨重。

◆ 媒体联络人

从记者开始着手,即使你一生只用这一次,仍然可以使你脱离苦海。你有绯闻缠身,或有新产品上市。你的媒体联络人可以代表你,并站出来处理这件事。真正的公关专家也可以帮忙,他们正是以此为生。

你要如何让这些人加入你的人脉?为了使他们成为可靠的资源,首先给他们所需要的东西,然后他们就会给你需要的东西。

只要见过面,他们就不是陌生人。秘诀是,在需要他们的帮助之前先认识他们。 (搜狐职场风云社区)

开源科学软件

[webnote]
[software] 
 

开源科学软件

matrix 发表于 2006年9月14日 17时30分 星期四   Printer-friendly   Email story
来自查拉图斯特拉如是说部门
matrix 写道 "科学是一个开放的过程,实验的信息和结果必须公开,结果要接受检验和重现。这些被分享的结果将有利于全人类,那些用于进行科学计算的软件如果也公开会更有意义。这里就是一些开源的科学程序。
Linux被经常用于超级计算机,嵌入式科学设备等。Scientific Linux是Red Hat企业版的克隆版,被全世界许多物理实验室所使用,Linux的程序员可以利用许多科学算法库。包括了FFTW――快速的傅立叶转换,经常用于量子力学和微波处理领域。GSL――C/C++数学库,内置随机数字,统计分析,矩阵计算等功能。Galois(在21岁死于一场决斗)Field算法库――用于计算Galois fields,与电子通信系统相关。
Maxima类似Mathematica和Maple,用于代数计算。
Octave在数字计算方面类似Maxima,也可进行向量计算,可与Matlab进行交换。
TeX和LaTeX――可使用数学公式的字处理程序。
OpenScience Project――列出了很多开源科学计算软件。"

MonkeyGTD-又一个基于TiddlyWiki的单网页GTD系统

[webnote]
 
 

MonkeyGTD-又一个基于TiddlyWiki的单网页GTD系统

发表于Thursday, 九月 14th, 2006

如果你还不知道TiddlyWiki,那我先科普一下。
Tiddlywiki


TiddlyWiki是一个集成Wiki功能的网页文件(html文件)。首先,作为Wiki,你可以很容易的添加各种内容,就象一个笔记本。和其它的 Wiki不同,TiddlyWiki不需要任何数据库或者服务器端技术支持,整个系统加上内容都在一个网页文件中,有了这一个文件什么都有了,所有的操作都直接通过浏览器完成的,很适合保存在硬盘或者USB盘上作为个人信息管理系统。别小看这一个文件,编辑、分类、查找的功能样样齐全,我自己使用 TiddllyWiki做工作笔记有一年多的时间,已经离不开它了。更多信息可以查看TiddlyWiki的网站,和这个国内推广TiddlyWiki的站点。需要注意的一点是,TiddlyWiki最好用Firefox,IE等其它浏览器需要安装插件,否则不能保存。
再回到我们的主题。MonkeyGTD不是第一个基于TiddlyWiki的GTD系统,以前我使用过GTDTiddlyWiki,它预定制了很多和GTD相关的内容,比如"场合"(如果你不熟悉GTD的场合概念,可以参看这篇文章)和"项目列表",用了一段时间后觉得对于项目和行动的管理大多依赖于人工编辑,比较麻烦,后来就放弃了。
最近新发现了另一个基于TiddlyWiki的GTD系统-MonkeyGTD,试用之后感觉非常好。
MonkeyGTD
首先,和GTDTiddlyWiki一样,MonkeyGTD也预定制了"场合"和"项目"列表,而且版面布置更合理。
更总要的是,它不再只依赖于TiddlyWiki的已有的功能,而是开发了更多对"场合"、"项目"以及"行动"的管理功能,已经是一个完备的GTD系统,而不再只是利用Wiki来辅助GTD这么简单。
虽然在功能上有了极大的增强,它仍然保留了TiddlyWiki的所有好处,仍然只是一个html文件,有这丰富的编辑、检索和查找功能,你仍然可以用它来写日记:)。
你所需要的只是一个文件,右键点击这里,然后另存到硬盘,再用浏览器打开就可以试用了。更多内容请参看MonkeyGTD的主页

google站内搜索

Google