The Definitive C++ Book Guide and List--reference
摘要:http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-listReference Style - All LevelsA Tour of C++(Bjarne Stroustrup) The "tour" is a quick (about 180 pages and 14 chapters) tutorial overview of all of standard C++ (language and standard library,and using C++11) at a m
阅读全文
posted @
2014-02-12 13:39
一天不进步,就是退步
阅读(750)
推荐(0)
Where Should an Architect Begin?--reference
摘要:http://www.bitnative.com/2014/01/24/where-should-a-software-architect-begin/Where Should an Architect Begin?Posted onJanuary 24, 2014byCory HouseImagine you’re dropped in a new position with no one there to help provide a smooth knowledge transition. It’s like being dropped right out of the sky. Tha
阅读全文
posted @
2014-01-28 11:45
一天不进步,就是退步
阅读(469)
推荐(0)
What is Network Address Translation?---reference
摘要:http://whatismyipaddress.com/natWhat is Network Address Translation?Network Address Translation(NAT) is the process where a network device, usually a firewall, assigns a public address to a computer (or group of computers) inside a private network. The main use of NAT is to limit the number of publi
阅读全文
posted @
2014-01-27 13:52
一天不进步,就是退步
阅读(346)
推荐(0)
SVN命令行怎么用?--转百度知道
摘要:http://zhidao.baidu.com/link?url=uPWXURahp5KzdXbgrGTb9-r-abGaNC-J7dkhFkMhf062OJ1jeCM5wpBCgDR7bDg8uFrPTW2jL96NeTGjLNs8nKSVN Commit"C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe" /command:commit /path:%f /notempfile /closeonendSVN CommitAll"C:\Program Files\TortoiseSVN\bin\TortoiseP
阅读全文
posted @
2014-01-06 20:39
一天不进步,就是退步
阅读(628)
推荐(0)
以安全模式启动firefox
摘要:碰到firefox打开后一直没有响应,解决方法:以安全模式打开
阅读全文
posted @
2013-12-06 16:39
一天不进步,就是退步
阅读(312)
推荐(0)
windows端口查看及进程查找
摘要:1. 使用netstat查看端口 netstat -ano2. 查找特定端口号: netstat -aon|findstr "port"3. 查找该端口的进程 tasklist|findstr "port"
阅读全文
posted @
2013-11-28 16:22
一天不进步,就是退步
阅读(231)
推荐(0)
funny alphabet
摘要:1.A Boy Can Do Everything For Girl2. He Is Just Kidding3. Love Must Need Our Patience
阅读全文
posted @
2013-11-18 21:03
一天不进步,就是退步
阅读(174)
推荐(0)
Apache Thrift - 可伸缩的跨语言服务开发框架 ---转载
摘要:src:http://www.ibm.com/developerworks/cn/java/j-lo-apachethrift/http://thrift.apache.org/
阅读全文
posted @
2013-11-18 15:21
一天不进步,就是退步
阅读(306)
推荐(0)
url rewrite优化url的可读性
摘要:1.下载urlrewrite,官方下载地址:http://tuckey.org/urlrewrite/2.解压缩文件,将jar放入项目,并创建urlrewrite.xml: 3.将filter添加到web.xml里 UrlRewriteFilter org.tuckey.web.filters.urlrewrite.UrlRewriteFilter UrlRewriteFilter /* 4.修改urlrewrite.xml规则
阅读全文
posted @
2013-10-17 14:13
一天不进步,就是退步
阅读(231)
推荐(0)
perl基本语法--转载
摘要:http://www.cnblogs.com/zhtxwd/archive/2012/03/06/2381585.html本文介绍从变量类型、操作运算符、控制叙述、子程序、I/O和档案处理、 Regular Expressions、Spectial Variables、Help、函数、总结几个部分介绍perl,只是叙述了一些Perl的基本语法。一.数据型态(Data type): Perl 的数据型态大致分为四种:Scalar(变量)、Scalar Array(数组)、Hash Array(散列)、References(指针),看起来虽少但用起来却绰绰有余。尤其在写Perl程序时可以不必事先宣
阅读全文
posted @
2013-09-25 09:24
一天不进步,就是退步
阅读(549)
推荐(0)
Socket桥(转载)
摘要:最好方案:使用haproxy 或者nginx转发。自己写程序性能和监控难保证,推荐使用开源软件替代。源地址为:http://baishaobin2003.blog.163.com/blog/static/57381812201332355422107/Socket在使用过程中往往会出现这样的问题在生...
阅读全文
posted @
2013-08-05 10:12
一天不进步,就是退步
阅读(363)
推荐(0)
遍历查询ldap服务器用户
摘要:准备工作:使用openldap搭建server 过程略名词DN = Distinguished NameDC = Domain ComponentOU = Organization UnitCN = Common NameRDN = Relative DNUID = User ID1.初始化 protected static int init() { int flag = 0; try { ldapHost = "192.168.1.1"; ldapNameAll = "ldap://" + ldapHost; ldapPort = 389; rootE
阅读全文
posted @
2013-01-09 16:37
一天不进步,就是退步
阅读(9527)
推荐(0)