Skip to content

Instantly share code, notes, and snippets.

@nodegin
nodegin / gist:c8971099277ebfb77f61c2a3e13a0c83
Last active April 27, 2016 13:09 — forked from saetia/gist:1623487
Clean Install – OS X 10.11 El Capitan

OS X Preferences


most of these require logout/restart to take effect

# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false

# Set a shorter Delay until key repeat
@nodegin
nodegin / base⠼⠋⠙.php
Last active March 8, 2016 14:35 — forked from naoyat/base⠼⠋⠙.py
use braille patterns for base64, instead of alphanumerics. joke.
<?php
function _b64enc($in, $padding = false)
{
$inLen = count($in);
$out = [];
for ($i = 0; $i < $inLen; $i += 3)
{
$out[] = $in[$i] >> 2;
if ($i + 1 < $inLen)