1.IP routing
http://www.metaswitch.com/unicast/what-is-ip-routing.aspx
http://technet.microsoft.com/en-us/library/bb727001.as
2.java locale
http://java.sun.com/j2se/1.5.0/docs/guide/intl/locale.doc.html
http://java.sun.com/docs/books/tutorial/i18n/locale/create.html
http://java.sun.com/developer/technicalArticles/J2SE/locale/#supported
3.jna
http://blog.csdn.net/shendl/archive/2008/12/23/3589676.aspx
4.how to display my logo on the addressbar(怎样在地址栏上显示我自己的logo)
http://www.chami.com/tips/Internet/110599I.html
使用;
或者在web程序的root下放一个名字为favicon.ico的icon
5.solaris doc
http://docs.sun.com/app/docs/coll/47.16
http://docs.sun.com/source/820-7679/
6.opensolaris user management
http://docsun.cites.uiuc.edu/sun_docs/C/solaris_9/SUNWaadm/SYSADV1/p4.html
7. mib
http://www.oidview.com/mibs/detail.html
http://www.alvestrand.no/objectid/1.html
http://www.alvestrand.no/objectid/1.3.6.1.2.1.25.html
http://www.mibdepot.com/index.shtml
8.css
http://www.echoecho.com/css.htm
http://www.w3schools.com/CSS/default.asp
http://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28Cascading_Style_Sheets%29
http://www.456bereastreet.com/archive/200509/css_21_selectors_part_1/
9.svn and netbeans
http://netbeanside61.blogspot.com/2008/04/subversion-with-netbeans-
ide-61-beta.html
tortoiseSubversion不能直接和netbeans使用,因为它没有标准的svn等命令,所以安装上subversion后netbeans才可以使用之,因为subversion会将自己的bin目录追加到path中,并且
它的bin下面有标准的svn等命令。
10. struts 2 url param
<a href=”<s:url value=”/User?op=delete” > <s:param name=”name”
value=”username”/> </s:url>” >delete
11. dynamic load js and namespace
http://ajaxpatterns.org/On-Demand_Javascript#Forces
http://unixpapa.com/js/
http://unixpapa.com/js/dyna.html
http://www.ejeliot.com/blog/109
http://weblogs.asp.net/mschwarz/archive/2005/08/26/423699.aspx
12.jsp get current application active session number(jsp中获得当前应用的session数)
http://www.stardeveloper.com/articles/display.html?article=2001111901&page=1
http://java.sun.com/products/servlet/2.1/api/javax.servlet.http.HttpSession.htm
13.struts2
◆ action配置中使用通配符 http://struts.apache.org/2.0.14/docs/action-
configuration.html
通配符制定的方法不能有参数
◆ http://stikiflem.wordpress.com/2008/08/27/struts-2-json-sample/
http://www.javaworld.com/javaworld/jw-08-2007/jw-08-ajaxtables.html?page=1
14.js library compare
http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks
http://www.ja-sig.org/wiki/display/UP3/Javascript+Toolkit+Comparison
15.在for循环中追加到list中的变量,每次都要new,而不是使用同一个!
16.change install package language
如果安装包是多语言的话,它一般会取得系统的语言设置,然后根据它来显示安装的语言,所以如果要将安装包
显示成英文的话,只要将系统的语言设置改成英文的就好了。
17.linux login process and b shell script run order
http://www.comptechdoc.org/os/linux/howlinuxworks/linux_hllogin.html
http://www.comptechdoc.org/os/linux/howlinuxworks/linux_hlbash.html
http://www.comptechdoc.org/os/linux/howlinuxworks/linux_hldevices.html
18.let putt displya japanese
http://wiki.mektroid.net/Setting_up_your_PuTTY_to_handle_Japanese_characters
19. windows bat file date
http://www.alphapatrol.com/blog/64/date-and-time-in-windows-batch-files.html
20.java console get tab/up/down key tty
http://jline.sourceforge.net/
http://www.linusakesson.net/programming/tty/index.php
21.perl
◆ 检查某个包是否存在 perl -e ‘use MIME::Lite;’
◆ 交互模式进入cpan perl -MCPAN -e shell
◆ CPAN - query, download and build perl modules from CPAN sites;
When the CPAN module is used for the first time, a configuration dialogue
tries to determine a couple of site specific options.
The result of the dialog is stored in a hash reference $CPAN::Config in a file
CPAN/Config.pm.在我的系统上是/usr/perl5/5.8.4/lib/CPAN;
CPAN includes some primitive searching capabilities and knows how to use
Net::FTP, LWP, and certain external download clients to fetch distributions
from the net.
比如说lynx,wget,ncftpget等网络工具来尝试下载用户要安装的包,但是有一点就是cpan好像不能设置最先使用哪个程序download包,所以如果是wget的话,请等待。