一、配置mysql服务器ip列表如下,可自定义:S1 1.1.1.1 3306 user passwd11 dbname_s1S2 2.2.2.2 3306 user passwd22 dbname_s2S3 3.3.3.3 3306 userpasswd33 dbname_s3二、#li...
分类:
数据库 时间:
2015-04-01 17:34:39
阅读次数:
172
Tuesday, March 31, 2015之前用rvest帮人写了一个定期抓取amazon价格库存,并与之前价格比较的小程序,算是近期写过的第一个完整的程序了。里面涉及了一些报错的处理。这里主要参考了stackoverflow上的以下问答:How to skip an error in a lo...
分类:
编程语言 时间:
2015-04-01 00:05:36
阅读次数:
271
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac",
return true.
When s3 = "aadbbbaccc",
ret...
分类:
其他好文 时间:
2015-03-31 16:08:55
阅读次数:
106
去年,在我们的博客里,有为大家介绍过游戏亚马逊开始进攻游戏市场的故事。最近,Xsolla刚刚加入亚马逊伙伴合作计划,开始为广大游戏开发商和玩家提供亚马逊支付方式。今天,小编将为大家介绍这种支付方式,探讨Xsolla和Amazon Payment合作的未来。...
分类:
其他好文 时间:
2015-03-31 09:01:53
阅读次数:
213
到github网站下载github for windows ,经过几次尝试,都没有安装成功,后来找到一种方法,可以在IE中输入http://github-windows.s3.amazonaws.com/GitHub.application , 输入完在后回车,此时会下载,自动安装。安装完成后,点击...
分类:
其他好文 时间:
2015-03-30 20:24:11
阅读次数:
120
Interleaving String问题:Givens1,s2,s3, find whethers3is formed by the interleaving ofs1ands2.思路: dfs肯定能解决 但是肯定会超时 动态规划方程dp[i][j] == true only dp[i-1][.....
分类:
其他好文 时间:
2015-03-27 23:47:06
阅读次数:
232
【题目】
Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.
For example,
Given:
s1 = "aabcc",
s2 = "dbbca",
When s3 = "aadbbcbcac", return true.
When s3 = "aadbbb...
分类:
其他好文 时间:
2015-03-21 20:03:14
阅读次数:
124
Notes:1. Even s3 is empty string, if s1 and s2 are emtpy, then it should be true.2. Do not mess up the size of label. 1 class Solution { 2 public: 3 ....
分类:
其他好文 时间:
2015-03-20 06:54:54
阅读次数:
115
一、问题将图片在windows下用图片查看器修改后,上传到s3中,调用getimagesize获取图片信息总是返回false,其它图片正常;代码如下:$fileName = 's3://sdk1/20150317/174290_1_1428371.JPG'; $size = getimagesize...
分类:
其他好文 时间:
2015-03-19 18:12:54
阅读次数:
1308
原文:从上百幅架构图中学大型网站建设经验(上)目录(?)[-]WikiPedia 技术架构Facebook 架构Yahoo Mail 架构twitter技术架构Google App Engine技术架构Amazon技术架构优酷网的技术架构后记引言 近段时间以来,通过接触有关海量数据处理和搜索引擎的诸...
分类:
Web程序 时间:
2015-03-18 06:29:18
阅读次数:
176