LLVM+Clang+Libcxx+Libcxxabi(3.6)工具链编译(完成自举编译)
LLVM和Clang工具链的生成配置文件写得比较搓,所以略微麻烦,另外这个脚本没有经过多环境测试,不保证在其他Linux发行版里正常使用。 CHANGE
Android NDK undefined reference to ___tls_get_addr 错误
本来看到Android的ndk都开始用gcc4.8和gcc4.9了,而且gcc4.8.1开始支持全部的c++11的特性,我就很happy地用
gitlab腾讯企业邮箱配置
介于配置gitlab邮箱测试起来补交麻烦而且看日志还不明朗,这里记录一下成功配置好的企业邮箱方案。 模板如下: # mail config gitlab_rails['smtp_enable'] = true gitlab_rails['smtp_address'] = "smtp.exmail.qq.com" gitlab_rails['smtp_port'] = 465 gitlab_rails['smtp_user_name'] = &q
Gitlab环境搭建小计
最近给公司搭建Gitlab作源代码管理工具 满满都是坑呐。 Gitlab 开源仓库软件包官方地址: https://about.gitlab.com/ https://about.gitlab.com/downloads/ 这里有各个Linux分支的安装包,下面的说明笔记齐全,
近期研究VPN的一些记录(OpenVPN,pptp,l2tp)
近期由于一些需要(特别是上Google),研究了下在VPS上搭建VPN服务器的方法。其中遇到一些坑,顺带记下来以备下次使用。 其实在有VPS的
LLVM + Clang + Libcxx + Libcxxabi 工具链编译
LLVM和Clang工具链的生成配置文件写得比较搓,所以略微麻烦,另外这个脚本没有经过多环境测试,不保证在其他Linux发行版里正常使用。 如
[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