I hereby claim:
- I am gapple on github.
- I am gapple (https://keybase.io/gapple) on keybase.
- I have a public key ASBjZLWUCOtm6zRy7sMCukL0qOzna528FUkTfE8xFiovcgo
To claim this, I am signing this object:
substitutions: | |
exhaust_pwm_pin: GPIO26 | |
exhaust_rpm_pin: GPIO27 | |
exhaust_min_power: "0.2" | |
exhaust_max_power: "1.0" | |
exhaust_power_scale: "1.0" | |
exhaust_min_rpm: "300" | |
exhaust_max_rpm: "2000" | |
exhaust_pulse_per_rotation: "2.0" |
I hereby claim:
To claim this, I am signing this object:
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
<IfModule mod_headers.c> | |
RewriteCond %{HTTP:Accept-encoding} br | |
RewriteCond %{REQUEST_FILENAME} wp-login.php | |
RewriteRule ^(.*)$ bomb-32G.brotli [QSA] | |
RewriteCond %{HTTP:Accept-encoding} gzip | |
RewriteCond %{REQUEST_FILENAME} wp-login.php |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
<IfModule mod_headers.c> | |
RewriteCond %{HTTP:Accept-encoding} gzip | |
RewriteCond %{REQUEST_FILENAME} wp-login.php | |
RewriteRule ^(.*)$ bomb-10G.gzip [QSA] | |
# Set content type, and prevent mod_deflate double compression. | |
RewriteRule bomb-[\d]+G\.gzip$ - [T=text/html,E=no-gzip:1] |
<?php | |
// Trick Drupal into thinking it's being run from a sub-folder. | |
// @see conf_path() | |
if (preg_match('<^/([\w]+-subpath)>', $_SERVER['REQUEST_URI'], $url_subpath_match)) { | |
$_SERVER['SCRIPT_NAME'] = '/' . $url_subpath_match[1] ./' . $_SERVER['SCRIPT_NAME']; | |
} | |
else if (preg_match('<^/(sites/subsite/files/styles)>', $_SERVER['REQUEST_URI'])) { | |
// Direct image style requests to the subsite | |
$_SERVER['SCRIPT_NAME'] = '/en-subpath' . $_SERVER['SCRIPT_NAME']; |
// @see http://stackoverflow.com/a/509965/120080 | |
(function ($) { | |
$('[id]').each(function () { | |
var ids = $('[id="'+this.id+'"]'); | |
if(ids.length>1 && ids[0]==this) { | |
console.warn('Multiple IDs #'+this.id); | |
console.group(); | |
ids.each(function () { | |
console.info(this); | |
}); |
<?php | |
/** | |
* @file | |
* Provide a file-sync command to sync files directories between environments. | |
*/ | |
/** | |
* Implements hook_drush_command(). | |
*/ |
<?php | |
function update_rerun_drush_command() { | |
$commands = array(); | |
$commands['update_rerun'] = array( | |
'description' => 'Rerun an update hook for a module', | |
'aliases' => array('urr'), | |
'arguments' => array( | |
'module' => 'Module', |
[url "ssh://[email protected]/"] | |
insteadOf = gh: | |
[url "ssh://[email protected]/"] | |
insteadOf = gist: | |
[url "[email protected]:"] | |
insteadOf = bb: | |
[url "[email protected]:project/"] | |
insteadOf = drupal: | |
[core] |
#! /bin/bash | |
# Create a private key and certificate, signed by the local root certificate | |
# http://datacenteroverlords.com/2012/03/01/creating-your-own-ssl-certificate-authority/ | |
if [ -z $1 ] | |
then | |
echo "key name is required as an argument" | |
exit 1 | |
fi |