2009年11月17日 | 标签:

从申请域名到现在,一晃又有好多个星期过去了,当初的激情还在,只是我自己真的已经疲惫不堪,但无论如何,我得坚持。

因为制作部一台服务器的硬盘崩溃,我们损失了很多非常不错的资源,在过去两周,我又开始了本机资源的备份。清点我投身编程以来的电子书,已经超过10个G了,都说书籍藏而不读,犹如废纸,这些电子书,如果只是简单的存在硬盘中,也不过是一堆废物,以后我会坚持每天读一些章节,其中的精彩部分,我会拿出来分享。

锻炼了英文,学习了技术机技术,又有助于写作的提高,何乐而不为呢?

2009年10月11日 | 标签:
def my_ruby_snippet
  blog_post.should(be_highlighted)
end

http://alexgorbatchev.com/wiki/SyntaxHighlighter:Brushes

2009年9月23日 | 标签:

learning-sql-2nd-editionBy Alan Beaulieu
Publisher: O’Reilly
Released: April 2009
ISBN-10: 0596520832
ISBN-13: 978-0596520830
Pages: 336

官方网站:Here


Updated for the latest database management systems — including MySQL 6.0, Oracle 11g, and Microsoft’s SQL Server 2008 — this introductory guide will get you up and running with SQL quickly. Whether you need to write database applications, perform administrative tasks, or generate reports, Learning SQL, Second Edition, will help you easily master all the SQL fundamentals.

阅读全文…

2009年9月23日 | 标签:

Beautiful TeamsBeautiful Teams: Inspiring and Cautionary Tales from Veteran Team Leaders
By Andrew Stellman, Jennifer Greene

Publisher: O’Reilly Media, Inc.
Number Of Pages: 508
Publication Date: 2009-04-06
ISBN-10 / ASIN: 0596518021
ISBN-13 / EAN: 9780596518028

What’s it like to work on a great software development team facing an impossible problem? How do you build an effective team? Can a group of people who don’t get along still build good software? How does a team leader keep everyone on track when the stakes are high and the schedule is tight? Beautiful Teams takes you behind the scenes with some of the most interesting teams in software engineering history. You’ll learn from veteran team leaders’ successes and failures, told through a series of engaging personal stories — and interviews — by leading programmers, architects, project managers, and thought leaders. This book includes contributions from:

阅读全文…

2009年9月22日 | 标签: ,

Manning Prototype and Scriptaculous in Action本书的中译版已经由人民邮件出版社发行,翻译的质量还不错,只是不太喜欢所谓的“被誉为Prototype 和 Scriptaculous圣经”,还这种高调的说辞,还是慎用为好,书的内容如何,最终取决于读者的看法。

作者: Dave Crane / Bear Bibeault / Tom Locke
ISBN: 9781933988030
页数: 511
出版社: Manning Publications
出版年: 2007-03-21

来自Google Book的图书概述:

Prototype and Scriptaculous are libraries that extend standard Ajax. They make it easier to program Ajax and provide powerful features like drag and drop and animation. In this book, developers learn by playing and see how the libraries work in the real world.

Prototype和Scriptaculous均为标准Ajax的扩展库。它们的组合简化了Ajax编程,提供了诸如拖放和动画等强大的功能。在本书中,开发者通过实践学习,领会这两个库在真实世界的应用。

阅读全文…

2009年9月22日 | 标签: ,

最近在看Groovy on Rails,发现它内置了对Prototype 和Scriptaculous的支持,在《Grails权威指南》第一版中,作者也用了大量的篇幅介绍Scriptaculous的InPlaceEditor,于是借了一本中译的《Ajax实战 Prototype与Scriptaculous篇》,粗略的看了一下,的确是一个非常优秀的框架!

目前我已经收藏的Prototype 和Scriptaculous的电子书:

Manning.Prototype.and.Scriptaculous.in.Action.Mar.2007.pdf

Prototype.and.Script.aculo.us.Dec.2007.pdf

Apress.Practical.Prototype.and.script.aculo.us.Jun.2008.pdf

回头会一一和大家分享。

2009年9月8日 | 标签:

$>grails -Dserver.port=9090 run-app

2009年9月3日 | 标签:

Boot the Linux System and login as root,edit /boot/grub/menu.lst

Enjoy!

2009年9月1日 | 标签:

mysql> show databases;

mysql> use hspring;

mysql> show tables;

mysql> set character_set_results=’gbk’;

mysql> set names ‘utf8′;

mysql> set names ‘gbk’;

mysql> describe table_name;

mysql> drop database data_base_name;

mysql> drop table table_name;

mysql> delete from table_name;

mysql>  source c:/test.sql;

# mysqldump -u user -ppassword dev > dev.sql

# mysql -u user -ppassword -D dev < dev.sql

2009年9月1日 | 标签:

RedHat Linux command to reload or restart network (login as root user):

# service network restart
OR
# /etc/init.d/network restart

To start Linux network service:
# service network start

To stop Linux network service:
# service network stop

Debian Linux command to reload or restart network:
# /etc/init.d/networking restart

To start Linux network service:
# /etc/init.d/networking start

To stop Linux network service:
# /etc/init.d/networking stop

Ubuntu Linux user use sudo command with above Debian Linux command:
# sudo /etc/init.d/networking restart

To start Linux network service:
# sudo /etc/init.d/networking start

To stop Linux network service:
# sudo /etc/init.d/networking stop