Skip to content

Instantly share code, notes, and snippets.

@SimonDegraeve
SimonDegraeve / 00_ha_dnscrypt_proxy_client_setup.markdown
Last active November 26, 2015 06:41
Highly-available dnscrypt-proxy client setup on OSX with DNSSEC.

Tested, works!

Install

git clone https://gist.github.com/ebaea058822dede2a6d0 && cd ebaea058822dede2a6d0 && sh install.sh && cd .. && rm -rf ebaea058822dede2a6d0

Uninstall

git clone https://gist.github.com/ebaea058822dede2a6d0 && cd ebaea058822dede2a6d0 && sh uninstall.sh && cd .. && rm -rf ebaea058822dede2a6d0

@SimonDegraeve
SimonDegraeve / AppComponent.js
Last active August 29, 2015 14:15
ConnectStores method for Flummox (like Reflux connect mixin)
/*
* Import libraries
*/
import React from 'react';
/*
* Define helpers
*/
function capitalize(str) {
return (str.charAt(0).toUpperCase() + str.slice(1)).replace(/\s/g,'');