首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴静夜思的代码贴全部
worker_processes  16;

worker_cpu_affinity 0000000000000001 0000000000000010  0000000000000100 0000000000001000 0000000000010000 0000000000100000 0000000001000000 0000000010000000 0000000100000000 0000001000000000 0000010000000000 0000100000000000 0001000000000000 0010000000000000 0100000000000000 1000000000000000;
worker_rlimit_nofile 1048576;

events {
        worker_connections 1048576;
}

http {
        # something and so on
}
阅读全部 | 2013年7月18日 10:16
<?php

class ObjectArray{
private $obj;

public function __construct($array)
{
$this->obj = $array;
return $this;
}

public function add($arr)
......................
阅读全部 | 2013年1月18日 21:44
#coding: utf-8

require "find"

Find.find(File.dirname(__FILE__)) do |f|
if [".js", ".py"].any?{|i| f.end_with? i} and not f.include? __FILE__
str = File.read(f)
strdup = str.dup
while str =~ /(\n[\s\t]*)    /
str.gsub!(/(\n[\s\t]*)    /, "\\1\t")
end
File.open(f, "w").write(str)
......................
阅读全部 | 2013年1月18日 13:41
<?php

class ObjectArray{
    private $obj;

    public function __construct($array)
    {
        $this->obj = $array;
        return $this;
    }

    public function count($item = null){
......................
阅读全部 | 2013年1月15日 23:46
<?php

class ObjectArray{
    private $obj;

    public function __construct($array)
    {
        $this->obj = $array;
        return $this;
    }

    public function count($item = null){
......................
阅读全部 | 2013年1月15日 23:24
<?php

class Arr{
    private $obj;

    public function __construct($array)
    {
        $this->obj = $array;
        return $this;
    }

    public function each($func)
......................
阅读全部 | 2013年1月15日 16:47
<?

function tail($file,$n,$base=5){
    assert($n>0);
    $pos = $n+1;
    $lines = array();
    $fp = fopen($file,"r");
    while(count($lines)<=$n){
        try{
            fseek($fp,-$pos,SEEK_END);
        }catch(Exception $e){
            fseek(0);
......................
阅读全部 | 2012年12月13日 18:21
package main

import (
    "fmt"
    "reflect"
)

func main(){
    var x = "Hello"
    fmt.Println(reflect.TypeOf(x))
}
阅读全部 | 2012年12月8日 23:11
#coding: utf-8
require "./config/environment"

conn = Mysql2::Client.new(:host=>'localhost', :username=>'root', :password=>'111111', :database=>'sns')
conn2 = Mysql2::Client.new(:host=>'localhost', :username=>'root', :password=>'111111', :database=>'blog')

namespace :blog do
  desc "从旧有的博客迁移进来数据"
  task :convert do
    #导入用户数据
    members = conn.query("select * from uchome_member order by uid asc")
    members.each do |member|
......................
阅读全部 | 2012年11月16日 03:05
class Object
  def in?(*args)
    if args.length > 1
      args.include? self
    else
      another_object = args.first
      if another_object.respond_to? :include?
        another_object.include? self
      else
        raise ArgumentError.new("The single parameter passed to #in? must respond to #include?")
      end
    end
......................
阅读全部 | 2012年11月14日 01:48
上一页 1 2 3 4 5 6 下一页
静夜思