最新文章

P

Python Flask 高并发部署(gevent)

00x1 安装geventpip install gevent00x2 修改 flask#! -*- coding:utf-8 -*- from flask import Flask, jso...

Bejix 代码笔记 2020-03-31
P

PHP 生成UUID

public static function uuid_gen() { $chars = md5(uniqid(mt_rand(), true)); ...

Bejix 代码笔记 2020-03-26
P

PHP 生成MAC地址

/** * 生成MAC */ public static function mac_gen() { $array = array( ...

Bejix 代码笔记 2020-03-26
L

Libvirt 对KVM 网卡镜像 Qos 限速

KVM 虚拟机 网卡 Qos设置网卡的Qos可以限制网卡的IO速率00x1 XML 配置如下<interface type='bridge'> ...省略... &l...

Bejix 代码笔记 2020-03-21
P

Python程序运行禁止生成pyc文件的办法

由于在编写Python 测试时会生成 .pyc 文件强迫症的我看起来很难受00x1 临时生效:export PYTHONDONTWRITEBYTECODE=False00x2 永久生效:在~/....

Bejix 代码笔记 2020-03-21
没有更多了~