MySQL where in 排序

摘要: select * from table where id in (5,1,8)Where in 按条件顺序排序select * from table where id in (5,1,8) order by field(id, 5, 1 ,8) 阅读全文
posted @ 2011-08-26 21:46 wangwenbin 阅读(537) 评论(0) 推荐(1)

SecureCRT For Mac 永久试用

摘要: rm /Users/用户名/Library/ApplicationSupport/VanDyke/SecureCRT/Config/SecureCRT_eval.lic添加进crontab中自动定时删除 阅读全文
posted @ 2011-08-10 10:35 wangwenbin 阅读(1777) 评论(0) 推荐(0)

开发常用网站地址备忘(2011-08-05)

摘要: 搜索sphinx:http://sphinxsearch.com/coreseek:http://www.coreseek.cn/NOSQLredis:http://redis.io/redis中文手册:http://redis.readthedocs.orgmongodb:http://www.mongodb.org/其它http://readthedocs.org/不断更新中...... 阅读全文
posted @ 2011-08-05 10:17 wangwenbin 阅读(161) 评论(0) 推荐(0)

中文版《学习GO语言》(PDF下载)

摘要: 英文原版《gobook》http://miek.nl/cgi-bin/gitweb.cgi?p=gobook.git;a=summary中文版《学习GO语言》http://u.115.com/file/dn6kycz9(PDF下载)http://www.mikespook.com/learning-go/(译者博客)中文版翻译的非常用心,OrzOrzOrz...... 阅读全文
posted @ 2011-08-03 08:57 wangwenbin 阅读(2394) 评论(2) 推荐(0)

Mac常用软件(2011-08-04)

摘要: 网络浏览Chrome --- 启动速度快, 丰富的扩展,越来越强大了。Firefox --- 在Mac下使用Firefox的唯一理由就是Firebug,但是Chrome自带的开发工具越来越强大了,Firefox已成为我的备用浏览器了。聊天软件QQ代码编辑NetBeans --- 跨平台编辑器,最重要的是内置了SVN版本控制,可定义快捷键快速提交代码,非常方便。MacVimCoda媒体软件MPlayerXFanRaido ---豆瓣FM,Mac客户端口。其它软件Quicksilver --- Mac下的神器,可自定义快捷键快速启动执行软件,与AutoHotKey媲美。CodeBox --- 代码 阅读全文
posted @ 2011-07-30 22:48 wangwenbin 阅读(495) 评论(0) 推荐(0)

NFS挂载目录

摘要: A 机器 (192.168.1.1)---------------------------------------------------------------------------------1 安装nfs2 增加配置nano /etc/exports/www/web/ 192.168.1.2(rw,sync,no_root_squash,no_subtree_check) 3 刷新配置sudo exportfs -r 4 重启服务sudo /etc/init.d/portmap restartsudo /etc/init.d/nfs-kernel-server restart 5 重新 阅读全文
posted @ 2011-07-30 22:10 wangwenbin 阅读(511) 评论(0) 推荐(0)