码迷,mamicode.com
首页 >  
搜索关键字:list    ( 54897个结果
使用ping命令检测ip
cat~/ping-thread-net.sh #!/bin/bash PING(){ (>/tmp/downip_list >/tmp/upip_list ping$1-W1-c1-q>/dev/null2>&1 if[$?-ne0];then echo$1>>/tmp/downip_list elseecho$1>>/tmp/upip_list fi)& } foripin`seq1254` do PING192.168.86.$ip done
分类:其他好文   时间:2015-08-05 01:12:06    阅读次数:114
python 多线程处理List
#-*-coding:UTF-8-*-#"""根据Redis的密码字典,暴力破解"""importredisimportsys,osimportthreadingBIN="/usr/local/bin/medusa"#medusa-uroot-p123456-h111.207.22.72-MsshdefthreadTask(plist,threadnum):forxvalinplist:print"Thread-%s:%s"%(threadnum,xval)CMD=BIN+"-u"+U..
分类:编程语言   时间:2015-08-04 23:23:19    阅读次数:1163
dig域名
#!/usr/bin/perl#usewarnings;usestrict;useParallel::ForkManager;useJSON::XS;useNet::DNS::Nslookup;useNet::Nslookup;usePOSIXqw(strftime);useDigest::MD5;`[-d./logs]||mkdirlogs`;my$listPath="./domain-list";my$dropPath="./domain-drop";my$logsPath="./logs/";our$d..
分类:其他好文   时间:2015-08-04 23:19:04    阅读次数:244
HBuilder开发App教程07-列表页
说明 接着上节的内容,本节讲首页的list页面, 如果看过上一节你就会明白“首页”是由只有头部的index页面和列表list页面组成的, 本节涉及到: 1.几种页面的打开方式 2.websql的应用 3.页面内容的加载 4.页面实现 几种页面打开方式 如果看过以前的章节你会明白,在Hbuilder,mui中需要放弃href跳转, 而专用mui自带的页面打开方式,为什么?...
分类:移动开发   时间:2015-08-04 23:09:19    阅读次数:247
hdu1258(Sum It Up)
点击打开hdu1258 Problem Description Given a specified total t and a list of n integers, find all distinct sums using numbers from the list that add up to t. For example, if t=4, n=6, and the list is [...
分类:其他好文   时间:2015-08-04 23:06:55    阅读次数:188
HBuilder开发App教程08-几种页面打开方式
说明 上节说了list页面的实现,其中关于几种页面的打开方式没有详细述说, 本节详细述说下几种页面打开方式的区别。 几种打开页面的方式 1.初始化时创建子页面 2.直接打开新页面 3.预加载页面 示例 1.初始化时创建子页面 mui.init({ subpages: [{ url: your - subpage - url, //子页面HT...
分类:移动开发   时间:2015-08-04 23:06:30    阅读次数:228
kafka-python实现获得kafka topic
from kafka.client import KafkaClient client = KafkaClient(“zookeeper_host”) topic_list = client.topics...
分类:编程语言   时间:2015-08-04 21:16:01    阅读次数:179
To upload an excel file using WebDynpro Application.
Scenario:To upload an excel file using WebDynpro Application. Procedure: 1. Go to transaction SE80. 2. Select “WebDynpro Comp./Intf” from the list. 3. Create a new WebDynpro component by the name ZEXCEL_UPLOAD....
分类:移动开发   时间:2015-08-04 21:09:21    阅读次数:134
Hibernate之单表类型数据处理泛型类
package chengfei.hibernate.Dao;import java.util.List;import org.hibernate.HibernateException;import org.hibernate.Session;import org.hibernate.Transac...
分类:Web程序   时间:2015-08-04 20:42:23    阅读次数:127
【前端学习笔记】项目经验积累(不定期更新)
样式重置—————————————————————————–/* reset */ body,h1,h2,h3,h4,h5,p,dl,dd,ul,ol,form,input,textarea,th,td,select { margin:0; padding:0; } em { font-style:normal; } li { list-style:none; } a...
分类:其他好文   时间:2015-08-04 19:21:38    阅读次数:111
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!