When i run svn up in the folder, i got these error:svn: Error converting entry in directory 'XXXXX' to UTF-8svn: Can't convert string from native enco...
分类:
其他好文 时间:
2014-07-19 21:20:46
阅读次数:
247
创建testimg.pyimport sysfrom PIL import Image img = Image.open(sys.argv[1]).convert('YCbCr') w, h = img.size data = img.getdata() cnt = 0 ...
分类:
编程语言 时间:
2014-07-18 19:19:52
阅读次数:
358
bool iconv_convert(const std::string& in, std::string& out, const char* fromcode, const char* tocode)
{
char buffer[128];
auto cd = iconv_open(tocode, fromcode);
if (cd != nullptr)
{...
分类:
其他好文 时间:
2014-07-18 11:15:10
阅读次数:
188
现在的.net or构架,大家认同的各种大大小小,ef,subsonic,nhibernate,甚至小一些的petapoco这种,但用过的人我想他们考虑的是比较多。小一些的Petapoco也有几千行的代码。而有一些或是配置困难,或是脱离不了一些sql,而我一直在寻找一种更简便的方法简化自己的开发,使...
分类:
Web程序 时间:
2014-07-18 10:14:10
阅读次数:
204
方法一:Convert.ToDateTime(string)string格式有要求,必须是yyyy-MM-dd hh:mm:ss================================================方法二:Convert.ToDateTime(string, IFormat...
分类:
其他好文 时间:
2014-07-16 19:04:16
阅读次数:
160
命令结果Convert.ToBoolean(var)var转换为boolConvert.ToByte(var)var转换为byteConvert.ToChar(var)var转换为charConvert.ToDecimal(var)var转换为decimalConvert.ToDouble(var)...
分类:
其他好文 时间:
2014-07-16 18:50:19
阅读次数:
224
--获取当前日期(如:yyyymmdd) select CONVERT (nvarchar(12),GETDATE(),112)--获取当前日期(如:yyyymmdd hh:MM:ss) select GETDATE()--获取当前日期(如:yyyy-mm-dd) Select Datename(y...
分类:
其他好文 时间:
2014-07-16 18:25:28
阅读次数:
212
import sys class Stats: def __init__(self, sequence): # sequence of numbers we will process # convert all items to floats for numeri...
分类:
编程语言 时间:
2014-07-16 18:06:48
阅读次数:
257
Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.下面是百度得到的关于罗马数的解释:我的代码: 1 class Solution { 2 ...
分类:
其他好文 时间:
2014-07-16 18:00:22
阅读次数:
214
/* Convert a UTF-8 string into a UCS-2 array. */void tcstrutftoucs(const char *str, uint16_t *ary, int *np){ assert(str && ary && np); const unsigne.....
分类:
其他好文 时间:
2014-07-16 17:58:24
阅读次数:
217