首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴静夜思的代码贴Python
# -*- coding:utf-8 -*-

import socket
from time import ctime, sleep
import threading


class ChatRoomPlus:
    def __init__(self):
        # 全局参数配置
        self.encoding = "utf-8"  # 使用的编码方式
        self.broadcastPort = 7788   # 广播端口
......................
阅读全部 | 2021年4月6日 20:29
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import os
import sys
import time

def get_remote_status():
    l = os.popen('ssh root@remote.com "cd /var/www/mysite; git st"').readlines()
    s = ''.join(l)
    return s

......................
阅读全部 | 2018年9月11日 10:29
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import os
import sys
import time

def get_remote_status():
    l = os.popen('ssh root@remote.com "cd /var/www/mysite; git st"').readlines()
    s = ''.join(l)
    return s

......................
阅读全部 | 2014年8月14日 23:46
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

class File:

file = None

def __init__(self):
pass

@staticmethod
def open(obj, flag):
......................
阅读全部 | 2014年8月12日 17:09
# 在这里找到一个解决方案 http://www.linuxdiyf.com/viewarticle.php?id=145791
# 不过几十个文件挨个改太麻烦了,用这个脚本可以自动修改,放在/usr/share/applications/kde4/里面运行
# 记得运行前备份kde4文件夹

import os
for f in os.listdir('.'):
    s = open(f).read()
    if not 'OnlyShowIn=KDE' in s:
        s = s + "\nOnlyShowIn=KDE"
        file(f, 'w').write(s)
        print f

......................
阅读全部 | 2012年3月28日 23:07
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import os
from django import template
from django.conf import settings

register = template.Library()

class SassNode(template.Node):
    def __init__(self, format_string):
        self.format_string = format_string
......................
阅读全部 | 2012年3月15日 21:46
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import os
from django import template
from django.conf import settings

register = template.Library()

class SassNode(template.Node):
    def __init__(self, format_string):
        self.format_string = format_string
......................
阅读全部 | 2012年3月15日 08:16
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

import commands
import os
import re
import urllib
import urllib2

"""
这段脚本能帮你自动下载安装最新版的rails,如果缺少相关的gem包则递归下载相应的gem包,直到安装成功为止
by BCCN.静夜思 2011.11.11
......................
阅读全部 | 2011年11月12日 09:01
#!/usr/bin/env python
# -*- coding: UTF-8 -*-

'''
检测XP系统进程和系统服务
把可疑的进程和服务列出来(以我自己的电脑为参考)
启动项检测挺麻烦的,我的电脑上只有3个(只有一个ctfmon.exe是必需的,另两个是google相关的update程序),到“CCleaner-工具-启动”查看和设置可以了
使用本脚本可以一定程度上检测恶意程序,追求更高的安全还得靠杀毒软件
2011.11.07 BCCN.静夜思
'''

import os
......................
阅读全部 | 2011年11月7日 12:35
#!/usr/bin/python
# -*- coding: UTF-8 -*

'''
传言需要写10万行代码才能真正熟手,统计一下你写了多少行代码了
把本代码保存为.py为后缀的文件放在你要统计的文件夹里面,双击运行即可,前提是你的系统装了python
注意要保存为UTF-8编码的文件
by BCCN.静夜思
'''

import os

......................
阅读全部 | 2011年10月28日 09:24
1 2 下一页
静夜思