Python 串口加GUI编程【预告】

本周项目,冯总给介绍了一个活,需要用到串口和GUI,这两个方面我从未尝试过,准备折腾一把。

主要用 tkinterserial 两个模块

2018/7/13 posted in  python

用python分析了20万场吃鸡数据

Read more   2018/7/8 posted in  python

关于12' MacBook使用的记录

Read more   2018/4/24 posted in  mac

MySQL中文乱码

在连接时加上utf-8即可解决

Read more   2017/7/30 posted in  python

HTTPS

Read more   2017/7/30 posted in  运维

OSS

Read more   2017/7/30 posted in  运维

python xml操作

Read more   2017/7/30 posted in  python

python ip操作

Read more   2017/7/30 posted in  python

python 在__init__中批量设置类属性

常见的写法:

def __init__(self, x, y, z):
    ...
    self.x = x
    self.y = y
    self.z = z
    ...

可以简写成如下:

class A:
    def __init__(self, **kwargs):
        for key in kwargs:
            setattr(self, key, kwargs[key])
2017/7/30 posted in  python

python 项目开发技巧 - 配置与代码分离

Read more   2017/7/30 posted in  python

django 通过thread实现异步任务

Read more   2017/7/30 posted in  python

python-发送邮件

Read more   2017/7/30 posted in  python

nginx + uwsgi 部署bottle

Read more   2017/7/30 posted in  运维

python使用MySQLdb时报'MySQL server has gone away'

Read more   2017/7/30 posted in  python

域名解析情况监控

Read more   2017/7/30 posted in  运维

浙江移动劫持404、500等响应码问题处理

Read more   2017/7/30 posted in  运维

微信的坑-微信服务器重发页面请求的问题

这是一个大坑,可能有人还没有注意到这个问题,但它确实存在,而且可能会影响你的统计数据。

Read more   2017/7/30 posted in  运维

Docker安装zabbix-server

以前折腾过一次部署zabbix环境,觉得比较麻烦,特别是php环境,当时不是很熟悉,折腾了很久。
现在我们的业务上也需要zabbix,在部署的时候首先想到的就是能不能用docker来实现快速部署,查了一些资料,发现真的可行,于是便在自己的虚拟机上搭了一套。说明如下

Read more   2017/7/30 posted in  运维

django 表单开启csrf验证

Read more   2017/7/30 posted in  python

django template循环显示内容

Read more   2017/7/30 posted in  python

JVM

Read more   2017/7/30 posted in  java