Club 15CC

Reset ~ 15CC Code

Task Code
Git Clear the Index of Stage Files »
git reset HEAD
CSS CSS3 Cross Browser User-Select Reset » This snippet disables content selection on all...
 
/** The example below relies on <a href="http://the-echoplex.net/csscrush/" target="_blank">CssCrush</a> to get all the cross-browser extensions. If you don’t use it then just add lines for the browser prefixes `-moz-`, `-khtml-`, `-webkit-`, `-o-` **/

* { user-select: none; -moz-user-select: text !important; } 
NAV, NAV * { -moz-user-select: none !important;} 
ARTICLE H1, ARTICLE H2, ARTICLE H3, ARTICLE H4, ARTICLE H5, ARTICLE H6, ASIDE H1, ASIDE H2, ARTICLE H3, ASIDE H4, ASIDE H5, ASIDE H6, ARTICLE H1 A, ARTICLE H2 A, ARTICLE H3 A, ARTICLE H4 A, ARTICLE H5 A, ARTICLE H6 A, ASIDE H1 A, ASIDE H2 A, ASIDE H3 A, ASIDE H4 A, ASIDE H5 A, ASIDE H6 A, ARTICLE P, ARTICLE P A, ARTICLE SPAN, ARTICLE STRONG, ARTICLE EM, ASIDE P, ASIDE P A, ASIDE SPAN, ASIDE STRONG, ASIDE EM, ARTICLE PRE, ARTICLE CODE, ASIDE PRE, ASIDE CODE, ARTICLE P + LI, ARTICLE P + LI A, ASIDE P + LI, ASIDE P + LI A, ARTICLE BLOCKQUOTE, ARTICLE BLOCKQUOTE A, ASIDE BLOCKQUOTE, ASIDE BLOCKQUOTE A, FIGCAPTION, FIGCAPTION A, TIME, TIME SPAN, TIME A, INPUT[type="text"], TEXTAREA { user-select: text; } 
Git Find a dangling commit and reset current branch to it » Useful if you want to undo a `git reset --hard...
$ git fsck --lost-found
dangling commit e7e3a2e82abd4f7160618b7f60b9e141b69fb153

# or...
$ git reflog
fdc6198 HEAD@{0}: cherry-pick: Adds additional DEBUG macros...
ab67f92 HEAD@{1}: checkout: moving from ARC-version to master
e7e3a2e HEAD@{2}: an undone commit i want to get back

# then
$ git reset --hard e7e3a2e