`
文章列表
    <?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

  :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

  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

websocket: http://dev.w3.org/html5/websockets/ 

V8引擎

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

jquery websocket : http://code.google.com/p/jquery-websocket/ 

emacs syntax highlight

emacs syntax highlight: M-x global-font-lock-mode or (global-font-lock-mode t) in .emacs 

python __call__

python __call__: http://www.cnblogs.com/lovemo1314/archive/2011/04/29/2032871.html 

python @property

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 

Linux进程调度

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 ...
Global site tag (gtag.js) - Google Analytics