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
/* | |
Live.js - One script closer to Designing in the Browser | |
Written for Handcraft.com by Martin Kool (@mrtnkl). | |
Version 4. | |
Recent change: Made stylesheet and mimetype checks case insensitive. | |
http://livejs.com | |
http://livejs.com/license (MIT) | |
@livejs |
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
- (#baby-girl || #👶-👧) -> http://daniel.team/life | |
-OR- http://babybrooke.net | |
- (#baby-bear || #👶-🐻) -> http://daniel.team/life | |
-OR- http://sawyerrae.com | |
- (#funny || #😅) -> http://daniel.team/life | |
-OR- http://easierbycode.com | |
- #easierbycode -> http://daniel.team/code | |
-OR- http://followdaniel.com | |
- #teach-dc-code -> http://daniel.team/hacks | |
-OR- http://deftonescodemonkey.com |
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
if (DRJ.lifeChoices == RWH.lifeChoices) and DRJ.thanksGodEveryday then ['true happiness', "a <future>#{<strong>HAPPY</strong>}family</future>"] == true |
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
<script src="https://gist.github.com/easierbycode/f2cc82d553ecd86a8780.js"></script> |
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
[].forEach.call(document.querySelectorAll('img'), function (img) { if (/\.gif/i.test(img.src)) img.remove() }) |
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
cats = ['😸', '😼', '🐱']; | |
// access the first 3 items of array | |
cat1 = cats[0]; | |
cat2 = cats[1]; | |
cat3 = cats[2]; | |
// destructure the array (ES2015) | |
var [c1, c2, c3] = cats; | |
console.log( c1, c2, c3 ); |
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
Current location: | |
Phoenix | |
Will visit: | |
San Diego, San Francisco, Denver and Albuquerque | |
Roles: | |
Web Developer | |
Education: | |
Cisco Academy and University of Phoenix | |
Worked at: | |
NavSeeker LLC, The Evogi Group Inc. |
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
▓▒░ <code> 🐵 </code>.club && 3viL&&h0tÉ\//-\@<code>uMNñ◬☨i.com == trueHappinessForever && repeats == Infinity ░▒▓ |
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
# -*- coding: utf-8 -*- | |
cat = { | |
'name' : 'Tom', | |
'weight' : 9.5, | |
'hungry' : True, | |
'photo' : '▓▒░({ =^⦿◬⦿^= })░▒▓', | |
'emoji' : '😸' | |
} |
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
<style id="jsbin-css"> | |
/* | |
* Style tweaks | |
* -------------------------------------------------- | |
*/ | |
html, | |
body { | |
overflow-x: hidden; /* Prevent scroll on narrow devices */ | |
} | |
body { |