Skip to content

Instantly share code, notes, and snippets.

View iyaozhen's full-sized avatar
🎯
Focusing

iyaozhen

🎯
Focusing
View GitHub Profile
@iyaozhen
iyaozhen / rebuild_wp_cache.py
Last active March 24, 2019 10:06
according to sitemap.xml rebuild cache @Cache Enabler – WordPress Caching
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# https://cn.wordpress.org/plugins/cache-enabler/
# rebuild cache according to sitemap.xml
import os
import requests
import xml.etree.ElementTree as ET
import time
import shutil
@iyaozhen
iyaozhen / helper.php
Last active April 12, 2019 17:04
PHP get sys http proxy conf
<?php
/**
* get sys http proxy conf
* base from system PATH,and Windows get from Internet Settings
*
* @return array
*/
function getHttpProxyConf()
{
@iyaozhen
iyaozhen / Encrypter.php
Created July 12, 2019 04:26
PHP Encrypter
<?php
/**
* 加解密类
*
* @author iyaozhen
* @date: 2016-11-12
*/
class Encrypter
{