上一页 1 2 3 4 5 6 7 8 ··· 17 下一页

2013年9月18日

用defy来潜水最终还是挂了........

摘要: defy526是6级,,不过好像这次我用来潜过去不足2米还是挂掉了... 国际通用的防水级别认证体系: IPX-0 没有防水保护 IPX-1 设备在正常操作状态下,可以提供相当于3-5毫米/分钟降雨的防水保护10分钟。中国户外运动网www.iouter.com户外运动论坛 IPX-2 级别基本与IPX-1相同,但是可以通过各个方向上翘15度的防水测试。 IPX-3 60度角度的泼溅防水保护,提供了2-5分钟的10公升/秒流速以及80-1 00牛/m的压力的防水保护。 IPX-4 级别基本与IPX-3相同,但是可以提供全方位和角度的泼溅防水保护。 IPX-5 全方位和角度的防水保护... 阅读全文

posted @ 2013-09-18 15:34 Orz.. 阅读(204) 评论(1) 推荐(0)

2013年9月3日

excel用vlookup,lookup时查询数据需要排序

摘要: 如题,排出来的数据不对,之前没有是看清楚..所以记下来,日是后要小心点.... 阅读全文

posted @ 2013-09-03 10:56 Orz.. 阅读(410) 评论(0) 推荐(0)

2013年8月31日

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.. 阅读(263) 评论(0) 推荐(0)

2013年8月27日

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.. 阅读(189) 评论(0) 推荐(0)

2013年8月15日

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.. 阅读(276) 评论(0) 推荐(0)

2013年8月13日

再一次见证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.. 阅读(242) 评论(0) 推荐(0)

2013年7月31日

windows批处理中的%0 %1 %2 %3

摘要: 原来就是参数的顺序.....倒...我还查了老半天 阅读全文

posted @ 2013-07-31 16:16 Orz.. 阅读(451) 评论(0) 推荐(0)

2013年7月26日

在英文 sql2005中 比较nvarchar 与 varchar的速度

摘要: declare @str1 varchar(max);declare @count int;set @count = 0;print 'begin'while @count < 10000000beginset @str1 = @str1 + '*';set @count = @count +1;endprint @str1print 'end'--time usage:00:01:17declare @str1 nvarchar(max);declare @count int;set @count = 0;print 'begin 阅读全文

posted @ 2013-07-26 13:47 Orz.. 阅读(190) 评论(0) 推荐(0)

写的cursor demo仅作记录

摘要: declare @objectID int;declare objcur cursor forselect top 10 object_idfrom m_objectopen objcurfetch next from objcur into @objectIDwhile @@fetch_status = 0begin print 'dev' + cast(@objectID as varchar(32))fetch next from objcur into @objectIDendclose objcurdeallocate objcur写的cursor demo仅作记录. 阅读全文

posted @ 2013-07-26 09:15 Orz.. 阅读(169) 评论(0) 推荐(0)

2013年5月29日

羊城通的"空中充值"

摘要: 看了一下羊城通的"空中充值"后来发现网上充了之后还是要到那些卡机中写卡的...有点概念炒作的嫌疑. 阅读全文

posted @ 2013-05-29 13:25 Orz.. 阅读(297) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 7 8 ··· 17 下一页

导航