14 Jan 2010

把typecho升级到0.7了

什么时候typecho能够像wp那样在线升级就好了。

11 Jan 2010

漂亮的VIM配色方案

这里
http://code.google.com/p/vimcolorschemetest/
有一堆一堆的配色方案

Browse By File Type

Featuring 428 schemes:

07 Jan 2010

把你的netbeans变成英文版

呵呵其实很简单,装完后再你使用的快捷方式内增加

--locale en:us就可以了,比如我的快捷方式里的设置为:

"D:\Program Files\NetBeans 6.8\bin\netbeans.exe" --locale en:us

ok 英文了.

按照这个方法你可以为自己定制很多套语言版本的netbeans,但只要一份安装。

18 Dec 2009

Graffiti CMS 开源了

see also:http://weblogs.asp.net/kencox/archive/2009/12/17/graffiti-cms-is-now-free-open-source.aspx

11 Dec 2009

Repeater,DataList等嵌套如何绑定父repeater字段?

嘿嘿,其实Container有个Parent属性,把它转换为RepeaterItem再取其DataItem

DataBinder.Eval(((System.W

eb.UI.WebControls.Repeat erItem)Container.Parent.Parent.Parent).DataItem

09 Dec 2009

使用SQL语句更改数据表的默认值

以前还真没这么干过,都是手工去掉约束,再添加的,今天一边google一边搞啊搞啊的,最终下面这个脚本可以用了

alter table dbo.SOTransaction
    alter column UnitCostWithoutTax decimal(10, 2not null

go

declare @name varchar(1000)
declare @tablename varchar(1000)
declare @fieldname varchar(1000)

set @tablename = ‘SOTransaction’;
set @fieldname = ‘UnitCostWithoutTax’;

select @name = b.name from syscolumns a inner join sysobjects b
    on b.id=a.cdefault
where
    a.id= object_id(@tablename)
    and a.name=@fieldname
    and b.name like ‘DF%’
–print @name

exec(’ alter table SOTransaction drop constraint ‘ + @name);
go
alter table dbo.SOTransaction
    add constraint DF_SOTransaction_UnitCostWithoutTax default (0) for UnitCostWithoutTax

02 Dec 2009

我的win7和ubuntu之旅

先装了win7 后装了ubuntu9.10,开始煎熬了数日...

记实录: http://forum.ubuntu.org.cn/viewtopic.php?f=139&t=242214

28 Nov 2009

腾讯webQQ的 CSS Sprite

web qq速度很快,很多图标处理的也很漂亮,偷偷看了一下sprite的图片,所有图标都在这个图里了20多k,性能压倒一切啊。

webQQ CSS Sprite

27 Oct 2009

在线编辑器的一个新选择。

今天lifesinger发布了淘宝编辑器,

可以在这里看到演示

介绍可以看这里,http://lifesinger.org/blog/2009/10/kissy-editor/

20 Oct 2009

Wordpress真的不错

另外一个博客,用的wp,自动升级使用了一下,很不错,速度很快
Upgrade WordPress
Downloading update from http://wordpress.org/wordpress-2.8.4.zip.

Unpacking the update.

Verifying the unpacked files

Installing the latest version

Upgrading database

WordPress upgraded successfully