Green's recent timeline updates
@Green test
Aug 16, 2014
论文,给跪了。
Apr 26, 2014
Green's repos on GitHub
JavaScript · 22 watchers
Topics
Basic Topic/Reply web application build for high performance
CSS · 1 watchers
GreenFaith.github.io
Go · 0 watchers
algorithms
algorithms and data structure
Racket · 0 watchers
oh-my-lisp
如何写一个解释器?
0 watchers
v2ex_scrapy
基于 V2EX API 的异步爬虫, 为社区搜索提供索引数据
Green

Green

V2EX member #56214, joined on 2014-02-18 17:29:34 +08:00
Green's recent replies
Aug 16, 2014
Replied to a topic by picasso250 PHP 100 行的 PHP shell
哈哈 之前也写了一个
<?php
while(True):
fputs(STDOUT, "php>");
$line = trim(fgets(STDIN));
eval('echo '.$line.';');
fputs(STDOUT, "\n");
endwhile;
?>
Aug 16, 2014
Replied to a topic by djyde 程序员 整理了 V2EX 的 API,分享给大家
@djyde
竟然花了一小时
其实早有了,善用搜索
Aug 15, 2014
Replied to a topic by jsonline 程序员 二线城市招聘的感想
#lang racket
(define (insert-item seq item)
(cond ((null? seq) (list item))
((<= item (car seq)) (cons item seq))
(else (cons (car seq)
(insert-item (cdr seq) item)))))

(define (insert-sort seq)
(cond ((null? seq) (list))
(else
(insert-item (insert-sort (cdr seq)) (car seq)))))

(insert-sort (list 2 5 3 1 9))
Aug 11, 2014
Replied to a topic by backli PHP php 与 ROR 该如何选择?
应该向 Web 开发初学者推荐 PHP、Python 还是 Ruby ?理由是什么?
http://www.zhihu.com/question/19573703
如何界定是一个故事而不是简单的评论?
如何防止变成普遍的图片+评论?
Aug 7, 2014
Replied to a topic by zhttty 分享发现 twister:Peer-to-peer microblogging
感觉很有意思,这里有人在用?说说体验?
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5784 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms · UTC 06:52 · PVG 14:52 · LAX 23:52 · JFK 02:52
♥ Do have faith in what you're doing.