摘要:
使用socket模块实现简单群聊 1 import socket,threading,time,logging 2 3 logging.basicConfig(level=logging.INFO,format="%(message)s") 4 5 class Server: 6 7 def __i 阅读全文
2019年6月18日
2019年6月14日
摘要:
基于promise的ajax封装 1 //调用方式: 2 /* 3 ajaxPrmomise({ 4 url:, 5 method:, 6 headers:{} 7 }).then(res=>{}) 8 */ 9 10 ;(function(window){ 11 //设置默认的参数配置项 12 l 阅读全文
2019年6月13日
摘要:
css实现简单音乐符效果 利用css3中的transform、animation、keyframes实现 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" co 阅读全文
2019年6月9日
摘要:
nodejs实现简单http日志存储 1 /* 2 日志存储: 3 202.189.63.115 - - [31/Aug/2008:15:42:31 +0800] "GET / HTTP/1.1" 200 1365 "-" 4 "Mozilla/5.0 (Windows NT 6.1; WOW64; 阅读全文
2019年6月8日
摘要:
nodejs结合cheerio实现简单爬虫 1 let cheerio = require("cheerio"), 2 fs = require("fs"), 3 util = require("util"), 4 html = "", 5 https = require('https'), 6 l 阅读全文
2019年6月6日
摘要:
property简单使用 1 class P: 2 """ 3 property简单使用 4 """ 5 def __init__(self,name): 6 self._name = name 7 8 @property 9 def name(self): 10 return self._name 阅读全文
2019年6月5日
2019年6月4日
2019年6月3日
摘要:
jquery实现一些小动画二 jquery实现拖拽功能 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <title>Document</title> 5 <meta charset="UTF-8"> 6 <meta name="viewport" c 阅读全文
2019年5月31日
摘要:
简单日志处理 1 import datetime 2 import re 3 logfile='''58.61.164.141 - - [22/Feb/2010:09:51:46 +0800] "GET /reference-and-source/weblog-format/ HTTP/1.1" 2 阅读全文