首页 软件开发 ( Page 1706 )

软件开发 20584

#APS/Basic
链接列表

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

2014-11-02 854

#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 339

#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 287

#Python
对比list的处理速度

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

2014-10-31 524

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

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

2014-10-31 457

#Objective-C
RFJModel,一个可以将JSON字典自动装填到OBJC对象的IOS类库

@interface ExampleJModel : RFJModel JProperty(NSString *value_NSString, map_value_NSString…

2014-10-31 376
2014-10-31 1,002

#Ruby
角度弧度转换代码

def d2r() puts "Enter the value of angle in degree" t=gets.chomp.to_f #corresponding value…

2014-10-30 900