码迷,mamicode.com
首页 >  
搜索关键字:af    ( 1836个结果
百度地图API---JS开发
百度地图API 开源地址:http://lbsyun.baidu.com/index.php?title=jspopular/guide/introduction#Https_.E8.AF.B4.E6.98.8E 示例参考: ...
分类:Windows程序   时间:2018-01-23 18:16:39    阅读次数:195
socket
1.服务端和客户端 1 import socket 2 3 phone=socket.socket(socket.AF_INET,socket.SOCK_STREAM)#买手机(定义socket类型,网络通信,TCP) 4 phone.bind(('127.0.0.1',8000))#绑定电话卡(套 ...
分类:其他好文   时间:2018-01-22 19:27:45    阅读次数:162
HTML介绍 前端概述
前端概述 import socket def main(): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.bind(('localhost',8089)) sock.listen(5) while True: conne ...
分类:Web程序   时间:2018-01-20 13:58:09    阅读次数:178
正则扩展(1)
1.打印文件中特定的某行到某行之间的内容(1)文件内容如下[root@weix-01~]#cataa.txtertiffsa**$%[abcd]123456789[ttl]af**fgfg[root@weix-01~]#sed-n‘/abcd/,/ttl/p‘aa.txt#这种方式适用于模糊匹配[abcd]123456789[ttl][root@weix-01~]#sed-n‘/\[abcd]/,
分类:其他好文   时间:2018-01-19 11:39:53    阅读次数:159
线程池,这一篇或许就够了
https://liuzho.github.io/2017/04/17/%E7%BA%BF%E7%A8%8B%E6%B1%A0%EF%BC%8C%E8%BF%99%E4%B8%80%E7%AF%87%E6%88%96%E8%AE%B8%E5%B0%B1%E5%A4%9F%E4%BA%86/ 为什么用 ...
分类:编程语言   时间:2018-01-17 01:04:15    阅读次数:205
afl-fuzz技术初探
afl fuzz技术初探 转载请注明出处:http://www.cnblogs.com/WangAoBo/p/8280352.html 参考了: http://pwn4.fun/2017/09/21/AFL%E6%8A%80%E6%9C%AF%E4%BB%8B%E7%BB%8D/ http://bl ...
分类:其他好文   时间:2018-01-13 22:14:09    阅读次数:479
shell正则比配IP
shell的正则匹配IP[root@master ~]# cat test.txt  2014-08-17 20140907 14 03 22 aa.aa.bb.cc af.23.67.90 ffffff oo.09.0f.87.90 192.168.1.2 121.168.2.3 0987238349 999.999.99.999 12
分类:系统相关   时间:2018-01-12 17:45:15    阅读次数:147
LeetCode-17-Letter Combinations of a Phone Number
一、问题描述 给定一个数字组成的string,其中每一个数字代表着下图的几个字符,要求输出他们的全排列 例子:给定字符串“23”,输出结果为["ad", "ae", "af", "bd", "be", "bf", "cd", "ce", "cf"] 二、问题解决 这个问题很想数据结构里面的输出一个字 ...
分类:其他好文   时间:2018-01-12 17:08:23    阅读次数:103
python客户端读取文件并发送接收数据
# -*- coding=gb2312 -*- __author__ = 'vincent' import socket import time import sys import locale def Client(): sock = socket.socket(socket.AF_INET, s... ...
分类:编程语言   时间:2018-01-10 22:42:16    阅读次数:405
Python网络编程常用代码
服务器端代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 # -*- coding: cp936 -*- import socket sock = socket.socket(socket.AF_INET ...
分类:编程语言   时间:2018-01-10 14:09:48    阅读次数:219
1836条   上一页 1 ... 41 42 43 44 45 ... 184 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!