该文被密码保护。 阅读全文
posted @ 2017-06-28 17:55 我的大金金 阅读(1) 评论(0) 推荐(0) 编辑
摘要: http://www.nginx.cn/install 阅读全文
posted @ 2017-06-08 09:36 我的大金金 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Visual Studio 2017是微软正式宣布了下一代集成开发环境(IDE),微软最新的集成开发环境,将重心放到了移动跨平台开发上,里面包含了一个iOS模拟器(在Mac上做开发的一个独享功能)。新增包括智能预选(smart preselection)、过滤、以及XAML支持。VS 2017将迎来 阅读全文
posted @ 2017-06-05 00:01 我的大金金 阅读(3051) 评论(0) 推荐(0) 编辑
摘要: ``` #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 001 @author: jianpan @file: MyQThread.py @time: 2017/6/3 11:54 """ from PyQt4.QtCore import * import Tkinter as tk import multiprocessin... 阅读全文
posted @ 2017-06-04 17:45 我的大金金 阅读(246) 评论(0) 推荐(0) 编辑
摘要: ``` #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 001 @author: jianpan @file: test1.py @time: 2017/6/4 16:14 """ # coding: utf-8 import multiprocessing import time import os import psu... 阅读全文
posted @ 2017-06-04 17:35 我的大金金 阅读(185) 评论(0) 推荐(0) 编辑
摘要: ``` #!/usr/bin/env python # -*- coding: utf-8 -*- """ @version: 001 @author: jianpan @file: MySocketServer.py @time: 2017/6/3 11:00 """ # -*- coding:utf-8 -*- from SocketServer import ThreadingTCPSe... 阅读全文
posted @ 2017-06-03 11:47 我的大金金 阅读(258) 评论(0) 推荐(0) 编辑
摘要: ``` # coding:utf-8 import socket import sys import os reload(sys) sys.setdefaultencoding("utf-8") # set host and port HOST, PORT = '10.72.80.141', 8088 class SocketFromServer(): def __init__(s... 阅读全文
posted @ 2017-06-02 19:19 我的大金金 阅读(132) 评论(0) 推荐(0) 编辑
摘要: ``` # coding=utf-8 from PyQt4.QtCore import * import Tkinter as tk import os import time class MyQThread(QThread): def __init__(self, parent=None): super(MyQThread, self).__init__(parent)... 阅读全文
posted @ 2017-06-02 19:18 我的大金金 阅读(153) 评论(0) 推荐(0) 编辑
摘要: ``` # coding=utf-8 from PyQt4.QtGui import * from PyQt4.QtCore import * from MyQThread import * import sys from SocketFromServer import SocketFromServer import img class MyQMainWindowDemo(QMainWindow... 阅读全文
posted @ 2017-06-02 19:18 我的大金金 阅读(175) 评论(0) 推荐(0) 编辑
摘要: http://www.nginx.cn/install 阅读全文
posted @ 2017-06-01 23:19 我的大金金 阅读(108) 评论(0) 推荐(0) 编辑