gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
linkedin-1-oauth.py | |
Created by Thomas Cabrol on 2012-12-03. | |
Copyright (c) 2012 dataiku. All rights reserved. | |
Doing the oauth dance to get your LinkedIn token | |
This is taken from : |
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
// Extend a winston by making it expand errors when passed in as the | |
// second argument (the first argument is the log level). | |
function expandErrors(logger) { | |
var oldLogFunc = logger.log; | |
logger.log = function() { | |
var args = Array.prototype.slice.call(arguments, 0); | |
if (args.length >= 2 && args[1] instanceof Error) { | |
args[1] = args[1].stack; | |
} | |
return oldLogFunc.apply(this, args); |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
- A Russian translation of this article can be found here, contributed by Timur Demin.
- A Turkish translation can be found here, contributed by agyild.
- There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
box = 'ubuntu/trusty64' | |
hostname = 'emberclibox' | |
domain = 'example.com' | |
ip = '192.168.42.42' | |
ram = '1024' | |
$rootScript = <<SCRIPT |
- OS: NixOS (tough learning curve; recommend using Arch Linux)
- Window Manager: i3
- Menu Bar: i3bar
- Wifi: my wifi- commands (depends on
wpa_supplicant
anddhcpcd
) - Custom keyboard shortcuts: xbindkeys
- Email: neomutt + getmail + msmtp
- Terminal/Editor Font: Ubuntu Mono
- Terminal Emulator: termite
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
# See README |
aka what i did to get from nothing to done.
note: these are designed to be primarily a re-install guide for myself (writing things down helps me memorize the knowledge), as such don't take any of this on blind faith - some areas are well tested and the docs are very robust, some items, less so). YMMV