How I Set Up OpenMP for Mac

2017-01-09
阅读 3 分钟
5.1k
Basic Information Mac Pro: OS X Yosemite Version 10.10.5 Clang: Apple LLVM version 7.0.2 (clang-700.1.81) HomeBrew Already installed X-Code and NetBeans Update Your Compiler The original compiler gcc/g++ probably does not support OpenMP. Most likely, you will receive an error like the following. ...

Install netCDF under mac os

2016-11-15
阅读 1 分钟
4.4k
I'm using the cpp interfaces. It requires you first install the basic netCDF C class and then install the interface for cpp, because the cpp interface is based on the classic model.

How did I install Youcompleteme

2016-09-26
阅读 4 分钟
4.3k
I always want imporve my skills on VIM. Thus recently I spent two days on setting up a VIM IDE for C/C++ proprogramming. Below are some useful steps for YCM.

利用Githug学习Github / Githug Challenge Log

2016-07-09
阅读 8 分钟
3k
Githug是一个入门和辅助学习Github的代码游戏,至今已有54个关卡。通关之后,我对于Github神器有了更多的体会,它值得我们进一步研究。

PEP 8 摘录

2016-05-25
阅读 2 分钟
2.3k
PEP 8 是python代码规范说明,里面规定了一些推荐的python代码的格式与用法。笔者将在本文中做一些总结,不是为了纯粹的翻译PEP 8,而是根据个人习惯与喜好进行的一个整理。如有谬误,欢迎指出。

Python下正则表达式学习笔记

2016-05-14
阅读 3 分钟
2.9k
用途 正则表达式可以 测试字符串内的模式 替换文本 基于模式匹配从字符串中提取子字符串 RegEx语法 正则表达式(Regular Expression, RegEx)通过单个字符串来匹配一系列符合此语法规则的目标字符串。 元字符以及其在RegEx中的行为说明列表: 元字符 行为 \ ^ 匹配输入字符串开始的位置。如果设置了 RegExp 对象的 Multili...

Shortcut Collection for Eclipse Java Mars

2016-05-13
阅读 1 分钟
1.8k
Abstract This is a shortcut collection for Eclipse Java Mars. More information: Mars.2 Release 4.5.2 PyDev for Eclipse installed Node eclipse git add-on installed Shortcut List Function Shortcut add common block Ctrl + 4 push and commit git Ctrl + # content assist Alt + / debug F11 delete line Ct...

【失败】windows10中利用MingGW编译64 bit GVIM with python27/python35

2016-04-27
阅读 3 分钟
3.8k
近期发现VIM是一个很棒的编辑器,简洁高效。虽然说上手速度较慢,但是它的种种特性依旧吸引了我。我打算试一试。接下来不幸发生了,我的电脑中已经安装的环境有:

在新浪云上部署Django应用程序

2016-04-21
阅读 2 分钟
5.7k
近日,笔者利用空闲时间写了一个简单的在线预约系统,使用的工具包括Python 3.5.1 和 Django 1.9.5 。早就有听说Django响亮的口号,“The web framework for perfectionists with deadlines”。这次自己亲自尝试了过后,发现果然名不虚传,清晰简洁的支持文档,方便的API接口,都无一例外的吸引了我。