- 浏览: 159777 次
- 性别:
- 来自: 北京
最新评论
-
Sasoritattoo:
GFS.fs.remove(name)新版本不支持这个接口了, ...
Python 分布式文件系统 Mongodb GridFS -
itdazhu:
嘿嘿。柳哥想不到这么细腻
我目前的创业心得 -
fx999:
听起来真的不错,尤其是文档化方面比ROR好多了,才发布就有两本 ...
构建于Rails之上的Hobo 1.0 -
huaywang11:
想创业没有好的项目。。。。
我目前的创业心得 -
mimicom:
没看懂........
Python 分布式文件系统 Mongodb GridFS
文章列表
优酷移动API开博啦
- 博客分类:
- 优酷 土豆
博客地址:http://blog.api.youku.com/wordpress/
希望大家能够喜欢 :)
String
print(table.concat({"a","b","c"},","))
a,b,c
function string:split(sep)
local sep,fields = sep or "," , {}
local pattern = string.format("([^%s]+)",sep)
self:gsub(pattern,function(c)
fields[#fields+1] = c
end ...
我现在的创业感觉就是就如汪峰的存在一样,心如刀割,不知所措,或许我该展翅高飞保持愤怒,或许找个理由随波逐流,我的青春应该是什么样,或许希望就在不远处,或许就在眼前,可能时间会证明一切,但我想说,移动互 ...
大家好,下面我和大家分享一下非诚勿扰tornado的实现方式。
非诚勿扰APK地址: http://as.baidu.com/a/item?docid=475931&f=web_alad_1
概念介绍:
Comet:基于HTTP长连接的“服务器推”技术
基于Comet的技术主要分为流(streaming)方式和长轮询(long-polling)方式。
首先看Comet这个单词,很多地方都会说到,它是“彗星”的意思,顾名思义,彗星有个长长的尾巴,以此来说明客户端发起的请求是长连的。即用户发起请求后就挂起,等待服务器返回数据,在此期间不会断开连接。流方式和长轮询方式的区 ...
Amazon Elastic Compute Cloud
(Amazon EC2)
Amazon EC2 presents a true
virtual computing environment, allowing you to use web service
interfaces to launch instances with a variety of operating systems, load
them with your custom application environment, manage your network’s
acces ...
不说别的见源码
#coding=utf-8
import sys, os
import bisect
import string
class Entity(object):
"""data entity"""
__slots__ = ("key", "value",)
def __init__(self, key, value):
self.key = key
self.value = value ...
最近javaeye的python板块实在是太不活跃了,发一个有意思的开源程序,给大家玩玩,这个程序代码是后缀树,一般用于autoComplete,还不知到的同学赶紧来看看吧 :)
开源地址:https://github.com/edisonlz/suffixTree_ch
o SuffixTree.SuffixTree -- The suffix tree structure. This is a
thin wrapper around strmat's stree data structure. This isn't a
complete wrapper yet; I ...
nginx 模块开发,咱们先从模块分析入手,nginx的模块支持hook(钩子功能),我们可以在以下几个地方添加钩子:
Just before the server reads the config file读取配置文件时
For every configuration directive for the location and server for which it appears;读取到server或是location 配置的时候
When Nginx initializes the main configuration初始化主配置的时候
When Ngin ...
首先,要感谢的亲爱的老婆,怀胎10月,经历了人生中最痛苦的时刻,终于把孩子给制造出来了,我作为程序员,你作为测试员,经历了一场惊天动地的大事件,说起来,还要从准备怀孕开始说起。
2011/10月我们打算准备要 ...
收录ios开源项目
扫描wifi信息:
http://code.google.com/p/uwecaugmentedrealityproject/
http://code.google.com/p/iphone-wireless/
条形码扫描:
http://zbar.sourceforge.net/iphone/sdkdoc/install.html
tcp/ip的通讯协议:
http://code.google.com/p/cocoaasyncsocket/
voip/sip:
http://code.google.com/p/siphon/
http://code.g ...
HTML5 Show Time:
最近对于CSS3产生浓烈了兴趣,我本身不做web前端开发,出于兴趣,学习HTML5和CSS方面的知识,于是动手做了Path2like ,Weather ,Picture Share 等等小项目,同时把托管在google project的项目移到了github上, 有兴趣的同学可以看一下,希望和大家多多交流 https://github.com/edisonlz
以下是程序截图:
简单天气应用机锋下载:http://apk.gfan.com/Product/App223770.html
Mobile Web
- 博客分类:
- mobile web
The viewport metatag (Mobile web part 1)
使用方式:
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
引入问题:
好了,你安定下来,学习如何编写一个为移动设备使用您的桌面网站建设知识网站
最近公司有个在线聊天的需求,最新看了一下xmpp
Server 使用的事OpenFire 数据库使用的事Mysql
功能到时齐全,但是,跟自有项目的整合就成了问题,有一些需求实现不了,下面是个实验的例子,仅供参考 :)
#coding=utf-8
""" notgen.py """
import sys, os
import xmpp
import time
import string
from threading import Thread
ROOM = ''
LOGGING = 1
#utilit ...
基于26个字母的tiny_uri , 类似sina t.cn 功能
#coding=utf-8
import os, sys
import string
import random
import re
Dict = string.ascii_lowercase
MAXLEN = len(Dict)
def tiny_uri(uri="t.cn/zzzz", domain="t.cn"):
"""tiny uri base on ascii_lowercase carry""& ...