上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页

2013年4月24日

代码编辑器与代码高亮

摘要: 代码编辑器:codemirror (http://codemirror.net//)代码高亮:SyntaxHighlighter(http://alexgorbatchev.com/SyntaxHighlighter)这两者组合可以很好的解决很多在线代码编辑与显示的任务。 阅读全文

posted @ 2013-04-24 12:24 argb 阅读(344) 评论(0) 推荐(0) 编辑

2013年4月18日

awk 特性比较

摘要: http://awk.freeshell.org/AwkFeatureComparison比较各个版本的awk特性的支持情况posix awk标准不支持数组长度的函数,这里有几种方法介绍http://awk.freeshell.org/ArrayLengthhttp://awk.freeshell.org/关于awk的不错站点 阅读全文

posted @ 2013-04-18 12:57 argb 阅读(149) 评论(0) 推荐(0) 编辑

2013年4月8日

programing hive 读书笔记

摘要: 1、Schema on readWhen you write data to a traditional database,either through loading extenal data,writing the output of a query,doing UPDATE staements,etc.,the database has total control over the storage.The database is the "gatekeeper". An important implication of this control is that the 阅读全文

posted @ 2013-04-08 21:01 argb 阅读(253) 评论(0) 推荐(0) 编辑

2013年3月27日

shell学习

摘要: http://tille.garrels.be/training/bash/index.htmlhttp://wiki.bash-hackers.org/syntax/expansion/introhttp://wiki.bash-hackers.org/几本书记录如下:A Practical Guide to Linux Commands, Editors, and Shell Programming.pdfLinux Command Line And Shell Scripting Bible 2ed.pdf 阅读全文

posted @ 2013-03-27 22:26 argb 阅读(196) 评论(0) 推荐(0) 编辑

mysql 相关记录

摘要: 1、查看编译参数head -30 mysql/bin/mysqlbug2、数据库修复mysqlcheck --auto-repair --databases data_platform --user=root --password场景:show tables; 有表存在,但是去用不了,修复之后表确实不存在了,show不出来了,之前mysql被我kill过。3、数据库中文乱码网上讲了很多情况和方法,总结起来三点:1、数据库本身的编码设置用 show variables like "%character% 可以看到,各个编码要尽量保持一致[mysqld]character_set_ser 阅读全文

posted @ 2013-03-27 14:33 argb 阅读(252) 评论(0) 推荐(0) 编辑

2013年3月24日

java 读书笔记

摘要: 本文主要是《Introduction to Java Programming, Comprehensive Version (9th Edition)》的读书笔记。--坚持,近2000页的英文电子书!1、Youshould not let the method terminate the program—the caller should decide whether to terminatethe program.这是关于异常处理的一句话,可见如果被调用函数出现异常,对于如何处理这个异常应该交由调用者处理,而不是被调用函数自己在内部处理,被调用函数要做的应该是检测异常的出现,之后将之thro 阅读全文

posted @ 2013-03-24 02:50 argb 阅读(323) 评论(0) 推荐(0) 编辑

2013年3月22日

linux 查看ip

摘要: 机子上没有ifconfig怎么查看本机ip?1、host 主机名 阅读全文

posted @ 2013-03-22 16:54 argb 阅读(144) 评论(0) 推荐(0) 编辑

2013年3月21日

scp 免输入密码的方法

摘要: 简单来说就是:本机生成一个私钥和一个公钥,然后把公钥保存到目标机上。别人写的一个小教程,具体如下:第一步:生成密匙对,我用的是rsa的密钥。使用命令 "ssh-keygen -t rsa"[user1@rh user1]$ ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/home/user1/.ssh/id_rsa):Created directory '/home/user1/.ssh'.Enter passphras 阅读全文

posted @ 2013-03-21 18:38 argb 阅读(2029) 评论(0) 推荐(0) 编辑

crontab 使用方法

摘要: 要使用crontab定时器工具,必须要启动cron服务:service cron startcrontab的语法,如图:crontab各参数说明:-e : 执行文字编辑器来编辑crontab,内定的文字编辑器是VI-r : 删除目前的crontab-l : 列出目前的crontab(查看专用)-i : 会和-r 配合使用,在删除当前的crontab时询问,输入y 则删除注意crontab是分用户的,以谁登录就会编辑到谁的crontabcrontab特殊的符号说明:"*"代表所有的取值范围内的数字。特别要注意哦!"/"代表每的意思,如"*/5&q 阅读全文

posted @ 2013-03-21 13:46 argb 阅读(1295) 评论(0) 推荐(0) 编辑

2013年3月18日

php性能分析工具xhprof

摘要: 网址:http://pecl.php.net/package/xhprof简介:XHProf是Facebook放出的轻量级调试工具。和Xdebug相比,XHProf更加易用和可控,尤其是生成流程图和调试数据对比的功能很好很强大。 阅读全文

posted @ 2013-03-18 01:54 argb 阅读(159) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页

导航