随笔分类 -  摘录

上一页 1 2 3 4 5 6 ··· 12 下一页
摘要:http://www.cyberciti.biz/tips/freebsd-how-to-change-ip-address-or-setup-new-ip-address-to-existing-interface.html1.修改IP# vi /etc/rc.confhostname="fbsdx.test.com"ifconfig_lnc0="inet 192.168.0.6 netmask 255.255.255.0"### Default gateway ###defaultrouter="192.168.0.254"2.修 阅读全文
posted @ 2012-10-23 22:28 庚武 阅读(1276) 评论(0) 推荐(0)
摘要:http://www.apuebook.com/Advanced Programming in the UNIX® Environment, Second Edition源码:http://files.cnblogs.com/wucg/AdvancedProgrammingInTheUnixEnvironment2ed_src.zip官方源码:http://www.apuebook.com/src.tar.gz 阅读全文
posted @ 2012-10-23 14:00 庚武 阅读(184) 评论(0) 推荐(0)
摘要:Setting environment for using Microsoft Visual Studio 2010 x86 tools.d:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>cl /?Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 16.00.40219.01 for 80x86Copyright (C) Microsoft Corporation. All rights reserved. C/C++ COM... 阅读全文
posted @ 2012-09-27 11:24 庚武 阅读(557) 评论(0) 推荐(0)
摘要:from:http://blog.sina.com.cn/s/blog_582edf670100g75p.html 最近搞了下virtualbox虚拟机,想实现虚拟机与本机的互访,百度了一下,成功了。在这里写下来以备忘。 1、首先要为虚拟系统建立一个新的网络连接。 在virtualbox主界面中选择 阅读全文
posted @ 2012-06-02 01:52 庚武 阅读(1112) 评论(0) 推荐(0)
摘要:10 Tips for Moving From Programmer to Entrepreneur 很多参加 BarCamp 的人都在痛苦的从程序员转型为创业者。虽然我从来都不是疯狂的码农(把自己关在地下室里一周,折腾出十万行代码这样 =。=),但我也曾经做过这样的转型。在创办HelpSpot的这些年中,我确实也总结出了一些经验,以及人们会什么会转型失败。 1. 代码只占生意的5% 我见到的最多、最严重的问题就是开发者被代码绑架,花费数不清的时间让一个功能变得完美,或者炫耀最新的技术。是的,你的代码必须高质量,并且没有严重的 bug 和安全问题。但是你要记住,再好的代码如果没有人用的话都.. 阅读全文
posted @ 2012-06-01 12:21 庚武 阅读(169) 评论(0) 推荐(0)
摘要:private static string CreatePdf(string fileName){ string command = "gswin32c -q -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=\"" + fileName + ".pdf\" -fc:\\output.ps"; Console.WriteLine(command); Process p = new Process(); StreamWriter sw; StreamReader sr; ProcessStartI... 阅读全文
posted @ 2012-05-03 11:41 庚武 阅读(790) 评论(0) 推荐(0)
摘要:http://code.google.com/p/wkhtmltopdf/DescriptionSimple shell utility to convert html to pdf using the webkit rendering engine, and qt.IntroductionSearching the web, I have found several command line tools that allow you to convert a HTML-document to a PDF-document, however they all seem to use their 阅读全文
posted @ 2012-05-03 11:40 庚武 阅读(439) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2012-04-26 15:24 庚武 阅读(1) 评论(0) 推荐(0)
摘要:from:http://coolshell.cn/articles/355.html前些天Neo推荐了一个网站有《超过100本的linux免费书籍》,这里,我也向大家推荐20本最好的Linux免费书籍,当然,也是英文版的。1. Ubuntu Pocket Guide and Reference一本介绍关于Ubuntu 8.04和8.10的使用书。Websitewww.ubuntupocketguide.comAuthorKeir ThomasFormatPDFPages1522. Two Bits一本关于自由软件的历史和文化的书。不当当是软件,同样也有音乐,电影,科学和教育。Websitetw 阅读全文
posted @ 2012-04-26 15:14 庚武 阅读(289) 评论(0) 推荐(0)
摘要:http://www.truecrypt.org/docs/下载:http://files.cnblogs.com/wucg/TrueCryptSetup7.1a.ziphttp://www.truecrypt.org/downloadsIntroductionThe documentation is not guaranteed to contain no errors and is provided without warranty of any kind. For more information, please see Disclaimer.TrueCrypt is a softwar 阅读全文
posted @ 2012-04-25 15:45 庚武 阅读(413) 评论(0) 推荐(0)
摘要:HTML <meta>http-equivAttributeExampleUse the http-equiv attribute to define the character set for an HTML document:<head><meta http-equiv="content-type" content="text/html;charset=UTF-8" /></head>Browser SupportThe http-equiv attribute is supported in all 阅读全文
posted @ 2012-04-24 10:38 庚武 阅读(569) 评论(0) 推荐(0)
摘要:from:http://blog.csdn.net/dyllove98/article/details/7275320故事 和尚挑水 有两个和尚住在隔壁,所谓隔壁就是隔壁那座山,他们分别住在相邻的两座山上的庙里。这两座山之间有一条溪,于是这两个和尚每天都会在同一时间下山去溪边挑水,久而久之他么变成为了好朋友。 就这样时间在每天挑水中不知不觉已经过了五年。突然有一天左边这座山的和尚没有下山挑水,右边那座山的和尚心想:“他大概睡过头了。”便不以为意。哪知道第二天左边这座山的和尚还是没有下山挑水,第三天也一样。过了一个星期还是一样,直到过了一个月右边那座山的和尚终于受不了,他心想:“我的朋友可能生病 阅读全文
posted @ 2012-04-05 00:50 庚武 阅读(236) 评论(0) 推荐(0)
摘要:http://www.rdlt.com/multiple-memcache-instancesservers-on-windows.html安装:sc create "Memcached11200" binPath= "C:\Users\Administrator\Desktop\memcached\memcached.exe -d runservice -p 11200 -m 32" DisplayName= "Memcached11200" start= auto删除:sc deleteMemcached11200 阅读全文
posted @ 2012-03-19 16:39 庚武 阅读(281) 评论(0) 推荐(0)
摘要:http://citizen428.net/blog/2010/08/12/30-free-programming-ebooks/ Since this post got quite popular I decided to incorporate some of the excellent sug 阅读全文
posted @ 2012-03-04 13:43 庚武 阅读(258) 评论(0) 推荐(0)
摘要:ANSI ANSI编码 unicode和ansi都是字符代码的一种表示形式。 为使计算机支持更多语言,通常使用 0x80~0xFF 范围的 2 个字节来表示 1 个字符。比如:汉字 '中' 在 ANSI编码中文操作系统中,使用 [0xD6,0xD0] 这两个字节存储。 不同的国家和地区制定了不同的标准,由此产生了 GB2312, BIG5, JIS 等各自的编码标准。这些使用 2 个字节来代表一个字符的各种汉字延伸编码方式,称为 ANSI 编码。在简体中文系统下,ANSI 编码代表 GB2312 编码,在日文操作系统下,ANSI 编码代表 JIS 编码。 不同 ANSI 编码之 阅读全文
posted @ 2012-02-22 18:11 庚武 阅读(15722) 评论(0) 推荐(0)
摘要:http://self-issued.info/docs/draft-jones-json-web-signature-01.html 阅读全文
posted @ 2012-02-21 17:46 庚武 阅读(515) 评论(0) 推荐(0)
摘要:from: http://wiki.answers.com/Q/What_are_the_differences_between_SSRAM(Static Random Assessable Memory)-where the wordstaticindicates that it, does not need to be periodically refreshed, as SRAM uses bistable latching circuitry (i.e.,flip-flops) to store each bit. Each bit is stored as a voltage.Eac 阅读全文
posted @ 2012-02-15 10:54 庚武 阅读(305) 评论(0) 推荐(0)
摘要:http://msdn.microsoft.com/en-us/library/ff647790.aspx#scalenetchapt05_topic15Locking and synchronization provide a mechanism to grant exclusive access to data or code to avoid concurrent execution.This section summarizes steps to consider to help you approach locking and synchronization correctly:De 阅读全文
posted @ 2012-02-09 10:10 庚武 阅读(420) 评论(0) 推荐(1)
摘要:Core Python Programming Language : Page477Anonymous Functions and lambdaPython allows one to create anonymous functions using the lambda keyword. They are "anonymous"because they are not declared in the standard manner, i.e., using the def statement. (Unless assignedto a local variable, su 阅读全文
posted @ 2012-02-04 17:17 庚武 阅读(622) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 12 下一页