码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
What should I do about “302 Found” exceptions when downloading with Indy?
Set theTIdHTTP.HandleRedirectsproperty to True. It is False by default.function FetchUrl(const url: string): string; var idhttp : TIdHTTP; begin id...
分类:其他好文   时间:2014-06-12 14:53:09    阅读次数:286
dispatch_group_async
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view. dispatch_queue_t queue = dispatch_get_global...
分类:其他好文   时间:2014-06-12 13:02:38    阅读次数:225
shell脚本小练习--域名解析
这是一个群里别人让我写的一个小脚本,当做练习发到这里,功能很简单,从一个文件里面提取域名,之后利用nslookup命令对域名进行解析,再按照固定的格式输出到一个新的文件里面(输出规格是为address=/域名/IP),脚本内容如下:#!/bin/bash fornamein`cat/root/dns.File`;do n..
分类:其他好文   时间:2014-06-10 22:35:33    阅读次数:355
IOS学习笔记---C语言第三天
循环结构 : while循环 do...while循环(几乎不用) for循环(使用最多)特点:在给定的条件成立时,反复执行某程序段,直到条件不成立为止。给定的条件为循环条件,反复执行的程序段位循环体。一、while循环while(条件表达式){ 循环语句;}#import int mai...
分类:移动开发   时间:2014-06-10 21:36:59    阅读次数:346
字符串查找匹配
vector split(const string& src, const string& separator){vectordest;string str = src;string substring;string::size_type start = 0, index;do{index = st...
分类:其他好文   时间:2014-06-10 20:35:36    阅读次数:238
WEP cracking
Our information -Wireless interface:wlan0Monitor mode interface: mon0Spoofed MAC –00:11:22:33:44:55? DO NOT EVER USE THIS AS YOUR SPOOFED MAC ADDRESS ...
分类:其他好文   时间:2014-06-10 16:55:13    阅读次数:300
[leetcode]Palindrome Number @ Python
原题地址:https://oj.leetcode.com/problems/palindrome-number/题意:Determine whether an integer is a palindrome. Do this without extra space.click to show spo...
分类:编程语言   时间:2014-06-10 16:06:52    阅读次数:286
js面向对象编程: js类定义函数时prototype和this区别?
在面向对象编写js脚本时,定义实例方法主要有两种 如下: function ListCommon2(afirst) { var first=afirst; this.do1=function () { alert("first do"+first); } } ListCommon2.prototy...
分类:Web程序   时间:2014-06-10 11:11:26    阅读次数:242
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!