首页 软件开发 ( Page 1682 )

软件开发 20299

#Objective-C
AVPlayer

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

2014-11-02 430

#HTML
css3 Nav Menu

<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8">…

2014-11-02 415

#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

#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

#Python
将华氏温度转换成摄氏温度,或者相反

#-*- charset:utf-8 -*- #This program will follow users intention to convert F to C or the …

2014-10-31 456