I hereby claim:
- I am dandean on github.
- I am dandean (https://keybase.io/dandean) on keybase.
- I have a public key whose fingerprint is A6CD 88BF 7F39 C9A9 9C44 C8F9 F8B9 E337 82CB B1A8
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| var x = 5, y = 10; | |
| console.log(`${x} + ${y} = ${ x + y}`); | |
| // 5 + 10 = 15 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>hello-backbonejs</title> | |
| </head> | |
| <body> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.js"></script> | |
| <script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.6.0/underscore.js"></script> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.1.2/backbone.js"></script> |
| if (foo) | |
| bar() | |
| else | |
| baz() | |
| function deleteNextTweet() { | |
| var deleteButton = $('.js-stream-item > div:not(.retweeted) a.js-action-del')[0]; | |
| if (deleteButton) { | |
| deleteButton.click(); | |
| setTimeout(confirmDeleteTweet, 1000); | |
| } else { | |
| console.log('no more tweets'); | |
| } | |
| } |
| @mixin box-sizing(which) { | |
| -moz-box-sizing: which; | |
| box-sizing: which; | |
| } | |
| .thing { | |
| @include box-sizing; | |
| } |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| uglify: { | |
| options: { | |
| banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n', | |
| ... | |
| }, | |
| dist: { | |
| files: { |
| /** | |
| * CSS Puzzle: Reverse the z-order of the <li>s without setting a separate z-index on each one in a way that works in IE9 and up | |
| */ | |
| ul { | |
| direction: rtl; | |
| display: inline-block; | |
| margin-left: 82px; | |
| margin-top: 8px; | |
| } |
| /* | |
| * This file is for this thing. | |
| * | |
| * This should should be used in this way. This should should be used in this | |
| * way. This should should be used in this way. This should should be used in | |
| * this way. This should should be used in this way. | |
| * | |
| *****************************************************************************/ | |