首页 软件开发 ( Page 1729 )

软件开发 20769

#Shell
Powershell模拟世界时钟

<# " Satnaam WaheGuru Ji" Author : Aman Dhally E-Mail : amandhally@gmail.com website : …

2014-10-20 818

#Ruby
Rails 在 Session 中存放数据

class HelloController < ApplicationController def there @counter1 = 1 if(session[:count…

2014-10-20 324

#APS/Basic
判断客户端是否安装了.Net 2.0并且操作系统是Vista

If InStr(window.clientInformation.userAgent, ".NET CLR 2.0") And InStr(window.clientInform…

2014-10-20 882

#Shell
更改文件的字符编码

iconv -f gbk -t utf8 -o 123 12 iconv -f 原编码 -t 目标编码 -o 输出的文件 原文件

2014-10-19 769

#Shell
windows7笔记本管理wifi批处理

echo off title windows7 无线热点设置 color 1E :main cls echo. echo. ----------------------------…

2014-10-19 385

#HTML
艺术签名制作工具v1.0

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Conten…

2014-10-19 1,010

#SQL
SQL Server中文大写金额转化函数

CREATE FUNCTION usf_ChineseCost ( @Cost float ) RETURNS varchar(50) AS ----大写钱数---- BEGIN …

sql
2014-10-18 729

#Ruby
Ruby语言解决某数学难题

(123..327).select{|x| ([x,x*2,x*3].inject([]){|arr,y| arr + y.to_s.split(//)} << '0'…

2014-10-18 348

#Objective-C
计算沙盒文件的大小 缓存用

-(float)fileSizeForDir:(NSString*)path//计算文件夹下文件的总大小 { NSFileManager *fileManager = [[NSFi…

2014-10-18 359
2014-10-17 663

#Shell
Qt目标文件执行脚本

#!/bin/bash run () { if [ ! -f *.pro ] || [ ! -f *.pro.user ]; then echo "Warn: Can't find…

2014-10-17 1,007