04 2017 档案

摘要:import SimpleHTTPServer import SocketServer PORT = 8000 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd... 阅读全文
posted @ 2017-04-29 15:04 一样菜 阅读(1143) 评论(0) 推荐(0) 编辑
摘要:http://git.oschina.net/ https://coding.net/ 阅读全文
posted @ 2017-04-21 19:01 一样菜 阅读(120) 评论(0) 推荐(0) 编辑
摘要:http://www.verypdf.com/pdf2tif/pdf-to-image/help.htm http://www.softinterface.com/DL/DL_Alternate_Download_Site2.htm http://www.morethantechnical.com/ 阅读全文
posted @ 2017-04-21 00:30 一样菜 阅读(461) 评论(0) 推荐(0) 编辑
摘要:char* WcharToChar(const wchar_t* wp) { char *m_char; int len = WideCharToMultiByte(CP_ACP, 0, wp, wcslen(wp), NULL, 0, NULL, NULL); m_char = new char[len + 1]; WideCharToMultiByte(CP_ACP, 0, wp, ... 阅读全文
posted @ 2017-04-10 10:33 一样菜 阅读(745) 评论(0) 推荐(0) 编辑
摘要:BOOL CheckServerStatus::isConnectServer(CString serverName, int serverPort) { CString strURL; strURL.Format("http://%s:%d", serverName, serverPort); BOOL hSession = GetSession(strURL); return hSe... 阅读全文
posted @ 2017-04-06 16:54 一样菜 阅读(1695) 评论(0) 推荐(0) 编辑
摘要:transition: height(quart-out,1.0s,quart-in); transform:rotate(50deg); http://www.terrainformatica.com/category/sciter/ css 文档 css透明度 opacity:0.3; 颜色渐变 background: -ms-linear-gr... 阅读全文
posted @ 2017-04-06 13:40 一样菜 阅读(208) 评论(0) 推荐(0) 编辑
摘要:SetClassLong(this->m_hWnd, GCL_STYLE, GetClassLong(this->m_hWnd, GCL_STYLE) | CS_DROPSHADOW); 阅读全文
posted @ 2017-04-05 16:20 一样菜 阅读(1079) 评论(0) 推荐(0) 编辑