- 浏览: 177528 次
- 性别:
- 来自: 南京
-
最新评论
-
chuqingq:
补充一个讨论的链接:http://www.cppblog.co ...
epoll的ET和LT两种模式对比及注意事项 -
ahat1195:
勍
勍 .
erlang性能统计 -
chuqingq:
linux不需要
解决EADDRINUSE方法之一:修改操作系统设置 -
langzhe:
对于linux 电脑需要重启吗?
解决EADDRINUSE方法之一:修改操作系统设置 -
jigloo:
erlang-mbcs http://code.google. ...
erlang中字符编码转换
文章列表
iteye闲聊api使用范例
- 博客分类:
- DevEnv
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://api.iteye.com/api/twitters/create");
curl_setopt($ch, CURLOPT_USERPWD, "username:passwd");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'body=test2');
curl_exec($ch);
cur ...
用户认证:
curl -u 用户名:密码 http://api.iteye.com/api/auth/verify
返回:
成功 {"domain": "博客子域名", "name": "用户名", "id": 用户ID}
失败 error.auth.fail
用户收藏API
id:ID
url:链接
...
[emacs]color-theme
- 博客分类:
- DevEnv
:http://www.nongnu.org/color-theme/ -> http://download.savannah.gnu.org/releases/color-theme/color-theme.el.gz
(require 'color-theme)
(color-theme-classic)
emacs安装php-mode
- 博客分类:
- DevEnv
php-mode.sf.net
(add-to-list 'load-path "../chuqq_elisp")
(load "php-mode")
(defun python-run()
(interactive)
(shell-command
(concat "\"D:/Program Files/Python27/python.exe\" \""
(read-file-name "Input file name:")
&qu ...
WebSocket
- 博客分类:
- client/web
websocket: http://dev.w3.org/html5/websockets/
V8引擎
- 博客分类:
- client/web
V8引擎:http://wenku.baidu.com/view/45086b07cc175527072208fc.html
http://download.oracle.com/javase/cmn/spec_index.html
中文:http://icyfenix.iteye.com/blog/1256329
jquery websocket
- 博客分类:
- client/web
jquery websocket : http://code.google.com/p/jquery-websocket/
emacs syntax highlight
- 博客分类:
- DevEnv
emacs syntax highlight: M-x global-font-lock-mode or (global-font-lock-mode t) in .emacs
python __call__
- 博客分类:
- lang/python
python __call__: http://www.cnblogs.com/lovemo1314/archive/2011/04/29/2032871.html
python @property
- 博客分类:
- lang/python
python @property: http://hi.baidu.com/_yuan0518/blog/item/25187cb4344402d236d3ca8b.html
Python *args and **kwargs: http://www.cnblogs.com/fengmk2/archive/2008/04/21/1163766.html
1、进程的两种分类:
IO_BOUND + CPU_BOUND
交互式 + 批处理 + 实时
2、调度策略和调度算法:
调度策略:SCHED_NORMAL + SCHED_FIFO + SCHED_RR + SCHED_BATCH + SCHED_IDLE
调度算法:
2.4:Active + Expire
2.6:非实时CFS + 实时优先级队列
CFS:SCHED_NORMAL + SCHED_BATCH + SCHED_IDLE
RT:SCHED_FIFO + SCHED_RR
3、优先级:[0, 139]
实时:[0, 99]
nice:[-20, ...
搜索的顺序是:
当前路径 (以及从当前目录指定的sys.path),
然后是PYTHONPATH,
然后是python的安装设置相关的默认路径。
import sys
sys.path.append('SubDir')
mod = __import__('ModuleName')
mod.Func()
An Example
Thrift allows you to define data types and service interfaces in a simple definition file. Taking that file as input, the compiler generates code to be used to easily build RPC clients and servers that communicate seamlessly across programming languages.
For instance, say you would lik ...