git config --global http.version HTTP/1.1
git config --global http.postBuffer 157286400
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Copy this into the console of any web page that is interactive and doesn't | |
do hard reloads. You will hear your DOM changes as different pitches of | |
audio. | |
I have found this interesting for debugging, but also fun to hear web pages | |
render like UIs do in movies. | |
*/ | |
const audioCtx = new (window.AudioContext || window.webkitAudioContext)() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate private/public key | |
> ssh-keygen -t ecdsa -b 521 | |
> ssh-keygen -t ed25519 | |
> ssh-keygen -t ecdsa -b 521 -f ./certs -m PEM | |
# Add private key | |
> ssh-add -K ~/.ssh/identity_file | |
# Copy public key to remote host | |
> ssh-copy-id -i ~/.ssh/identity_file username@remote_host_ip |
Put this on your wp-config.php
/* That's all, stop editing! Happy blogging. */
define('FS_METHOD', 'direct');
It is loaded by default by /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist.
If you run
launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HTML5 pushState nginx configuration | |
# | |
# @see: http://stackoverflow.com/a/30515169/1774183 | |
# | |
# Server block for a client side app with directories: | |
# | |
# / | |
# /foo | |
# /foo/bar | |
# /foo/bar/baz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "App", | |
"version": "1", | |
"authors": [ | |
"Kevin Ruscoe <kevdotbadger@gmail.com>" | |
], | |
"moduleType": [ | |
"node" | |
], | |
"license": "MIT", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Minimal httpd.conf for running apache in the foreground for local php | |
# development. | |
# | |
# Setup: | |
# 1. Place this file in the root of your project. | |
# 2. Make sure the ./tmp directory exists (for the pid and lock files). | |
# 3. Update the DocumentRoot and Directory directives with the relative path to | |
# your project's document root. | |
# |
NewerOlder