最新 最热

code test

// make links and image workHandler handler = new Handler() { public void handleMessage(Message msg) { int what = msg.what; if (what == 200...

2020-02-12
0

PyCharm 2018最新激活码通用

通用:Window、Mac、Ubantu都稳定有效,关键是这种激活方式不会产生其他影响

2020-02-10
1

python实现单链表

#encoding:utf-8import sysclass Lnode():    def __init__(self,elem,next=None):        self.elem = elem    #节点的值        self.next = next    #指向下一个节点    ...

2020-01-14
1

java的枚举enum根据code获取name等

package com.newrank.xdf.common.enums;/** * @author dencycheng * @date 2019/11/14 11:37 */public enum Roles { ADMIN(1,"超级管理员"), GROUP_ADMIN(2,"集团...

2020-01-13
0

Python 关于日志的分析

项目情况介绍:基于Python 3.6.6 ,实现对nginx访问的日志分析代码,实现了对日志中code的占比统计和浏览器类型和访问情况统计实现的代码段有:1.编写窗户函数,实现在一定的时间内对数据进行分析2.通过正则表达式对日志进行...

2020-01-13
1

rsync to synchronize

python code  rsync #!/usr/bin/env pyt hon #wraps up rsync to synchronize two directories from subprocess import call import sys import time """this mo...

2020-01-13
1

python单个接口测试记录

校验短信验证码到接口200{"meta":{"code":0,"message":"success"},"data":{"userId":9000037,"userName":"21410665218","token":"16c9f975-d5d7-4cef-9a12-fb8dc5a81792","...

2020-01-13
1

Windows 下后台运行 Python

【code】#encoding: utf-8#author: walker#date: 2019-05-24#summary: 简单的 http server,用于测试后台运行import http.serverimport socketserverPORT = 5678Handler = htt...

2020-01-10
0

用Python获取自己的外网IP

code say anything:#encoding=utf-8#author: walker#date: 2016-03-07#summary: 获取自己的外网IPimport requestsfrom bs4 import BeautifulSoup#获取外网IPdef GetOuterIP(...

2020-01-09
0

Thinkphp+layui动态表格的使用

今天早上想将后台中的表格部分使用layui的动态表格模块来实现,早上简单的看了下手册,晚上回家详细的看了手册,写了代码,实现了功能。下面直接上代码及效果图:...

2019-12-27
1