上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页
摘要: ``` Option Explicit Sub SendEmail() Dim olApp As Object, newEmail As Object Set olApp = New outlook.Application Set newEmail = olApp.CreateItem(olMailItem) With newEmail: .To = Sheet1.Range("... 阅读全文
posted @ 2017-08-29 16:54 idlewith 阅读(412) 评论(0) 推荐(0) 编辑
摘要: ``` [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wPa... 阅读全文
posted @ 2017-08-02 18:12 idlewith 阅读(140) 评论(0) 推荐(0) 编辑
摘要: http://interactivepython.org/courselib/static/pythonds/index.html 阅读全文
posted @ 2017-08-01 10:06 idlewith 阅读(149) 评论(0) 推荐(0) 编辑
摘要: docker exec it app bash (running a virtaul bash) INSTALL DOCKER uname r curl sSL https://get.docker.com/ | sh docker v Docker version 1.11.2 build b9f 阅读全文
posted @ 2017-07-31 11:27 idlewith 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ``` Learning C++ as a New Language(中译文)、《C++ Primer》第四版、《C++编程规范》、《Accelerated C++》和《C++必知必会》 ``` 阅读全文
posted @ 2017-07-16 16:34 idlewith 阅读(154) 评论(0) 推荐(0) 编辑
摘要: ``` 底层系统:进一步回归 C语言,更强的控制力,更精确的操作。 网页开发:2006年左右,C++和 fastcgi就被一起赶出 web世界了。 高性能服务:varnish, nginx, redis 等新的高性能网络服务器都是纯C开发的。 分布式应用:2007年左右, C++被java和其他动态语言彻底赶跑。 游戏服务端:2008年后进一步进化为 C 和 脚本,完全看不到胖C++服务端了。 并... 阅读全文
posted @ 2017-07-16 15:28 idlewith 阅读(144) 评论(0) 推荐(0) 编辑
摘要: ``` from collections import Counter from log_list import log_list print [k for k, v in dict(Counter(log_list)).items() if v != 1] ``` 阅读全文
posted @ 2017-07-12 18:31 idlewith 阅读(104) 评论(0) 推荐(0) 编辑
摘要: ``` [DllImport("kernel32.dll", EntryPoint = "SetProcessWorkingSetSize")] public static extern int SetProcessWorkingSetSize(IntPtr process, int minSize, int maxSize); private ... 阅读全文
posted @ 2017-06-28 13:16 idlewith 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 1 1 2 3 General Target Extension: 4 VC++ Directories Include Directories: Library Directories: 2 1 2 阅读全文
posted @ 2017-06-13 09:53 idlewith 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 转载自 https://yijingping.github.io/2013/01/02/%E6%88%91%E7%9A%84%E7%9F%A5%E8%AF%86%E4%BD%93%E7%B3%BB.html 职业规划 方向:金融大数据(量化投资),突破口是该行业内的技术架构师 目标:在40岁以前实现 阅读全文
posted @ 2017-06-05 11:11 idlewith 阅读(230) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 21 下一页