- Simple maps for vhost locations and PHP versions
- Still allows custom vhosts when added manually inside
conf.d/
WARNING: I use this setup for local development, it is not meant to be used in production as is.
| #!/usr/bin/env python | |
| import asyncio | |
| from keyed_pool import KeyedPool | |
| async def produce(pool): | |
| await pool.put('foo', 'bar') | |
| await pool.put('hello', 'world') | |
| await asyncio.sleep(4) | |
| await pool.put('foo', 'baz') |
| <?php | |
| /** | |
| * Plugin name: Get rid of Ubuntu font | |
| * Description: Attempt to override the 4.6 system font stack to get rid of Ubuntu font. | |
| * Author: Otto Rask | |
| * Author URI: https://github.com/rask | |
| * License: MIT | |
| */ |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * document-scrolltop-shim.js | |
| * | |
| * Cross-browser adjustments for getting and setting the current scrollTop -value for | |
| * the body/html element. | |
| * | |
| * @author Otto Rask | |
| */ | |
| /** |
| /** | |
| * This node-sass function can be used to escape class names generated for ausi/cq-prolyfill. | |
| * https://github.com/ausi/cq-prolyfill | |
| */ | |
| var nsass = require('node-sass'); | |
| var sassFunctions = { | |
| /** | |
| * Sass function to escape [!=><] characters with a |
| <?php | |
| /**================================================================================== | |
| * WordPress transients example. | |
| * | |
| * This file shows the normal usage for WordPress transients with beefy comments. | |
| * | |
| * @author Otto J. Rask | |
| */ |
| #!/usr/bin/python | |
| # Originally created by eerac (and ivalegre) at https://wordpress.org/support/topic/wxr-file-splitter | |
| # Modified by Otto Rask to work with WordPress 4.* WXR files (<item>s are indented with a | |
| # single \t instead of two). | |
| # This script is designed to take a wordpress xml export file and split it into some | |
| # number of chunks (2 by default). The number of lines per chunk is determined by counting | |
| # the number of occurences of a particular line, '<item>\n' by default, and breaking up the | |
| # such that each chunk has an equal number occurences of that line. The appropriate header |