08 2013 档案

ubuntu1204上不能正常用emacs配合gocode进行自动补全
摘要:我按gocode的页面https://github.com/nsf/gocode上去做,可是还是未成功,,我确认auto-complete在c-mode中是可以使用的,因为有补全出来了,我再找了http://stackoverflow.com/questions/12278990/auto-complete-with-go-mode发现1.3.1的auto-complete要在dic中加入go-mode及修改auto-complete.el中的ac-mode函数,加入ac-mode可是最后还是不行,补全时,会在emacs中弹出** 1** 2....基本补一次弹一个窗 阅读全文

posted @ 2013-08-31 11:14 Orz.. 阅读(266) 评论(0) 推荐(0)

geusture for chrome cfg
摘要:{ "name": "Chrome Gestures", "version": "1.13.4", "normal_actions": { "L": { "name": "back", "args": [] }, "R": { "name": "forward", "args": [] }, "UD": { " 阅读全文

posted @ 2013-08-27 14:27 Orz.. 阅读(191) 评论(0) 推荐(0)

mssql的delete用用到被delete的表的别名
摘要:+' delete m from '+@strDBName +'.dbo.m_device as m where not exists ' +' (select 1 from @tmpDevice where nodeid = m.nodeid) '上面终于面表了,怎样在mssql的delete用用到被delete的表的别名如果不用别名会写成下面那么复杂 +' delete from '+@strDBName +'.dbo.m_device where nodeid in ' +' (select node 阅读全文

posted @ 2013-08-15 11:08 Orz.. 阅读(280) 评论(0) 推荐(0)

再一次见证mssql中in 与exist的区别
摘要:见下面代码 /*+' select * from '+@strDBName +'.dbo.m_aic where nodeid not in(select nodeid from @tmpAIC) '*/ /*+' select * from '+@strDBName +'.dbo.m_aic as m where not exists (select 1 from @tmpAIC where nodeid = m.nodeid) '*/第一行是用了in第二行用了exists之前看书就听过说由于exist会一遇到命中条件就返回,而 阅读全文

posted @ 2013-08-13 13:24 Orz.. 阅读(252) 评论(0) 推荐(0)

导航