上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页
摘要: 先确保本地Linux服务器SSH服务开启,如果没有开启直接执行指令:service sshd start然后我们使用ssh指令进行远程登陆ssh username@ip-address输入passwd指令修改旧密码修改默认账号root ----更新:翌日发现安装某些包会出现错误,提示找不到root,... 阅读全文
posted @ 2014-04-28 23:32 深海大虾 阅读(3274) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install python-software-propertiessudo apt-add-repository ppa:brightbox/ruby-ngsudo apt-get updatesudo apt-get install ruby2.1ruby2.1 -vr... 阅读全文
posted @ 2014-04-27 23:45 深海大虾 阅读(1667) 评论(0) 推荐(0) 编辑
摘要: Parallel.For - for 循环的并行运算 Parallel.ForEach - foreach 循环的并行运算 Parallel.Invoke - 并行调用多个任务 Task - 任务,基于线程池。其使我们对并行编程变得更简单,且不用关心底层是怎么实现的PLINQ - 用于对内存中的数据... 阅读全文
posted @ 2014-04-22 16:42 深海大虾 阅读(270) 评论(0) 推荐(0) 编辑
摘要: MethodBase method = new StackFrame(1).GetMethod();string ahjesus = method.ReflectedType.FullName + "." + method.Name;适用范围,track和log 阅读全文
posted @ 2014-04-17 14:47 深海大虾 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 转载自http://www.cnblogs.com/DotNetNuke/archive/2009/04/23/1441899.html使用SandCastle创建.Net帮助文档Sandcastle是微软提供的一个根据XML注释和DLL文件生成帮助文件的工具,目前是在CodePlex上的一个开源项目,可以去这里下载:Sandcatle 项目Sandcastle 本身是一个console的程序,为了方便使用,我们可以使用他的GUI版本:Sandcastle Help File Builder第一步,为你写的代码添加XML注释我们创建一个简单的ClassLibrary1项目最为示范:using 阅读全文
posted @ 2014-04-09 10:44 深海大虾 阅读(261) 评论(0) 推荐(0) 编辑
摘要: UPDATE [dbo].[TLotterySpiderRule] SET [Id] = 0declare cus_cursor cursor scroll for SELECT Id from [dbo].[TLotterySpiderRule] open cus_cursordeclare @Id intdeclare @count intset @count=0fetch next from cus_cursor into @Idwhile @@FETCH_STATUS=0beginset @count=(@count+1)print @countUPDATE [dbo].[TLotte 阅读全文
posted @ 2014-04-01 16:20 深海大虾 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 下载最新版webstorm,选择此集成开发环境是因为支持性较好,在vs下也有插件支持,不过感觉有些牵强附vs插件NTVS详细介绍安装好以后就需要配置npmNPM 国内高速镜像source:http://npm.cbyun.com/# speed testtime npm --registry http://npm.cbyun.com install express# result--wtf?npm --registry http://npm.cbyun.com install express 1.62s user 0.49s system 59% cpu 3.569 total测试期频繁同步. 阅读全文
posted @ 2014-03-22 14:50 深海大虾 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 访问http://nodejs.org/,根据系统选择下载文件,我用的win7 64安装一路下一步直到完成运行cmd输入node -v查看是否安装成功成功会显示版本号到此环境搭建完毕===========================================割了========================================验证环境及运行新建文件夹 D:\NodeJsApp内建app.js并输入代码//app.js varhttp = require('http'); http.createServer(function(req, res) { res 阅读全文
posted @ 2014-03-09 17:22 深海大虾 阅读(246) 评论(0) 推荐(0) 编辑
摘要: Console.WriteLine("start:出自http://www.cnblogs.com/ahjesus尊重作者辛苦劳动成果,转载请注明出处,谢谢!"); List sourceArr = new List { 99, 51, 61, 41, 8, 73, -3, 225, 3, 10, 0 }; int maxIndex = sourceArr.Max() * 10 + 1; object[] replaceArr = new object[maxIndex]; sour... 阅读全文
posted @ 2014-02-19 17:58 深海大虾 阅读(372) 评论(1) 推荐(1) 编辑
摘要: 记录一下,抽空下载源码了研究下 阅读全文
posted @ 2013-12-27 14:47 深海大虾 阅读(723) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 17 下一页