首页 软件开发 代码片段 ( Page 643 )

代码片段 8064

#Ruby
Windows-1251 转换成 UTF8

function win_to_utf8 ($string) { $in_arr = array ( chr(208), chr(192), chr(193), chr(194),…

2014-12-06 875

#HTML
CSS实现的多种边界效果

#borders { position:relative; z-index:1; padding:30px; border:5px solid #f00; background:#…

2014-12-06 280

#HTML
2013年12306订票系统业务最新核心源码

12306订票系统业务 核心源码 <%@ page language=”java” contentType=”text/html; charset=UTF-8″ pageEn…

2014-12-05 654

#HTML
table的第一行实现拖拽

<!DOCTYPE HTML> <html> <head> <meta charset="gbk"> <title>ta…

2014-12-05 328

#HTML
一列固定宽度布局

<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <…

2014-12-05 447

#Objective-C
iOS 8及以上实现毛玻璃效果

#import "ViewController.h" #import "ILTranslucentView.h" #import <QuartzCore/QuartzCore…

2014-12-05 558

#Objective-C
iOS设置UITableViewCell的背景色透明

//设置UIColor为clearColor: cell.backgroundColor=[UIColor clearColor]; //或者,设置颜色透明度为0: cell.ba…

2014-12-05 175

#Ruby
服务器本地文件上传

url = 'http://xx' #post到url field_hash = {key: key, token: token} #post数据 request = RestCl…

2014-12-04 293

#SQL
SQL Server 2005/2008遍历所有表更新统计信息

DECLARE UpdateStatisticsTables CURSOR READ_ONLY FOR SELECT sst.name, Schema_name(sst.schem…

sql
2014-12-04 390

#Shell
aix平台计算日期的前N天和后N天shell脚本

#!/usr/bin/ksh ############################################################## ##aix平台下日期加减…

2014-12-04 766

#Ruby
等级相关系数 Coefficient Of Rank Correlation

puts "Enter Number of Data Set" n=gets.chomp n=n.to_f sum_d=0 i=0 while i<n i=i+1 puts …

2014-12-03 711