Content Explore
  • demo of hooto-chart

    Published : 2017-08-17 Categories : Other Tags : hooto-chart chart
    the benchmark of redis and lynkdis (random write)
    CPU i7-7700
    CentOS 7.3
    connections number 20, testing time in 200 seconds
    data key length 14 bytes, value length 10 bytes
    {
    "type": "line&...
  • 2013 阿里云开发者大会,参赛小结

    Published : 2013-11-24 Categories : Other Tags : 阿里云 lessCreator
    距离2013阿里云开发者大赛过了一月了,终于有空余周末总结下,给前期的工作画个句号,让后期的更多工作正式开始!
    lessCreator 是我今年6月开始写的一个在线开发工具,并参加了 2013阿里云开发者大赛,进入20强决赛,稍微遗憾的是在进9强时,以第10名的分数无缘奖项,看来我的运气被积攒到下次了 :)
    lessCreator: 一款云端开发平台,这个“云端” 有两层意思,第一:它自身属于云端...
  • 2013 北京马拉松训练, 第一阶段目标完成

    Published : 2013-09-10 Categories : Marathon Tags : 马拉松 Marathon
    经过2个月恢复锻炼,终于完成第一阶段目标.
    第一阶段: 10公里,1小时内 (完成,58分)
    第二阶段: 20公里,2小时内 (进行中,目前成绩 2小时5分)
    第三阶段: 30公里,3小时内 
    “如果你想强壮,跑步吧!如果你想健美,跑步吧!如果你想聪明,跑步吧!” 刻于古希腊埃拉多斯山岩,2500年前。
    马拉松是迷人的,一旦跑过,就难以放下。对于业余跑步者,30公里以后才是马拉松的开始:疼痛、力竭...
  • lessCreator, a New Web Based IDE

    Published : 2013-07-19 Categories : Software Tags : LessCreator Web IDE
    大家有没有用过 基于浏览器的在线IDE环境,比如:
    Cloud9 IDE 
    https://c9.io/
    Codeanywhere 
    https://codeanywhere.net/
    RStudio 
    http://www.rstudio.com/
    特性大概有:
    源码库管理,整合 github,BitBucket
    在线代码编辑器 editor
    一键部署到 Google AppEngine, Wi...
  • Pool design in Go

    Published : 2013-03-27 Categories : Tech Tags : Pool Go
    Network programming case:
    Database connection
    Network/Socket connection
    Workflow Queue
    Other ...
    To improve system efficiency in the implementation, we need to create a fixed capacity of Pool.
    Each ta...
  • Paxos 导读, 工程实现

    Published : 2012-07-14 Categories : Tech Tags : Paxos Chubby ZooKeeper OpenReplica Doozer 分布式
    任何分布式系统,都需要“锁”,用于持久化全局配置,协调分布式应用逻辑,保证所有系统高可用,它是分布式高可用系统的基石.
    Paxos 算法用于实现分布式锁, 它在这个领域至关重要:
    all working protocols for asynchronous consensus we have so far encountered have Paxos at their core. (Google ...
  • Hooto Captcha Server 1.0.4 Relased

    Published : 2012-06-07 Categories : Software Tags : Captcha Security
    What is Captcha
    CAPTCHA is an acronym for "Completely Automatic Public Turing Test to Tell Computers and Humans Apart". It is a task, that human can easily solve, but computer not.
    It is used as a cha...
  • PHP Framework MVC Benchmark - v20111201-4

    Case
    Test Simple "Hello World" page output, Simple MVC logic(Router -> Controller -> Viewer), No Database Connections, No complex logic.
    Hardware platform
    CPU: Intel Core i5 750 (2.67GHz x4)
    RAM...
  • CentOS 6.x KVM 桥接网卡设置

    Published : 2011-10-25 Categories : Software Tags : KVM Bridge CentOS
    前提,正确安装 KVM (Kernel-based Virtual Machine)
    yum install kvm kvm-qemu-img libvirt bridge-utils
    Step 1:
    cat /etc/sysconfig/network-scripts/ifcfg-eth0
    DEVICE="eth0"
    HWADDR="78:2B:CB:3C:A4:BA"
    NM_CONT...
  • PHP Framework MVC Benchmark 基准测试

    Published : 2011-07-08 Categories : Tech Tags : PHP MVC Benchmark Zend Framework CodeIgniter Yii Framework Yaf MicroMVC
    Case
    测试 MVC 中的 Router -> Controller -> Viewer, 输出 "Hello World" 简单页面,测试 MVC 在理想环境、简单逻辑、框架空载下的性能指标。
    3 项指标
    1) 在 index.php 中使用 microtime() 和 memory_get_usage() 粗略取得执行时间,内存占用情况
    2) 使用 Facebook XHProf 扩展取得详...