See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| // ==UserScript== | |
| // @name Twitch HTML5 player | |
| // @namespace Revolution | |
| // @include http://*.twitch.tv/* | |
| // @exclude http://api.twitch.tv/* | |
| // @exclude http://tmi.twitch.tv/* | |
| // @exclude http://chatdepot.twitch.tv/* | |
| // @require https://gist.githubusercontent.com/BrockA/2625891/raw/9c97aa67ff9c5d56be34a55ad6c18a314e5eb548/waitForKeyElements.js | |
| // @version 1 | |
| // @grant none |
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
| #!/bin/bash | |
| # btrfs-undelete | |
| # Copyright (C) 2013 Jörg Walter <info@syntax-k.de> | |
| # This program is free software; you can redistribute it and/or modify it under | |
| # the term of the GNU General Public License as published by the Free Software | |
| # Foundation; either version 2 of the License, or any later version. | |
| if [ ! -b "$1" -o -z "$2" -o -z "$3" ]; then | |
| echo "Usage: $0 <dev> <file/dir> <dest>" 1>&2 | |
| echo |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-git.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <div></div><div><div></div><div></div><div></div><div></div><div></div><div></div><div class='fff'></div></div><div></div><div></div><div></div> | |
| <script id="jsbin-javascript"> |
| #!/bin/bash | |
| version=0.1.4 | |
| versionDate="2014-09-02" | |
| function showHelp() { | |
| echo "subtlemark - add subtle watermarks to images | |
| Usage: | |
| ---------------------------------------- |
| $.ajax({ url: '//www.google.com/jsapi', dataType: 'script' }).done(function () { | |
| var addr = google.loader.ClientLocation.address; | |
| console.log(addr); | |
| }); | |
| $.getJSON('//freegeoip.net/json/', function(location) { | |
| console.log(location); | |
| }); |
| #!/bin/bash | |
| file=/home/$SUDO_USER/.local/share/userpass.list | |
| function showHelp { | |
| version=0.0.2 | |
| versionDate="2014-06-24" | |
| echo "$0 - manage passwords | |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>App</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <script charset="utf-8" src="js/app.js"></script> | |
| <link rel="stylesheet" href="css/app.css" /> | |
| </head> | |
| <body> |