虫虫首页|资源下载|资源专辑|精品软件
登录|注册

try

  • A bluetooth SMS patcher Java ME application I made quickly after I thought about making one. What i

    A bluetooth SMS patcher Java ME application I made quickly after I thought about making one. What is does is to use JSR-82 (Bluetooth API) to send a String msg, String dest to another phone running shin-chan, and this phone will try to send it as SMS using JSR-135 (WMA). The upload is a Netbeans 6.0 (the ver. available back then) project. Hope this code will help someone

    标签: application bluetooth patcher quickly

    上传时间: 2013-12-17

    上传用户:kelimu

  • This is a very good book for system administrator to hold grip over red hat system administrator too

    This is a very good book for system administrator to hold grip over red hat system administrator tools.try it.

    标签: administrator system This good

    上传时间: 2013-12-21

    上传用户:Miyuki

  • Attempt to write voice dictionary: search and play wav files (could be obtained from stardict voice

    Attempt to write voice dictionary: search and play wav files (could be obtained from stardict voice dictionary). Netbeans project and use of Java MIDP. Tested on Nokia 5310. Actual midlet source inside the project - HelloMidlet.java. Jar file to try voicedic.jar.

    标签: voice dictionary obtained stardict

    上传时间: 2017-08-30

    上传用户:jackgao

  • GAJSP problems using Java Programming Language to Develop on Windows Platform only. Full Source Code

    GAJSP problems using Java Programming Language to Develop on Windows Platform only. Full Source Code. try it now.

    标签: Programming problems Language Platform

    上传时间: 2017-09-03

    上传用户:ls530720646

  • We (the Klimas family) are relative Linux newbies (with Linux since Summer 1998). We run RedHat mos

    We (the Klimas family) are relative Linux newbies (with Linux since Summer 1998). We run RedHat mostly -> the solutions might not be directly applicable to other Linux distributions (although most of them probably will). Hope this helps, we try to be as practical as possible. Of course, we provide no warranty whatsoever!

    标签: Linux relative newbies Klimas

    上传时间: 2017-09-05

    上传用户:gdgzhym

  • SharpPcap c#抓包实现时时获取网卡信息

    SharpPcap c#抓包实现时时获取网卡信息 SharpPcap tutorial: a step by step guide to using SharpPcap The text of this tutorial is taken directly from WinPcap's official tutorial but is modified to show the C# use of the SharpPcap library. All examples can be downloaded together with SharpPcap source code from SharpPcap 's homepage. The WinPcap library must be installed before attempting to run any of these examples, so please download and install the latest version from WinPcap's download page. SharpPcap was written and tested using .NET v1.1 and Windows 2000/XP. I have no idea about other .NET and Windows versions. If you do try it, please report your results. The following topics are covered in this tutorial: Obtaining the device list Obtaining advanced information about installed devices Opening an adapter and capturing packets Capturing packets without the event handler Filtering the traffic Interpreting the packets Handling offline dump files Sending Packets Gathering Statistics on the network traffic 1. Obtaining the device list

    标签: SharpPcap c#抓包 获取网卡信息

    上传时间: 2015-07-06

    上传用户:muzongda

  • python爬虫获取大量免费有效代理ip--有效防止ip被封

    以后再也不用担心写爬虫ip被封,不用担心没钱买代理ip的烦恼了 在使用python写爬虫时候,你会遇到所要爬取的网站有反爬取技术比如用同一个IP反复爬取同一个网页,很可能会被封。如何有效的解决这个问题呢?我们可以使用代理ip,来设置代理ip池。 现在教大家一个可获取大量免费有效快速的代理ip方法,我们访问西刺免费代理ip网址 这里面提供了许多代理ip,但是我们尝试过后会发现并不是每一个都是有效的。所以我们现在所要做的就是从里面提供的筛选出有效快速稳定的ip。 以下介绍的免费获取代理ip池的方法: 优点:免费、数量多、有效、速度快 缺点:需要定期筛选 主要思路: 从网址上爬取ip地址并存储 验证ip是否能使用-(随机访问网址判断响应码) 格式化ip地址 代码如下: 1.导入包 import requests from lxml import etree import time 1 2 3 2.获取西刺免费代理ip网址上的代理ip def get_all_proxy():     url = 'http://www.xicidaili.com/nn/1'     headers = {         'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36',     }     response = requests.get(url, headers=headers)     html_ele = etree.HTML(response.text)     ip_eles = html_ele.xpath('//table[@id="ip_list"]/tr/td[2]/text()')     port_ele = html_ele.xpath('//table[@id="ip_list"]/tr/td[3]/text()')     proxy_list = []     for i in range(0,len(ip_eles)):         proxy_str = 'http://' + ip_eles[i] + ':' + port_ele[i]         proxy_list.append(proxy_str)     return proxy_list 1 2 3 4 5 6 7 8 9 10 11 12 13 14 3.验证获取的ip def check_all_proxy(proxy_list):     valid_proxy_list = []     for proxy in proxy_list:         url = 'http://www.baidu.com/'         proxy_dict = {             'http': proxy         }         try:             start_time = time.time()             response = requests.get(url, proxies=proxy_dict, timeout=5)             if response.status_code == 200:                 end_time = time.time()                 print('代理可用:' + proxy)                 print('耗时:' + str(end_time - start_time))                 valid_proxy_list.append(proxy)             else:                 print('代理超时')         except:             print('代理不可用--------------->'+proxy)     return valid_proxy_list 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 4.输出获取ip池 if __name__ == '__main__':     proxy_list = get_all_proxy()     valid_proxy_list = check_all_proxy(proxy_list)     print('--'*30)     print(valid_proxy_list) 1 2 3 4 5 技术能力有限欢迎提出意见,保证积极向上不断学习 ———————————————— 版权声明:本文为CSDN博主「彬小二」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。 原文链接:https://blog.csdn.net/qq_39884947/article/details/86609930

    标签: python ip 代理 防止

    上传时间: 2019-11-15

    上传用户:fygwz1982

  • Crime+and+Intelligence+Analysis

    In the hit CBS crime show Person of Interest, which debuted in 2011, the two heroes—one a former Central Intelligence Agency agent and the other a billionaire technology genius—work together using the ubiquitous surveillance system in New York City to try to stop violent crime. It’s referred to by some as a science fiction cop show. But the use of advanced technology for crime analysis in almost every major police department in the United States may surpass what’s depicted on TV crime dramas such as Person of Interest. Real-time crime cen- ters (RTCCs) are a vital aspect of intelligent policing. Crime analysis is no longer the stuff of science fiction. It’s real.

    标签: Intelligence Analysis Crime

    上传时间: 2020-05-25

    上传用户:shancjb

  • Radio System Design for Telecommunication

    This book provides the essential design techniques for radio systems that operate at frequencies of 3 MHz to 100 GHz and which will be employed in the telecommunication service. We may also call these wireless systems, wireless being synonymous with radio, Telecommunications is a vibrant indus- try, particularly on the ‘‘radio side of the house.’’ The major supporter of this upsurge in radio has been the IEEE and its 802 committees. We now devote Ž . an entire chapter to wireless LANs WLANs detailed in IEEE 802.11. We also now have subsections on IEEE 802.15, 802.16, 802.20 and the wireless Ž . Ž metropolitan area network WMAN . WiFi, WiMax,, and UWB ultra wide- . band are described where these comparatively new radio specialties are demonstrating spectacular growth.

    标签: Telecommunication Design System Radio for

    上传时间: 2020-05-31

    上传用户:shancjb

  • Software+Defined+Radio+for+3G

    Software defined radio (SDR) is an exciting new field for the wireless indus- try; it is gaining momentum and beginning to be included in commercial and defense products. The technology offers the potential to revolutionize the way radios are designed, manufactured, deployed, and used. SDR prom- ises to increase flexibility, extend hardware lifetime, lower costs, and reduce time to market

    标签: Software Defined Radio for 3G

    上传时间: 2020-05-31

    上传用户:shancjb