首页 软件开发 ( Page 1682 )

软件开发 20300

#Objective-C
AVPlayer

// // EasyAVPlayer.h // EasyAVPlayer // // Created by Tommy on 15/8/25. // Copyright (c) 2…

2014-11-02 430

#APS/Basic
链接列表

//First in C# where you create the controller action method //to create the method that wi…

2014-11-02 853

#Shell
VBS脚本发送邮件,密送多人,带附件,可更换账号密码,收信人从excel中获取

Class CdoMail ' 定义公共变量,类初始化 Public fso, wso, objMsg Private Sub Class_Initialize() Set fso…

2014-11-02 254

#Ruby
版本比较

# * 版本比较 # * @param version1 # * @param version2 # * @return # * -1: version1小于version2 # …

2014-11-02 602

#Shell
网站数据备份,和网站文件打包。

#!/bin/bash #定义此脚本存在的目录(根部目录) shelldir='backup' #定义数据库账户 user='root' #定义数据库用户密码 password='…

2014-11-02 228

#Shell
按状态统计tcp连接数量& sort使用

netstat -nt | awk '{print $6}' | sort | uniq -c | sort -n -k 1 -r

2014-11-01 252

#Python
终端播放音乐同步显示本地或网络歌词

#!/usr/bin/python # -*- encoding:utf-8 -*- #========================================= # Fi…

2014-11-01 538

#HTML
增删改table的元素

<!DOCTYPE html> <html> <head> <title>register</title> <me…

2014-11-01 602

#Python
python3爬取糗百硬菜图片 转自www.ustchacker.com

import urllib.request import re import threading images=[] def touchImages(): url='http://…

2014-11-01 338

#Shell
linux c代码批量宏展开

#!/bin/sh #expans all the macro in source file INCLUDE="" #get all the header files direct…

2014-10-31 257

#Python
修改mp3的id3 tag内容

#! /usr/bin/env python # encoding: utf8 import sys import os import binascii import json d…

2014-10-31 286

#Python
对比list的处理速度

#网上代码 def open_httptxt(): #打开TXT文本写入数组 st=time.clock() try: passlist = [] list_passlist=[]…

2014-10-31 523