请注意,逸凡并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome浏览器

Jenkins

12-09 764 views

阅读全文 0

Python 乱码解决

12-06 922 views

''.decode(sys.getfilesystemencoding())
阅读全文 0

TortoiseSVN常见的16个使用问题与解决方法

12-05 1,078 views

TortoiseSVN是一款常用的开源客户端,不少从事编程开发工作的网友都在使用。今天,小编就为大家整理一下TortoiseSVN常见的16个使用问题,方便您在日常使用的...
阅读全文 0

python hideconsole

12-04 1,183 views

def hideConcole(): import ctypes kernel32 = ctypes.WinDLL('kernel32') user32 = ctypes.WinDLL('user32') SW_HIDE = 0 hWnd = k...
阅读全文 0

pysqlite or sqlite3 must be installed

12-04 890 views

peewee pysqlite or sqlite3 must be installed download and install sqlite3 sqlite3-source tar xf sqlite-autoconf-3210000.tar.gz cd sqlite-autoconf-...
阅读全文 0

peewee orm

11-24 785 views

http://docs.peewee-orm.com/en/latest/peewee/quickstart.html https://github.com/coleifer/peewee https://github.com/coleifer/peewee/blob/master/docs...
阅读全文 0

python orm sqlalchemy peewee

11-24 892 views

http://xiaorui.cc/2015/10/09/%E8%81%8A%E8%81%8Apython%E7%9A%84%E8%BD%BB%E9%87%8F%E7%BA%A7orm-peewee%E5%8F%8A%E5%AF%B9%E6%AF%94sqlalchemy/
阅读全文 0

tornado static file handler

11-23 842 views

# _*_ coding:UTF-8 import tornado.ioloop import tornado.web from protocol import typhoon_pb2 import utils import os import re routeMapping = { '...
阅读全文 0

python 检测IPv4是否为局域网IP

11-20 806 views

def is_internal_ip(ip): ip = ip_into_int(ip) net_a = ip_into_int('10.255.255.255') >> 24 net_b = ip_into_int('172.31.255.255') &...
阅读全文 0

端口检测方法

11-16 868 views

windows 检测tcp端口 telnet 172.16.4.56 8090 检测udp端口 https://docs.microsoft.com/en-us/sysinternals/downloads/psping Linux 检测tcp端口 nc -z -w ...
阅读全文 0