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

代码片段 8064

#Shell
命令行十六进制编辑器HexTool修改bcwav

@echo off ::Usage: hextool InputFile.bin Address Length HexNumber ::用UltraEdit之类16进制编辑打开,在…

2015-12-12 1,011

#Shell
安装brew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2015-12-12 501

#SQL
SQL xp_cmdshell

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

sql
2015-12-12 959

#Python
透明LCD时钟

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

2015-12-11 789

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

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

2015-12-11 453

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

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

2015-12-11 536

#APS/Basic
显示文件夹的树形目录

' ' IndexScripts() ' ' ' Written by Keep Bertha Surfin Heavy Industries, ' a division of K…

2015-12-11 453

#HTML
简单的三级导航 纵向

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

2015-12-11 245

#Objective-C
图片剪切

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

2015-12-11 550

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

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

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

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