首页 软件开发 ( Page 1711 )

软件开发 20540

#HTML
滑动门

function $_class(name){ var elements = document.getElementsByTagName("*"); for(s=0;s<el…

2014-10-17 515
2014-10-17 643

#Shell
Qt目标文件执行脚本

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

2014-10-17 978

#Python
python处理Excel文件

#coding=utf-8 ####################################################### #filename:test_xlrd.…

2014-10-17 871

#Python
python实现某论坛自动签到bs4解析html文档

#!/usr/bin/env python # -*- coding: utf-8 -*- __author__ = 'poppy' ''' dakele bbs sigin ''…

#SQL
select 嵌套查询

--单行子查询 select ename,sal,deptno from emp where deptno=(select deptno from emp where ename=…

sql
2014-10-16 506

#Python
12306订票代码–python订票的另类方式

#!/usr/bin/env python # -*- encoding:utf-8 -*- ''' Created on 2014年12月30日 @author: liujich…

2014-10-16 289

#Ruby
Rails 根据email地址获取对应的邮件服务器信息

require 'resolv' dns = Resolv::DNS.new domain = "oreilly.com" dns.each_resource(domain, Re…

2014-10-16 845

#SQL
解密存储过程,视图,触发器

此存储过程解密比较短的存储过程可以,运行前先备份存储过程,否则可能无法恢复。 Decrypt Stored Procedures, Views and Triggers Scrip…

sql
2014-10-16 574

#Python
批量查询未注册域名

#!/usr/bin/env python # -*- coding: utf-8 -*- import urllib2 import re import sys def getI…

2014-10-16 551

#PHP
php中使用exec,system等函数调用系统命令

  php的内置函数exec,system都可以调用系统命令(shell命令),当然还有passthru,escapeshellcmd等函数。   在很多时候利用php的exec,…

#Objective-C
10分钟掌握Objective-C中的block块语法

// // main.m // // Created by 丁诚昊 on 14/10/27. // Copyright (c) 2014年 科长. All rights reser…

2014-10-16 148