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

代码片段 8064

#SQL
SQL xp_cmdshell

GO ---打开xp_cmdshell EXEC sp_configure 'show advanced options', 1; RECONFIGURE; EXEC sp_con…

sql
2015-12-12 958

#APS/Basic
VBScript调用WinRAR备份项目目录用日期作为文件名

Option Explicit Function padLeft(str, length) If Len(str) >= length Then padLeft = str …

2015-12-12 808

#Objective-C
图片剪切

- (UIImage *)imageWithImage:(UIImage*)image scaledToSize:(CGSize)newSize; { UIGraphicsBegi…

2015-12-11 549

#Shell
la&nmp

wget http://www.php.net/get/php-5.3.23.tar.bz2/from/cn2.php.net/mirror mv mirror php-5.3.2…

2015-12-11 127

#Shell
python 调用命令行编译 android apk 。。。

#!/usr/bin/env python # -*- coding: utf-8 -*- import os import subprocess import shutil de…

2015-12-11 680

#Shell
删除所有文件

del /a /f /s /q X:\*.* rd /s /q X:\

2015-12-11 853

#Python
透明LCD时钟

# -*- coding: utf-8 -*- import sys from PyQt4 import QtCore, QtGui class LcdTime(QtGui.QWi…

2015-12-11 787

#Ruby
Rails 连接到 POP3 邮箱,并检查是否有邮件

require 'net/pop' mail_server = Net::POP3.new('mail.mailservernamehere.com') begin mail_se…

2015-12-11 452

#HTML
table+css与xhtmL+css实现同一登陆框(代码片段)

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

2015-12-11 535
1 81 82 83 84 85 672