Source favicon23:42 Instant gratification - your way » Google Blog




In the movie Willy Wonka and the Chocolate Factory, do you remember Veruca Salt, the girl who kept screaming, "I want it NOW, daddy!" Well, that's pretty much how I feel about searching the web on my mobile phone. It takes longer for pages to load, and it's not easy entering text in the first place - so I want the answer NOW, Google!



For all you Verucas out there, we engineers have been working on three new Google search features for mobile phones. Starting today, if you type [movies] or [weather] and a location, or enter a stock ticker symbol, we'll show, predictably enough, movie showtimes, weather forecasts, or live stock quotes above the Google web search results that display on your phone.



Talk about instant gratification - and the best part? No golden tickets required.
Source favicon21:21 用Java进行基于浏览器的桌面应用程序开发(Browser-based desktop application development with java) » Andy's blog

作者:Andy(http://blog.xintiantang.com/andy),转载请先联系我

这篇文章于2005/08/30 20:00开始,计划在一个月内完成,所以将会人工置顶。内容有点儿乱,先把想的和做的记下来,然后再慢慢整理。同时欢迎提出你的看法。更新记录:2005/08/30 20:00,2005/08/31 14:45,2005/08/31 21:21

对于普通用户来说,使用传统的桌面应用程序(可能采用不同语言和工具开发的)可能存在这样那样的限制,比如界面风格千变万化、操作习惯不统一、学习难度大、无法或很难和外部应用通信等。而传统的服务器端应用程序或网站也存在许多限制,比如网络连通可能出现问题、响应速度慢、不能保证服务器端始终可用、担心数据安全和个人隐私问题、不够灵活、使用不方便等。

 而基于浏览器的桌面应用程序正是综合桌面应用程序和服务器端应用程序的功能产生的。它包含以下优点:

基于浏览器的桌面应用程序(Browser-based desktop application)的定义:一个包含嵌入式网站服务器(Embedded web server)的能够在浏览器内的客户端的独立运行(Stand alone)的应用程序。

我把基于浏览器的桌面应用程序(Browser-based desktop application)简称为BBDA。其实BBDA和AJAX技术一样,也是一个buzzword,而不是什么新技术,只不过把几种通用的软件或技术组合在一起而已。

其实,BBDA很符合目前热炒的WebOS(基于网络浏览器的操作系统)的特性,这方面Google做了个最好的Demo:Google Desktop, 在GD中,一切内容的表现都是网页(虽然隐藏了浏览器),并且很容易和Google网站进行通信(比如同时搜索本地和搜索Web,利用Feed(RSS)或XML-PRC或SOAP之类的协议读新闻、邮件、天气预报、股票行情等,微软该称RSS为Feed好像很有道理吧?)。现在GDS(Google Desktop Search)只是GD的一个模块而已,百度的桌面搜索只是单纯地模仿了GDS,却没有猜到原来Google是要做GD,好傻的百度。Google这几年的收购和挖人活动(Google宽带, Google browser等),看来一切都是为了WebOS而努力。这里顺便说一下Yahoo刚收购的Konfabulator,Konfabulator和GD有很大不同,我觉得它只是包含许多小软件或和网站交互的工具,只是个玩具箱而已,要做WebOS靠这个可以吗?看来Yahoo的眼光似乎始终不如Google。找到这篇文章:GoogleOS? YahooOS? MozillaOS? WebOS? 居然和我的想法如此相似(写这个之前我绝对没看过这篇文章)!

由于我主要做Java开发,所以只列出可能涉及的Java软件包:Browser(IE/FireFox), JDK, Tomcat/Jetty, HSQLDB/Apache Derby, Hibernate, DOM4J,Apache Http Client, Lucene, Struts/WebWork/JSF/Tapestry/Wicket/Flex&Laszlo(Flash RIA), DWR(AJAX), Apache Web Services(SOAP/XML-RPC), Apache POI(Word/Excel/ PDF), MP3 ID TAG 3 lib ,JPEG EXIF lib...

我的目的是组合几种通用的JAVA软件,用来进行快速的BBDA开发。对于开发者而言,只要选好合适的软件,并合理组合起来,完全可以达到或超过Ruby on rails的功能和开发效率。同时,对于普通用户而言,只要打开浏览器输入http://localhost就行了,用户可以在浏览器里管理日记(blog)、日历、通讯录、照片(flickr?)、音乐(itunes?)、文件、网摘(delicious?)、阅读订阅的RSS(bloglines?)、查看邮件(web mail)、新闻之类等,并可以进行搜索、共享、发布、与外部应用或网站同步等,构成一个完整的个人门户系统(Personal portal),而Feed(RSS)、XML-RPC/SOAP是联系各个服务的纽带。

接下来我会发布一个开发BBDA的基础软件包(将会包含一个简单的相册的BBDA),下面是我对基础软件包的说明。

关于嵌入式网站服务器(Embedded web server):

我这几天试用了Jetty和Tomcat。总以为Jetty很小呢,最适合做BBDA呢,结果发现软件包也很大了,另外很多功能不如Tomcat,Tomcat Embed 5.5由于使用Ecipse JDT,现在已经很小了(3M左右),而且标准,所以选了Tomcat Embed(这里下载)。下面的代码是Tomcat Embed的启动程序。

Start.java:

package com.terac.tomcat;
import java.net.InetAddress;
import java.net.UnknownHostException;
import org.apache.catalina.Context;
import org.apache.catalina.Engine;
import org.apache.catalina.Host;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.connector.Connector;
import org.apache.catalina.startup.Embedded;

public class Start {
 public static void main(String[] args) {
  try {
   String path = System.getProperty("SERVER_HOME");
   if(path!=null&&!"".equals(path)){    
    int port = Integer.parseInt(System.getProperty("SERVER_PORT","8080"));
    startTomcat(path,port);
   }   
  } catch (Exception e) {
   e.printStackTrace();
  }
 }
 private static void startTomcat(String path,int port) throws UnknownHostException,
   LifecycleException {
  System.setProperty("catalina.home", path);
  Embedded embedded = new Embedded();
  Engine engine = embedded.createEngine();
  engine.setName("Engine");
  Host host = embedded.createHost("localhost", "web");
  Context rootContext = embedded.createContext("", "");
  rootContext.setPrivileged(true);
  host.addChild(rootContext);
  engine.addChild(host);
  engine.setDefaultHost("localhost");
  embedded.addEngine(engine);
  Connector connector = embedded.createConnector((InetAddress) null,port, false);
  embedded.addConnector(connector);
  embedded.start();
 }
}

start.bat:

@set classpath=./lib/所有的jar文件
@java -DSERVER_HOME=%cd% -DSERVER_PORT=80 -classpath %classpath% com.terac.tomcat.Start

关于嵌入式数据库(Embeded database):

Apache Derby虽然比HSQLDB强大,但还是太大了,尤其是当用到IBM的JDBC Driver时。所以只好选HSQLDB。下面的代码是在Web应用程序启动时启动HSQLDB服务器。

HSQLDBServletContextListener.java:

还未整理好

web.xml中需要加入listener:

com.terac.hsqldb.HSQLDBServletContextListener

关于全文检索引擎(Full text search engine):

Apache Lucene应用广泛,也足够强大,高亮显示(Highlighting)需要自己实现,自动摘要(autosummarize)需要Classifier4j 。下面是常用类的封装代码:

Indexer.java:

还未整理好

Searcher.java:

还未整理好

Highlighter.java:

还未整理好

关于对象关系映射工具(OR mapping tools):

Hibernate是最常用最强大的工具。下面是Hibernate Session的封装代码:

HibernateUtil.java:

import net.sf.hibernate.HibernateException;
import net.sf.hibernate.SessionFactory;
import net.sf.hibernate.Session;
import net.sf.hibernate.cfg.Configuration;
import org.apache.log4j.Logger;

public class HibernateUtil {
 private static Log log = LogFactory.getLog(HibernateUtil.class); 
 public static final ThreadLocal threadSession = new ThreadLocal();
 private static final SessionFactory sessionFactory;
 static {
  try {
   sessionFactory = new Configuration().configure().buildSessionFactory();
  } catch (Throwable ex) {
   // We have to catch Throwable, otherwise we will miss
   // NoClassDefFoundError and other subclasses of Error
   log.error("Building SessionFactory failed.", ex);
   throw new ExceptionInInitializerError(ex);
  }
 }
    public static Session currentSession() throws HibernateException {       
        Session s = (Session) threadSession.get();
        if (s == null) {
            s = sessionFactory.openSession();
            threadSession.set(s);
        }
        return s;
    }
    public static void closeSession() throws HibernateException {
        Session s = (Session) session.get();
        session.set(null);
        if (s != null)
            s.close();
    }
}

关于模型-视图-控制框架(MVC framework):

现在的MVC framework太多了,传统的有Struts/WebWork,新的有JSF/Tapestry/Wicket/Flex&Laszlo(Flash RIA) ,Wicket网站列出了55种之多!我试过JSF,始终不能另我满意,正在尝试这个Wicket。

待续。。。

Source favicon21:14 上海最常见的啤酒 - 力波和三得利 » Andy's blog

力波(Reeb)

三得利(Suntory)

Source favicon20:46 我的五个怪癖 » Ada's Blog 艾达思语
承蒙dash点名说怪癖,今天又看到dash在msn上恐吓:“几个被点名的,再不写怒了哦”,就赶快扔下手里的一大堆事儿,跑来数自己的怪癖,哈,想来发现自己怪癖不多,心里很踏实: 洁癖,从不会忘记的事情就是洗手,每天洗很多遍,饭前、饭后、洗手间前、拿完钱、擦完桌子等等,都要洗手,手洗干净了,才可以干下面的事情。有时候天气不好,会认为毛巾没有被充分消毒,会选择用纸巾擦。没有纸巾的日子很难过。湿纸巾、干纸巾、消毒液常备。衣服一定要每天换,每周洗的时候一定要用消毒液浸泡。床单要铺很多层….. 开灯睡不着觉:睡觉一定要关灯,不能有一丝灯光,如果我躺着,灯开着,会很快烦躁,然后会大吼关灯! 读书奇慢,还不能被打搅:看书速度是正常人的三分之一弱,因此每次看书前都准备很久,水(包括壶)、音乐、小吃、沙发、姿势都摆好之后,才开始看,遇任何打搅,基本当天阅读就此结束 没事就看im,却很少主动和别人说话:每天上线后第一件事情、工作间隙无意识点击鼠标、思考事情之前、下线前最后一件事情都是看看我im上的在线联系人,从msn到yahoo!messager,从skype到talk…每个点一遍看一下谁在线,等很少主动发给别人信息。 骗自己:一心向往又不是自己可控制的事情,就会一直对自己说没戏,因为心里暗暗的觉得,说越多次没戏,就越有戏,虽然,这条法则至今没被验证过) 好了,都如实说了,不够怪异,见笑啦,嘿嘿。 继续点名:(不确定是否已经被点过) 1. 6e 2. 横戈 3. 妮妮 4. 我要去桂林 5. chedong
Source favicon19:41 Beijing Media Top Stories: Fu Biao, RMB note and commemorations to Anti-Japanese War ... » Danwei RSS 1.0
TBN050831S.jpg
The Beijing News' cover, features a Fu Biao photo, held by a crying girl who had got his financial aid.

1. Chinese famous actor Fu Biao dies of terminal liver cancer at the age of 42 on Tuesday;

2. The People's Bank of China issues new print of the current version of the Renminbi with improved technology;

3. Five big ceremonies to be hold to mark the 60th anniversary of the victory of China's War of Resistance Against Japanese Aggression on Sep 2 - 3;

4. Monstrous Hurricane Katrina rampaged across the US Gulf Coast;

5. Beijing plans to execute ten strategies to solve its traffic jam (eg. to charge 'crowded fee' for the cars which enter into the old town).

Source favicon18:35 Angry professor sues Deloitte for calling Taiwan a country » Danwei RSS 1.0
xie_baisan.jpg
Xie Baisan was traumatized when Deloitte's website listed Taiwan as a country

Accounting giant Deloitte Touche Tohmatsu recently launched a Mainland website. Xie Baisan, a professor of management studies at Shanghai's prestigious Fudan university went to the website and found that Taiwan was listed as a country in the pulldown menu at the top of the screen.

Professor Xie was horrified.

According to a report in today's Beijing Youth Daily, he put together some documents and stormed into the Huangpu District Court to personally deliver his case against the evil splittists at Deloitte. He is demanding that Deloitte do three things:

1. Immediately correct their website
2. Apologize in the media to all Chinese people
3. Pay Professor Xie 100,000 yuan for the spiritual damage he has suffered

Professor Xie says he plans to give the money to the Project Hope charity.

The Beijing Youth Daily also printed a statement from Deloitte, apologising for offending anyone and noting that the error was caused because of the way they structure their business units.

The pull down menu on the Deloitte website that caused Professor Xie's trauma has been amended so that its title reads 'Countries / Territories' (国家/地区). Their media statement also says that they will take further action to ensure that this does not happen again.

Links and Sources
Source favicon18:29 3108, Blog Day 2005 » 未完成 - Incomplete
今天是全球Blog日,按照要求是要推荐5个Blog,我下面推荐的五个blog所写的内容各不相同,但作者都在认真地持续书写着。 Danny 小容 费乐沃的生活万宝书 烂周刊 Mayue
Source favicon15:57 Daily Links for 2005-08-30 » Jeremy Zawodny's blog
Yahoo faces Flickr backlashStefanie, why didn't you link to the Flickr blog where they explain things a bit? (tags: flickr, yahoo) Top 5 Reasons to Launch Google Talkheh... excellent. (tags: google, heh) User Generated Content on Yahoo! Front Pagefeaturing flickr photos! (tags: flickr, yahoo) Russian Man Becomes First Full Amputee to Fly Hang Gliderfrom the department of surprising headlines (tags: heh) For all of my annotated links, see my linkblog or my del.icio.us page....
Source favicon15:05 Firefox plugins for web designer/developer » Andy's blog

I've used many firefox plugins, but the followings are my best favorite!

Tab Mix Plus (http://tmp.gary.elixant.com/)
Tabmix Plus is an enhanced version of tab mix with added features and bugfixes

Web Developer Extension (http://chrispederick.com/work/firefox/webdeveloper/)
The Web Developer extension for Mozilla Firefox and Mozilla adds a menu and a toolbar to the browser with various web developer tools.

IE View (http://ieview.mozdev.org/) 
IE View is a simple Mozilla and Mozilla Firefox extension (for Microsoft Windows systems), which allows the current page or a selected link to be opened in Internet Explorer.

LiveHTTPHeaders (http://livehttpheaders.mozdev.org/)
Help debugging web application.See which kind of web server the remote site is using. See the cookies sent by remote site. 

MeasureIt (https://addons.mozilla.org/extensions/moreinfo.php?id=539)
Draw out a ruler to get the pixel width and height of any elements on a webpage.

ColorZilla (https://addons.mozilla.org/extensions/moreinfo.php?id=271)
Advanced Eyedropper, ColorPicker, Page Zoomer and other colorful goodies.

Source favicon13:07 关于怀孕与叶酸! » 妮妮
一说到计划怀孕,一帮姐妹花就开始给我灌输叶酸概念,说一定要吃、提前吃、持续吃、女方要吃男方也要吃……这样生下的宝宝才聪明云云!我一向不爱吃药,认为“是药三分毒”,但面对N多姐妹的教诲,在不敢不听的前提下,先11.6元买了一瓶“斯利安”牌叶酸片来表示听话,再仔细查看到底怎么回事: 经过查询,有以下定论: 1、叶酸是好东西。在人体里负责单碳物质的转移作用,合成PURINE 及DNA ,帮助宝宝脑神经正常发育以及血球的生长。 2、必须从怀孕前一个月开始服用,怀孕后的前三个月也要坚持服用。强调怀孕前就要开始服用的目的是为使妇女体内的叶酸维持在一顶定的水平,以保证胚胎早期有一个较好的叶酸营养状态。据研究,妇女在服用叶酸后要经过4周的时间,体内叶酸缺乏的状态才能得以纠正。这样在怀孕早期胎儿神经管形成的敏感期中,足够的叶酸才能满足神经系统发育的需要,而且要在怀孕后的前三个月敏感期中坚持服用才能起到最好的预防效果。 3、不要用“叶酸片”代替“小剂量叶酸增补剂”。叶酸增补剂每片中仅含0.4毫克叶酸,是国家批准的惟一预防药品(商品名称为“斯利安”)。而市场上有一种供治疗贫血用的“叶酸片”,每片含叶酸5毫克,相当于“斯利安”片的12.5倍。孕妇在孕早期切忌服用这种大剂量的叶酸片,因为长期大剂量服用叶酸片对孕妇和胎儿会产生不良的影响。因此提醒孕妇要听从医生和保健人员的指导,切忌自己滥服药、乱买药。 4、叶酸存在的范围很广, 如动物肝脏、肾脏、蛋类、鱼类、植物性食物中的绿叶蔬菜、菠菜、芹菜、菜花、土豆、莴苣、蚕豆、梨、柑桔、香蕉、柠檬、坚果类及大豆类等,都属于叶酸含量较高的食物。 妮妮建议:怀孕前去医院找医生做专业咨询,老实交代双方祖宗八代病史、不良生活习惯、不良餐饮习惯、各项注意事项等!...
Source favicon11:11 留言問題 » Jan's Tech Blog
升級了上MT 3.17之後,留言經常出現問題。現在已經連續幾天不能留言,甚至有朋友問我為何不許他們留言。我當然很想大家在這裡說說意見,交個朋友吧,但不知何解,總之不能留言。於是決定在這一個星期之內升級至MT 3.2,尤其見到MT 3.2的Plugin,真的十分吸引。希望上了3.2之後,可以解決留言的問題吧。...
Source favicon10:49 Crying 'corn' and angry 'bean jelly' » Danwei RSS 1.0
CryingCorn_0828s.jpg
Crying 'corn' by Legal Mirror

The fans of "Super Voice Girls" are really crazy for their idols. Before Li Yuchuan and Zhou Bichang arrived in Beijing on Aug 28 for 'Final PK' press conference. The online forums at Baidu have already buzzed with super girls fans' posts on the preparation to welcome their heroines at the airport. The 'corn' (Li Yuchuan's fans) agreed to dress uniformed T-shirts, stick corn labels on their faces and prepare welcome slogans. When Li got off from the airplane, she was blocked by lots of stewardess who asked for her signature. Li got scared and had to go out through another special track to escape next block from her 'corn'.

The 'corn' were very disappointed, they could not help crying since they missed their idol. The fans of Zhou Bichang got the lesson from the 'corn', so that they kept on all exits of the airport. Finally they met their 'Bibi' (Zhou's nickname) after almost 10 hours long waiting.

Zhang Liangying, who caught the third in "Super Voice Girls" final didn't attend the press conference in Beijing, but it will not influence the passion from her 'bean jelly' (Zhang's fans). Yesterday, a question in a forum of SHANDA Asking arised the anger from 'bean jelly'. A question appeared in a column called 'Scholar meets Soldier', it is:

"If there is a sugar daddy offering a sweet deal, would Zhang Liangying accept it?"

This question did offend 'bean jelly'. They faught with SHANDA and ask for its public apology. Finally SHANDA removed the question and clarified it was made by online users, not their own staff.

Links and Sources
Source favicon09:20 Tim Yang’s Geek Blog » 40-60% of Blogspot content is spam 百分之40-60的“内容”是SPAM » del.icio.us/chedong
注意: 百分之40-60的BlogSpot上的“内容”是SPAM,而留言SPAM的比例:根据我自己BLOG上的anti spam统计:更是超过了95%
Source favicon09:17 BLOG vs. BBS vs. 个人主页 王建硕: 就是那一点点差别 » del.icio.us/chedong
Blog就是网络个人资产的私有化,而Spider Friendly使得搜索引擎成为了Blog传播的催化剂
Source favicon08:33 Automated Posting of Daily Links » Jeremy Zawodny's blog
I'm experimenting with posting my "daily links" once a day as a full-fledged entry on my blog. The links come from my linkblog which is also mirrored on my del.icio.us page. Is this useful? Annoying? Stupid? Funny? Not worth it? Let me know......
Source favicon08:27 Daily Links for 2005-08-29 » Jeremy Zawodny's blog
Doctor Reprimanded for Calling Patient FatThe New Hampshire state attorney general is a fucktard. This is proof. (tags: news) For all of my annotated links, see my linkblog or my del.icio.us page....
Source favicon06:56 Ajaxify Yahoo! Mail » Jeremy Zawodny's blog
Speaking of web-based mail, it seem that a little Firefox extension lets you "add ajax support to Yahoo! Mail" Okay, I'll try to shut up about web-based mail for a day or so. [Spotted by a co-worker on the Ajaxian Blog.]...
Source favicon06:35 Everyone's Killer Feature is Different » Jeremy Zawodny's blog
I have to respectfully disagree with Michael Bazeley who says: As anyone who's used both Gmail and Yahoo Mail knows, one of the standout features of Gmail is its search ability. I've been using GMail since the first day it was available and search has never been the standout feature for me. Instead, it's the fact that GMail acts like a desktop app, has lots of room, and something that approximates threading. If they add sorting to the search results,...
Source favicon02:28 Yahoo! Mindset Widget » Jeremy Zawodny's blog
Corey Porter from Yahoo! Research Labs has created a Widget to get at Yahoo! Mindset. More info on creating Widgets that work on the Mac and Windows is on Yahoo! Widgets....
Source favicon02:07 假如Google Talk遇上Adwords » Jan's Tech Blog
Google Adwords最著名的就是Targeted Ads。它會檢視網頁內容,然後顯示出與內容相符的廣告。如果Google Talk遇上Adwords會成怎麼樣子呢?看看這張「創作圖片」,可能我們可以稍為窺看到Adwords如何在Google Talk上發生作用。...

^==Back Home: www.chedong.com

<== 2005-08-30

==> 2005-09-01