10.28.04

Post From Code Library

Posted in 网络资源 at 4:15 pm by

测试测试,介个东西还是挺好用的,Code Library for .NET

10.26.04

titi说要早起

Posted in 悲喜人生 at 1:01 am by Ike

titi扬言明天要早起,你要知道我很是惟她马首是瞻的,所以我也决定早起,只是不要我起了她还在狂睡就好!

10.25.04

bohr疯了

Posted in 悲喜人生 at 6:45 pm by

终于搞定10g,于是回来狂发,sigh。

10.23.04

感冒了

Posted in 悲喜人生 at 11:54 pm by

早上在宿舍看书,觉得闷,于是开了半扇窗。

娘的,现在头晕,貌似感冒了,sigh!

10.21.04

周围住的都是有钱人

Posted in 悲喜人生 at 10:53 am by

去了趟银行,是个鬼都几十万几百万的提款,一个貌似还是高中生的mm跑进去说,我存50万是不是可以办贵宾卡啊。
哎,伤死了!没抓住机会,真该泡她!

10.20.04

忽然发现是个鬼都变漂亮了

Posted in 悲喜人生 at 6:09 pm by

看来大家的生活都很好嘛,吃香的喝辣的,还能到处去玩。

10.15.04

Google Desktop Search

Posted in 网络资源 at 9:53 pm by

Google推出的新的对本地文件进行search的工具,不但可以用filetype搜索Word、Excel、PowerPoint之类
而且还支持Outlook的邮件、AIM的聊天记录,以及IE的Cache和历史记录,有意思。

Google Desktop Search是在电脑Idle的时候进行search,装了一下貌似不错,呵呵

Updated:原来的代理脚本有问题,开着代理不能用Google Desktop Search,现在已经改过了,呵呵

10.14.04

关于写出质量好的软件

Posted in 经验心得 at 1:06 am by

看了MVM写的如何用正确的方法来写出质量好的软件的75条体会,挺有意思的。

决定试一下XP和TDD,顺便看看bugzilla是不是真的像传说中的好用

10.12.04

Titi不在的日子真难熬

Posted in 悲喜人生 at 11:14 am by

还好明天就回来了,呵呵,忍住……
Update:居然今天就回来了,oh, yeah…

PS:Fifa2005已经出了!

Code Highlighter

Posted in 网络资源 at 12:23 am by Ike

挺好使的,http://www.csharpfriends.com/Demos/color_code.aspx,下面是一段测试代码!

using System;
using System.IO;
namespace RemoveBlankLine
{
class RemoveBlankLineApp
{
  static void Main(string[] args){
   if(args.Length!=1){
    Console.WriteLine(“Usage: RemoveBlankLine.exe mycode.cs”);
   }
   else
   {
    StreamReader reader=null;
    StreamWriter writer=null;
    try
    {
     reader=new StreamReader(args[0]);
     writer=new StreamWriter(“new.”+args[0],false);
     string line=reader.ReadLine();
     while(line!=null){
      if(line.Trim().Length>0){
       writer.WriteLine(line);
      }
      line=reader.ReadLine();
     }
    }
    catch(Exception e){
     Console.Write(“Exit with error.\r\n\r\n”+e.ToString());
    }
    finally{
     if(reader!=null){
      reader.Close();
     }     
     if(writer!=null){
      writer.Close();
     }    
    }
   }
  }
}
}

10.09.04

PageRank

Posted in 悲喜人生 at 7:16 pm by

一不小心看到http://blog.syva.net的PageRank居然有2了,哈哈。
同时,bohr和bluelava的blog也都有1了。

Update:关于PageRank的简单介绍

10.08.04

From IBM developerWorks newsletter

Posted in 杂文趣事 at 4:21 pm by

发现Scott写的很有趣,zz一下子:

Greetings, developerWorks readers.

A few weeks ago, while seeking to distract my very pregnant wife who was anxious for labor to start, I suggested we wander through some model houses in a nearby upscale neighborhood. It was fun. I was especially impressed by one model that offered a swimming pool, in-home movie theater, and free golf cart, all for only $780,000 USD. I mean, who wouldn’t shell out three quarters of a million to get that free golf cart, right? What I couldn’t understand was why 4800 square feet only netted you 3 bedrooms.

This past week, developerWorks celebrated five years of serving up great developer content to a fast-growing group of readers. We may not offer free golf carts, but you won’t find any wasted space either. See highlights this week on testing across multiple platform architectures with Rational TestManager, constructing a reliable Web service, designing software architectures, and more on statistical programming with R.

Speaking of strange promotions, has anyone out there ever actually gone on one of those 3 days/4 nights paid vacations that you are supposed to win if you only visit the time-share condos? I think anyone whose marketing data pegs me as a time-share kind of guy needs to go back to running a lemonade stand.

Until next time,
Scott Laningham

10.05.04

好吃的麻花

Posted in 悲喜人生 at 9:07 pm by

在实验室把伟哥带来的麻花借花献佛的分完了,哈哈。
结果没有想到楚楚居然还是要拿去给别人的,这下被骂了。

不怕不怕,楚楚好人来着,大不了一顿打。

10.04.04

好朋友

Posted in 悲喜人生 at 11:03 pm by

世界上有两种人:
一种说:你是我的好朋友,你可以欺负任何人,就是不能欺负我;
另一种说:你不欺负我,还能欺负谁?谁让你是我的好朋友。

很难说,哪个对哪个错,但是结果通常是前一种和后一种成了好朋友,一个愿打,一个愿挨!

GIS相关资源

Posted in 网络资源 at 8:34 pm by

skyswind贴了两篇咚咚,可以看一下,一个是关于GIS研究方向的,一个是GIS相关的核心期刊及影响因子

« Previous entries