Skip to content

Instantly share code, notes, and snippets.

@axgle
axgle / frame
Created January 31, 2010 08:43
I’m the prize
树敌则有朋
@axgle
axgle / baofu
Created January 20, 2010 12:45
抱负:远大的志向
报复:打击批评自己或损害自己利益的人:打击~ㄧ受到~ㄧ~情绪。
包袱:①包衣服等东西的布。②用布包起来的包儿。③比喻某种负担:思想~ㄧ不能把赡养父母看成是~。④指相声、快书等曲艺中的笑料。把笑料说出来叫抖包袱。
暴富:突然发财
http://www.meinvjie.com/space-613-do-thread-id-1864.html
等着别人来扔你
每天都坚持锻炼!早上能慢跑上500M+虎卧撑25下..
或举哑铃1只手10KG的30下..有空就去做一下引体向上!
不出一个月..你一定比其他人强大而有力!然后看自己情况适当地做一下其他的锻炼..或增加运动量就好拉~
切记开始时不要太用力..免得太累或伤到自己而出现反效果
http://zhidao.baidu.com/question/22618980.html
---
作为其中一个结果,嗓音变大!~~
---
激情!!!
<?php
declare (ticks=1);
class MTDaemon2{
var $max_threads = 10;
var $idlesleeptime = 3;
var $run=true;
var $slot=0;
function __construct($threads = null, $idlesleeptime = null){
class MTDaemon{
var $threads = 4;
var $idlesleeptime = 3;
var $run=true;
var $slot=0;
function __construct($threads = null, $idlesleeptime = null){
if ($threads) {
$this->threads=$threads;
}
@axgle
axgle / fbr.rb
Created November 20, 2009 00:42 — forked from tmm1/fbr.rb
# Poor Man's Fiber (API compatible Thread based Fiber implementation for Ruby 1.8)
# (c) 2008 Aman Gupta (tmm1)
unless defined? Fiber
require 'thread'
class FiberError < StandardError; end
class Fiber
def initialize
package main
import ("strings";)
func main(){
v:=strings.Split("a b c"," ",0);
print(strings.Join(v,":"));
}
@axgle
axgle / go4.go
Created November 18, 2009 04:37 — forked from Arachnid/go4.go
package main
import "fmt"
type state struct {
board [7][6]int;
heights [7]int;
}
type move struct {