Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| function ilias --description 'cli companion for ilias vid downloader userscript' --argument b64 | |
| base64 -d (echo "$b64" | psub) | aria2c --file-allocation=none -R --http-accept-gzip=true --auto-file-renaming=false -x16 -j30 --input-file - | |
| end |
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
| local bailout = 15 | |
| turtle.refuel() | |
| while(bailout > 0) | |
| do | |
| if (turtle.detect()) then | |
| bailout = 15 | |
| turtle.dig() | |
| else | |
| bailout = bailout - 1 |
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
| local bailout = 15 | |
| #comment | |
| turtle.refuel() | |
| while(bailout > 0) | |
| do | |
| if (turtle.detect()) then | |
| bailout = 15 | |
| turtle.digUp() | |
| turtle.dig() | |
| turtle.digDown() |
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
| // running only the constructor on 'this' | |
| _2 = function() { | |
| this._2_ = true; | |
| } | |
| _2.prototype.p_2_ = true; | |
| _1 = function() { | |
| _2.call(this); | |
| this._1_ = 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
| var noble = require('noble'); | |
| var tree = {}; | |
| var OLLIEUUID = "ef66143e996d"; | |
| console.log("trying to connect to the ollie with UUID: ", OLLIEUUID); | |
| setTimeout(function(){ | |
| console.log(tree); | |
| process.exit(); |