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
| $(document).on("mouseenter", ".plot .label", | |
| function (event) { | |
| $(this).animate({ opacity: 0 }, | |
| function () { | |
| $(this).addClass('hidden-label'); | |
| } | |
| ).delay(5000).animate({ opacity: 0.85 }, | |
| function () { | |
| $(this).removeClass('hidden-label'); | |
| } |
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
| collection.find().observe({ | |
| removed: function (oldDoc) { | |
| // delete oldDoc._id from S3 | |
| } | |
| }); |
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
| #!/bin/bash | |
| # let's start fresh | |
| rm -rf .demeteorized | |
| rm /tmp/newfile | |
| # run + cd | |
| demeteorizer | |
| cd .demeteorized |
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
| <html> | |
| <head> | |
| <!-- Your stuff --> | |
| <!-- Include Sidr bundled CSS theme --> | |
| <link rel="stylesheet" href="stylesheets/jquery.sidr.dark.css"> | |
| </head> | |
| <body onload="init()"> | |
NewerOlder