[libiniloader] Project
INI 配置读取库发布 Github地址: https://github.com/owent/libiniloader OSChina镜像: http://git.oschina.net/owent/libiniloader 项目中经常会碰到需要读取配置的情况,而用ini配置最大的优势就是简单易懂。 但是现在
记录一些在线编辑器
Markdown Markdown-plus http://mdp.tylingsoft.com/ stackedit http://stackedit.io GitHub(http://github.com/benweet/stackedit) stackedit beta http://stackedit-beta.herokuapp.com/ UML/Chart flowchart.js http://adrai.github.io/flowchart.js/ js-sequence-diagrams http://bramp.github.io/js-sequence-diagrams/ CodeUml http://www.codeuml.com/ YUml http://yuml.me draw.io (可视化编辑) http://draw.io Gliffy (可视化编辑) http://www.gliffy.com LucidChart http://www.lucidchart.com IDE CodeBox http://www.codebox.io ACE http://ace.c9.io Cloud9 http://c9.io
[WP Code Highlight.js] Project
Project Information Project Name: WP Code Highlight.js1
Github Home: https://github.com/owent/WP-Code-Highlight.js
Plugin Home: http://wordpress.org/plugins/wp-code-highlightjs/
Description: This is a plugin of Wordpress using Highlight.js2 to make codes on posts, articles or any web pages more beautiful and easier to read.
This plugin allow you to load Highlight.js from local web server or some of public CDN we collected.
To make you easier to migrate from SyntaxHilighter and Google Prettify to Highlight.js, this plugin will provide some compatible mode so that you need not to change any code on your old web pages.
再议 C++ 11 Lambda表达式
目录 C++ 的Lambda表达式 C++ 11 标准发布,各大编译器都开始支持里面的各种新特性,其中一项比较有意思的就是lambda表达式。 语法规则 C++ 11 Lam
Linux 编译安装 GCC 4.9
详情及变更请参照: Linux 编译安装 GCC 4.9 GCC4.9发布啦,本脚本在之前4.8的基础上做了稍许改进,更新 PS:4.9.0 开始支持C++1y特性 GCC 4.9 的
又碰到了这个解谜游戏,顺带记下地址
虽然以前玩过一部分,后来没耐心就停止了。但是记下来给大家瞧瞧还是挺有意思的 http://www.pythonchallenge.com http://www.notpron.com/ http://www.gamemastertips.com/cipher/cipher.htm http://riddle.arthurluk.net/index.php http://www.csie.ntu.edu.tw/~b94102/game/game.htm 最近稍微学习了下Tex,就顺带再记一下Tex的一些资源 公
简单C++单元测试框架(支持一键切到GTest或Boost.Test)
简介 众所周知,单元测试对于持续集成和变更的检测是十分重要的。 这个单元测试框架本是用于之前规划的C++协程框架使用的。 虽然已经有比较成熟的单元
std和boost的function与bind实现剖析
用过std和boost的function对象和bind函数的童鞋们都知道这玩意用起来腰不酸了,腿不疼了,心情也舒畅了。先上一个简单得示例: std::string
VC和GCC成员函数指针实现的研究(三)
接上一篇 VC和GCC内成员函数指针实现的研究(二) 虚继承 终于到最后的虚继承了。 测试代码如下: #include <ctime> #include <vector> #include <algorithm> #include <cstdio> #include <stdint.h> #include <cstddef> #include <string> class foo_a { public: virtual ~foo_a(){} virtual void info() {
VC和GCC成员函数指针实现的研究(二)
接上一篇 VC和GCC内成员函数指针实现的研究(一) 接下来是多重继承,用到的测试代码如下所示: #include <ctime> #include <vector> #include <algorithm> #include <cstdio> #include <stdint.h> #include <cstddef> #include <string> class foo_a { public: virtual ~foo_a(){} virtual void info() {