浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 221 222 223 224 225 226 227 228 229 ··· 630 下一页

2013年1月14日

摘要: 我参与过的开源项目 | 互联网,请记住我我参与过的开源项目有好几个都没有写明是何种license,因为用的人少~~~adatfeed: 是一个wordpress插件,用来实现在feed中插入广告。程序下载:http://tudodo.com/show.php?f=146&u=1&t=1acfilter: 项目主页:http://github.com/xurenlu/acfilter 是一个PHP... 阅读全文
posted @ 2013-01-14 15:51 lexus 阅读(335) 评论(0) 推荐(0)

摘要: AutoMake 学习笔记---使用过程 | 互联网,请记住我AutoMake 学习笔记---使用过程发表于 2008/04/18 由 一米六二过程记录: 1.autoscan 2.修改configure.scan,重命名为configure.in,编辑Makefile.am 3.运行aclocal 4.autoconf 5.automake –add-missing 6.好了,你可以config... 阅读全文
posted @ 2013-01-14 15:49 lexus 阅读(162) 评论(0) 推荐(0)

摘要: 简明 Vim 练级攻略 | 酷壳 - CoolShell.cn下面,让我来说说最强的光标移动:%: 匹配括号移动,包括(, {, [. (陈皓注:你需要把光标先移到括号上)*和#: 匹配光标当前所在的单词,移动光标到下一个(或上一个)匹配单词(*是下一个,#是上一个) 阅读全文
posted @ 2013-01-14 13:16 lexus 阅读(293) 评论(0) 推荐(0)

摘要: 简明 Vim 练级攻略 | 酷壳 - CoolShell.cn:e <path/to/file> → 打开一个文件:w → 存盘:saveas <path/to/file> → 另存为<path/to/file>:x,ZZ 或:wq → 保存并退出 (:x表示仅在需要时保存,ZZ不需要输入冒号并回车):q! → 退出不保存:qa!强行退出所有的正在编辑的文件,就算别的文件有更改。:bn和:bp→ ... 阅读全文
posted @ 2013-01-14 13:14 lexus 阅读(436) 评论(0) 推荐(0)

摘要: 简明 Vim 练级攻略 | 酷壳 - CoolShell.cn简单的移动光标0 → 数字零,到行头^ → 到本行第一个不是blank字符的位置(所谓blank字符就是空格,tab,换行,回车等)$ → 到本行行尾g_ → 到本行最后一个不是blank字符的位置。/pattern → 搜索pattern 的字符串(陈皓注:如果搜索出多个匹配,可按n键到下一个) 阅读全文
posted @ 2013-01-14 13:12 lexus 阅读(211) 评论(0) 推荐(0)

摘要: C++的字符串格式化库 | 酷壳 - CoolShell.cnC++的字符串格式化库2010年11月2日 陈皓 发表评论 阅读评论 3,098 人阅读 这里向大家介绍一个C++的字符串格式化库,叫cpptempl,这个库支持对字符串格式的条件,循环,变量插入。看上去很不错,只不过其是基于boost库的。下面是一个例子:12345678// The text templatewstring ... 阅读全文
posted @ 2013-01-14 11:51 lexus 阅读(228) 评论(0) 推荐(0)

摘要: 无锁队列的实现 | 酷壳 - CoolShell.cn无锁队列的实现 阅读全文
posted @ 2013-01-14 11:30 lexus 阅读(281) 评论(0) 推荐(0)

摘要: Web工程师的工具箱 | 酷壳 - CoolShell.cnWeb工程师的工具箱2012年12月19日 陈皓 发表评论 阅读评论 13,771 人阅读 本文出自Ivan Zuzak的《The Web engineer’s online toolbox》,作者给了一个各种可以用来进行开发、测试、调试以及文档编排的在线工具集。(注:我发现CSDN上已经有了这篇文章《Web工程师必备的18款工具... 阅读全文
posted @ 2013-01-14 11:13 lexus 阅读(224) 评论(0) 推荐(0)

摘要: 调试利器:用GDB查看core dump (zz) - 蓝ka的日志 - 网易博客调试利器:用GDB查看core dump (zz) 2008-01-17 09:30:20|分类: 学习 |标签: |字号大中小订阅1. 前言:有的程序可以通过编译, 但在运行时会出现Segment fault(段错误). 这通常都是指针错误引起的.但这不像编译错误一样会提示到文件->行, 而是没有任何信息, 使得... 阅读全文
posted @ 2013-01-14 10:47 lexus 阅读(269) 评论(0) 推荐(0)

摘要: GDB中应该知道的几个调试方法 | 酷壳 - CoolShell.cnGDB中应该知道的几个调试方法2011年2月10日 陈皓 发表评论 阅读评论 13,582 人阅读 七、八年前写过一篇《用GDB调试程序》,于是,从那以后,很多朋友在MSN上以及给我发邮件询问我关于GDB的问题,一直到今天,还有人在问GDB的相关问题。这么多年来,有一些问题是大家反复在问的,一方面,我觉得我以前的文章可能... 阅读全文
posted @ 2013-01-14 10:46 lexus 阅读(288) 评论(0) 推荐(0)

摘要: 磊 阅读全文
posted @ 2013-01-14 01:51 lexus 阅读(208) 评论(0) 推荐(0)

摘要: KNN算法的Python实现 http://my.oschina.net/fengcunhan/blog/101281 阅读全文
posted @ 2013-01-14 01:23 lexus 阅读(254) 评论(0) 推荐(0)

摘要: 使用搜索技术实现 URL 智能匹配 http://my.oschina.net/leejun2005/blog/101813 阅读全文
posted @ 2013-01-14 01:22 lexus 阅读(311) 评论(0) 推荐(0)

摘要: Java socket ,多客户端同时与服务端不停的交换数据 http://my.oschina.net/u/169390/blog/101903 阅读全文
posted @ 2013-01-14 01:21 lexus 阅读(295) 评论(0) 推荐(0)

摘要: lucene 的评分机制 http://my.oschina.net/pingjiangyetan/blog/101910 阅读全文
posted @ 2013-01-14 01:20 lexus 阅读(221) 评论(0) 推荐(0)

摘要: Rudiments 0.40 发布,C++ 常用工具包 - ChaunceyHao - 博客园Rudiments 0.40 发布,C++ 常用工具包Rudiments 是一个 C++ 类库,提供一些用来编写守护进程、客户端和服务器端的基础类,还包括正则表达式、信号量和信号的处理。Rudiments 0.40 主要是 bug 修复,包括:hostentry::getAddressString() h... 阅读全文
posted @ 2013-01-14 00:57 lexus 阅读(223) 评论(0) 推荐(0)

摘要: Socket编程Http下载的简单实现 - Mr.DejaVu - 博客园<C/C++> Socket编程Http下载的简单实现下载原理: 网上介绍很多,就是按照Http协议,使用Socket连接并发送请求头给Http服务器,若服务器正确响应,返回请求文件数据,接收并写文件保存.至于Http协议的请求头及响应头的格式,这里不再赘述,请Google之.实现: 为此,我封装了一个HttpDownlo... 阅读全文
posted @ 2013-01-14 00:55 lexus 阅读(539) 评论(0) 推荐(0)

摘要: string::compare - C++ Reference123456789101112131415161718192021222324// comparing apples with apples #include <iostream> #include <string> using namespace std; int main () { string str1 ("green ap... 阅读全文
posted @ 2013-01-14 00:44 lexus 阅读(334) 评论(0) 推荐(0)

摘要: C++ String: How to assign or compare strings?Thread: C++ String: How to assign or compare strings?Thread ToolsShow Printable VersionEmail this Page… Subscribe to this Thread… DisplayLinear Mode Swit... 阅读全文
posted @ 2013-01-14 00:41 lexus 阅读(369) 评论(0) 推荐(0)

摘要: Ubuntu: Sending command line mailUbuntu: Sending command line mailquietearth [General News 09.25.06]TweetShare on Google+I needed to send email from the command line, specifically for cron jobs, and t... 阅读全文
posted @ 2013-01-14 00:19 lexus 阅读(332) 评论(0) 推荐(0)

上一页 1 ··· 221 222 223 224 225 226 227 228 229 ··· 630 下一页