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

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++ 的Lambda表达式 C++ 11 标准发布,各大编译器都开始支持里面的各种新特性,其中一项比较有意思的就是lambda表达式。 语法规则 C++ 11 Lam

在项目开发过程中,时不时会碰上需要使用一些工具来做一些自动操作或者附加功能。特别是有一些外部组件只会提供Web工具,或者如果产品会发布在We

偶尔写写ACM水题还是挺好玩的。(好吧其实是老婆求助我才看滴) 题目链接:http://acm.hdu.edu.cn/showproblem.

详情及变更请参照: 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/C++在这方面没有一个非常权威的解决方案。 按照我自己风格还是喜欢

回顾一下2013年学习和看到的技术、思路、方案总结: Native Code 型语言 C/C++ 《ptmalloc,tcmalloc和jemalloc内存分配策略研究》 – L

C++11标准里有动态模板参数已经是众所周知的事儿了。但是当时还有个主流编译器还不支持。 但是现在,主要的编译器。VC(Windows),GC

前几天我们项目的日志系统出现了一点问题,但是一直没有时间去深究。 昨天在同事的帮助下,无意中猜了一种可能性,结果还真被我猜中了,于是今天就特别

用过std和boost的function对象和bind函数的童鞋们都知道这玩意用起来腰不酸了,腿不疼了,心情也舒畅了。先上一个简单得示例: std::string

项目里面引入了Lua,就特别学习了一下。 其实对于理解Javascipt的人来说,Lua也很容易理解,因为他们太多的地方相像了。 初步看来,Lu

接上一篇 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内成员函数指针实现的研究(一) 接下来是多重继承,用到的测试代码如下所示: #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() {

今天看到一个小例子,发现了一个小trick。见代码: #include <cstdio> #include <cstdlib> class base_1 { public: int a; }; class base_2 { public: int b; }; class base_3: public base_1, public base_2 { public: int c; }; int main(int argc, char* argv[]) { printf("&base_1::a = %p\n", &base_1::a); printf("&base_2::b = %p\n", &base_2::b); printf("&base_3::a