04 2017 档案
摘要:import SimpleHTTPServer import SocketServer PORT = 8000 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd...
阅读全文
摘要:http://git.oschina.net/ https://coding.net/
阅读全文
摘要:http://www.verypdf.com/pdf2tif/pdf-to-image/help.htm http://www.softinterface.com/DL/DL_Alternate_Download_Site2.htm http://www.morethantechnical.com/
阅读全文
摘要: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, ...
阅读全文
摘要:BOOL CheckServerStatus::isConnectServer(CString serverName, int serverPort) { CString strURL; strURL.Format("http://%s:%d", serverName, serverPort); BOOL hSession = GetSession(strURL); return hSe...
阅读全文
摘要: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...
阅读全文
摘要:SetClassLong(this->m_hWnd, GCL_STYLE, GetClassLong(this->m_hWnd, GCL_STYLE) | CS_DROPSHADOW);
阅读全文