首页 软件开发 ( Page 1712 )

软件开发 20540

#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

#Objective-C
画一条虚线 ————————————————

UIImageView *imageView1 = [[UIImageView alloc]initWithFrame:CGRectMake(0, 200, 320, 20)]; …

2014-10-16 341

#Objective-C
远程获取iOS设备的屏幕截图

#import <QuartzCore/QuartzCore.h> #import <sys/socket.h> #import <netinet/i…

2014-10-15 762

#Shell
Ubutun 发送邮件配置

echo "test email" | mail -s XXXXX test@lookicloud.com

2014-10-15 685

#Shell
判断文件夹是否存在

@echo off @title 批处理判断文件夹是否存在 if exist folder1 ( echo "已经存在文件夹" ) else ( md folder1 ) if n…

2014-10-15 940
1 1,710 1,711 1,712