Xshell配色方案

Xshell是Windows下很好用的一款SSH软件,但是性冷淡的配色终究还是有点枯燥,分享两个还可以的配色方案。

Read more

Python两个字典的合并

两个字典合并的,有几种方法

1
2
3
4
dict1={1:[1,11,111],2:[2,22,222]}
dict2={3:[3,33,333],4:[4,44,444]}
#得到如下的结果
{1:[1,11,111],2:[2,22,222],3:[3,33,333],4:[4,44,444]}
Read more

Pyhton的文件操作

​ 最近搞处理文件,各种命令搞的头晕眼花,此处做个合并,以便之后观察使用。

Read more

Linux提示Give root password for maintenance

由于非法重启或硬盘故障,会导致linux系统无法启动,无法进入操作系统。当你看到提示:give root password for maintenance(or type control-D to continue):的时候,你还有补救的机会。问题原因应该是/usr /home /boot分区磁盘检测出了问题。

Read more

Python创建目录

流程如下:

  1. 判断目录是否存在os.path.exists(path)
  2. 创建多层目录os.path.makedirs(path)
  3. 创建目录os.mkdir(path)
Read more

Linux防火墙的关闭

在连接MySQL中,遇到ERROR 2002 (HY000): mysql

这个其实是Linux防火墙的阻拦

解决办法就是关闭防火墙即可。

Read more

统计一个文件中某个单词的出现次数

首先有一个最简单的方法,就是用正则匹配

1
2
3
import re
tmp = open("123.txt", "r").read()
print len(re.findall("hello", tmp))

还可以利用Counter来实现更多的功能

Read more

SSL证书的配置过程

Apache 2配置SSL证书

本文描述在 Apache 2.x HTTP 服务器上安装并配置 SSL 证书。

Read more
Your browser is out-of-date!

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

×