I hereby claim:
- I am dybskiy on github.
- I am dybskiy (https://keybase.io/dybskiy) on keybase.
- I have a public key whose fingerprint is 43B2 CFF6 F446 5C9C 938E AC96 93CA 0292 8A89 E262
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discussions around concrete examples, not handy-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
{ | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"caret_style": "smooth", | |
"close_windows_when_empty": true, | |
"color_scheme": "Packages/Theme - Aqua/Color Schemes/Tomorrow Night Aqua.tmTheme", | |
"detect_indentation": true, | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"draw_centered": false, | |
"draw_indent_guides": true, |
// Ernest Hemingway | |
function fibonacci(size) { | |
var first = 0, second = 1, next, count = 2, result = [first, second]; | |
if(size < 2) | |
return "the request was made but it was not good" | |
while(count++ < size) { |
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2287773/hack.sh | sh | |
# |
A git choose-your-own-adventure!
This document is an attempt to be a fairly comprehensive guide to recovering from what you did not mean to do when using git. It isn't that git is so complicated that you need a large document to take care or your particular problem, it is more that the set of things that you might have done is so large that different techniques are needed depending on exactly what you have done and what you want to have happen.