Based on https://www.reddit.com/r/datasets/comments/3bxlg7/i_have_every_publicly_available_reddit_comment/
Generated using the script attached to this gist
Based on https://www.reddit.com/r/datasets/comments/3bxlg7/i_have_every_publicly_available_reddit_comment/
Generated using the script attached to this gist
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| body { | |
| font: 10px sans-serif; | |
| } | |
| .chord { | |
| fill-opacity: .67; |
| var user; | |
| var balance; | |
| getCurrentUser() | |
| .then(function (currentUser) { | |
| user = currentUser; | |
| return getBalance(user); | |
| }) | |
| .then(function (userBalance) { | |
| balance = userBalance; |
| [diff] | |
| tool = kdiff3 | |
| [difftool "kdiff3"] | |
| cmd = 'c:\\Program Files\\kdiff3\\kdiff3' $LOCAL $REMOTE | |
| keepBackup = false | |
| trustExitCode = true | |
| keepTemporaries = false | |
| [merge] | |
| tool = kdiff3 | |
| [mergetool "kdiff3"] |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <div style="height: 1584018px;"> | |
| Inspect my layout | |
| </div> | |
| </body> | |
| </html> |
| module.exports = Math.random(); |
| var posts = new wp.api.collections.Posts(); | |
| posts.fetch().done(function() { | |
| var post = posts.first().attributes; | |
| // ... | |
| }); |
| [alias] | |
| email-guess = !. ~/.git-scripts/email-guess.sh |
| var paths = require('./paths'); | |
| gulp.task('lint', function() { | |
| gulp.src(paths.app.concat(paths.test)) | |
| .pipe(lint()); | |
| }); | |
| gulp.task('minify', function() { | |
| gulp.src(paths.app) | |
| .pipe(minify()); |
| /* | |
| Repeating Web client | |
| This sketch connects to a a web server and makes a request | |
| using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or | |
| the Adafruit Ethernet shield, either one will work, as long as it's got | |
| a Wiznet Ethernet module on board. | |
| This example uses DNS, by assigning the Ethernet client with a MAC address, | |
| IP address, and DNS address. |