解决MySQL中文乱码方法

MySQL会出现中文乱码的原因一般为以下几点:

  1. server本身设定问题,例如还停留在latin1
  2. table的语系设定问题(包含character与collation)
  3. 客户端程式(例如php)的连线语系设定问题
Read more

Python批量删除特定后缀名的文件和目录

利用 Python 在日常工作中,删除指定目录已经子目录下的特定后缀的文件名。

Python Version: 2.7

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding:utf-8
import os
import sys
import os
import shutil

#获取当前路径
def fileDir() :
path = sys.path[ 0 ]
print(path)
#判断为脚本文件还是编译后文件,如果是脚本文件则返回脚本目录,否则返回编件译后的文件路径
if os.path.isdir( path ) :
return path
elif os.path.isfile( path ) :
return os.path.dirname( path )

#获取文件后缀名
def suffix(fileName, *suffixName) :
array = map(fileName.endswith, suffixName)
if True in array :
return True
else :
return False

#删除目录下扩展名为.exe,.bak的文件
def deleteFile() :
target_dir = fileDir()
for root, dir_names, file_names in os.walk(target_dir):
for file in file_names:
target_file = os.path.join(root, file)
if suffix(file, '.doc', '.xls'):
os.remove(target_file)
# 文件夹名字
if file == 'a':
shutil.rmtree(os.path.join(root, dir_names))


if __name__ == '__main__' :
deleteFile()

pyinstaller教程

简介:PyInstaller可以用来打包python应用程序,打包完的程序就可以在没有安装Python解释器的机器上运行了。PyInstaller支持Python 2.7和Python 3.3+。可以在Windows、Mac OS X和Linux上使用,但是并不是跨平台的,而是说你要是希望打包成.exe文件,需要在Windows系统上运行PyInstaller进行打包工作;打包成mac app,需要在Mac OS上使用。

Read more

Git配置不同项目的不同账号

​ 在公司里做项目,一般都是公司直接分配git账号。而我自己在GitHub上也托管了自己的博客。两边使用的账号是不同的对应的ssh key也不一样。每次都手工更改是很麻烦的,也不是程序员应有的解决方案。这里我记录下我是如何解决git多账号登录的。

​ 首先当初最开始设置 Git 的时候,都是默认全局设置的。例如:

1
2
git config --global user.name "your_name" 
git config --global user.email "your_email"
Read more

Python的最大递归深度错误

今天在用 Python 的爬虫的时候,遇到一个错误maximum recursion depth exceeded while calling a Python object,意思是:当调用该对象超过最大递归深度。

报错如下:

Read more

Linux 下后台运行Python脚本

如果要在Linux服务器端一直运行一个Python脚本,当然就想到了在命令后面加&符号。

例如:

1
$ python /data/python/server.py >python.log &   
Read more

Python ConfigParser模块常用方法示例

在程序中使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在Python里更是如此,在官方发布的库中就包含有做这件事情的库,那就是ConfigParser,这里简单的做一些介绍。

Python ConfigParser模块解析的配置文件的格式比较象ini的配置文件格式,就是文件中由多个section构成,每个section下又有多个配置项.

Read more

Linux 下安装 zsh

Zsh 是一款功能强大终端(shell)软件,既可以作为一个交互式终端,也可以作为一个脚本解释器。它在兼容 Bash 的同时 (默认不兼容,除非设置成 emulate sh) 还有提供了很多改进。

安装更新过程:

Read more

Android O的感叹号或者叉 怎么去掉呢

Andorid O上的感叹号看着确实烦人,只要运行以下命令就好。

1
adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204

7.0-7.1.0

需要服务器支持https

或者使用命令

adb shell "settings put global captive_portal_use_https 0"

Read more
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×