首页 软件开发 ( Page 1715 )

软件开发 20669

#Python
python爬取返利网商品信息

#coding=utf-8 import sys reload(sys) sys.setdefaultencoding( "utf-8" ) import urllib2 impo…

#Ruby
Ruby 使用 Net::Ping 连接到指定的 TCP/UDP 端口

require 'rubygems' require 'net/ping' if Net::PingTCP.new('http://www.google.com/', 80).pi…

2014-10-29 403

#Shell
shell日期循环

#!/bin/bash start_date="$1" end_date=`date -d "+1 day $2" +%Y%m%d` --可以改成自己适用的格式 while [[ …

2014-10-29 284

#Shell
FFmpeg 抽取视频中的一段(视频转换)

ffmpeg.exe -i IMG_1137.MOV -f mpegts -ar 48000 -ab 64k -s 1280x720 -vcodec libx264 -x264op…

2014-10-29 628

#Shell
批处理安装配置GCC,MSYS环境

@echo off echo Setting Mingw-w64 Environment ::Check Your System,Must Win64 if /i "%PROCES…

2014-10-28 981

#HTML
自己玩玩

/** * */ package unicom.load; import unicom.comm.Sender; public interface FileLoader { pub…

2014-10-28 981

#Python
python将list连续元素和非连续元素分开转换为指定字符串

obj = {} def test(nums): nums.append(0) for item in nums: start = obj.get('start', item) e…

2014-10-28 973

#Ruby
Ruby创建QR码

require 'rubygems' require 'rqrcode' require 'qr_image' # QR Code parameters text = 'This …

2014-10-28 991

#APS/Basic
Access 2007/2010选择性导出为Excel 2007或CSV文件

Sub ExportExcelCSV() Dim strOut As String Dim tbl As AccessObject Dim f As Boolean With Ap…

2014-10-27 812

#APS/Basic
任何文件转成bat文件

Option Explicit Dim fp,fn,sll,sl,i,slh,bt,r,str fp=wscript.arguments(0) fn=right(fp,len(fp…

2014-10-27 245

#HTML
表格固定行列

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh…

2014-10-27 576