摘要: chmod -R 777 /usr/local/
GMac:~ XXXX$ brew install cmake
阅读全文
摘要: pmset -g
sudo pmset -a hibernatemode 3
阅读全文
摘要: Go to System Preferences -> Keyboard -> Keyboard tab -> Modifier keys
Swap the Control and Cmd keys
阅读全文
摘要: 目前知名的mq :
zeromq -- c++ 实现
ActiveMQ
JMS -- java的消息服务,j2ee 各家实现不同
MS Queue --
RabbitMQ
nanomsg
lightq
阅读全文
摘要: Sublime Text 2
安装插件:
https://gitcafe.com/ghosTM55/sublime-config
阅读全文
1.vc 编译
头文件
#include <omp.h
omp_set_num_threads(threadNumber);
#pragma omp parallel default(shared) private(i,riskId)
{
#pragma omp for
}
}
GCC配置
1. 编译
-fopenmp
设定线程数量 export OMP_NUM_THREADS=6
参考
通过 GCC 学习 OpenMP 框架
http://www.ibm.com/developerworks/cn/aix/library/au-aix-openmp-framework/
摘要: SQLnet.ora
DIAG_ADR_ENABLED=OFF
DIAG_SIGHANDLER_ENABLED=FALSE
DIAG_DDE_ENABLED=FALSE
阅读全文