TORQUE Resource Manager

The TORQUE Resource Manager[4] is a distributed resource manager providing control over batch jobs and distributed compute nodes. Its name stands forTerascale Open-Source Resource and QUEue Manager. Cluster Resources, Inc. describes it as open-source[2] and Debian classifies it as non-free[3] owing[……]

Read more

[…]

Convert Chrome tabs to a list to save memory and your sanity

By the end of the workday, my Internet research and wanderings leave me with dozens upon dozens of open tabs. This trail of tabs is confusing to navigate and leaves my laptop feeling sluggish. If you use tabs as temporary bookmarks as I do and use Chrome, I suggest you give OneTab a whirl. This[……]

Read more

[…]

linux下 mysql用户的管理

自从上在redhat Enterprise 5 中安装了MySQL,这次来实践操作一下MySQL用户的管理;   一、root用户密码的维护: 由于安装MySQL完后,MySQL会自动提供一个不带密码的root用户,为了安全起见给root设置密码: #mysqladmin -u root password 123 (123为密码,也可以写成:’123’或”123″) ; 设置密码后登入时就不能直接输入mysql了,必须跟些参数了,如下: [root@localhost ~]# mysql -u root -p (-u 后跟登入的用户名,-p 提示要[……]

Read more

[…]

TWO useful tools about screen capture and youtube video download

Free Screen To Video BestVideoDownloader.rar 209K Scan and download […]

仅一行代码,打造一个在线编辑器

在大部分人眼里,技术宅给人的印象是沉默寡言,总摸不透他心里想些什么,彼此都保持距离。作为半个程序员,我觉得真正的技术宅大部分时间都在找乐子,鼓捣各种想法,和大部分人的极客心理是一样的,程序员也还爱讲笑话,也喜欢烧菜做饭,虽然大多是为了减减压,这样看来和常人没什么不一样。
不一样的地方,技术宅崇尚极致,喜欢极简,又希望简约不简单,背后就是技术宅满心思的不断的尝试,我正在看着一出好戏在上演:
“程序员 Jose Jesus Perez Aguinaga 在 CoderWall 分享了一个小技巧:在浏览器地址栏中输入一行代码:data:text/html, <htm[......]

Read more

[…]

linux shell 用sed命令在文本的行尾或行首添加字符

昨天写一个脚本花了一天的2/3的时间,而且大部分时间都耗在了sed命令上,今天不总结一下都对不起昨天流逝的时间啊~~~   用sed命令在行首或行尾添加字符的命令有以下几种: 假设处理的文本为test.file 在每行的头添加字符,比如”HEAD”,命令如下: sed ‘s/^/HEAD&/g’ test.file 在每行的行尾添加字符,比如“TAIL”,命令如下: sed ‘s/$/&TAIL/g’ test.file 运行结果如下图: 几点说明: 1.”^”代表行首,”$”代表行尾[……]

Read more

[…]