####lsauer.com
###Overview of all chrome:// pages.
- List by calling
chrome://about/ - Following is a direct dump from the 'about' page for reference
###List of Pages as per v20.xxx
| <?php | |
| if ( ! function_exists( 'lets_clear_cache' ) ) { | |
| function lets_clear_cache() { | |
| // WP Rocket | |
| if ( function_exists( 'rocket_clean_domain' ) ) { | |
| rocket_clean_domain(); | |
| } | |
| // W3 Total Cache : w3tc |
| <?php | |
| /** | |
| * This script is for easily deploying updates to Github repos to your local server. It will automatically git clone or | |
| * git pull in your repo directory every time an update is pushed to your $BRANCH (configured below). | |
| * | |
| * Read more about how to use this script at http://behindcompanies.com/2014/01/a-simple-script-for-deploying-code-with-githubs-webhooks/ | |
| * | |
| * INSTRUCTIONS: | |
| * 1. Edit the variables below | |
| * 2. Upload this script to your server somewhere it can be publicly accessed |
| //simple XHR request in pure JavaScript | |
| function load(url, callback) { | |
| var xhr; | |
| if(typeof XMLHttpRequest !== 'undefined') xhr = new XMLHttpRequest(); | |
| else { | |
| var versions = ["MSXML2.XmlHttp.5.0", | |
| "MSXML2.XmlHttp.4.0", | |
| "MSXML2.XmlHttp.3.0", | |
| "MSXML2.XmlHttp.2.0", |
| <!--HTML file--> | |
| <!DOCTYPE html> | |
| <script> | |
| //define a worker | |
| var worker = new Worker('worker.js'); | |
| worker.addEventListener('message', function(e) { | |
| console.log('Worker said: ', e.data); | |
| }, false); |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Starter Template</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <!-- styles --> |
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
####lsauer.com
###Overview of all chrome:// pages.
chrome://about/###List of Pages as per v20.xxx