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
| AKIARZ5DU3OEKO7JMFFP |
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
| AIzaSyAa0kJW3FV2xlEFGxTXVqrcbvHRzzNI09Q |
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 net = require("net"); | |
| function makeBuf(server, port) { | |
| var bufSize = 7 + server.length; | |
| var buffer = new Buffer(bufSize); | |
| buffer.writeUInt8(bufSize - 1, 0); | |
| buffer.writeUInt8(0, 1); | |
| buffer.writeUInt8(5, 2); | |
| buffer.writeUInt8(server.length, 3); |
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
| { | |
| "Name": "webmhost", | |
| "RequestType": "POST", | |
| "RequestURL": "http://webm.host/working/upload.php", | |
| "FileFormName": "fileToUpload", | |
| "Arguments": { | |
| "theTitle": "%unix", | |
| "submit": "Upload" | |
| }, | |
| "ResponseType": "Text", |
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
| /* | |
| colpick Color Picker / colpick.com | |
| */ | |
| /*Main container*/ | |
| .colpick { | |
| position: fixed; | |
| width: 346px; | |
| height: 170px; | |
| overflow: hidden; |
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 karmatroll(b) { | |
| var datos = { | |
| key: global_data.user_key, | |
| user: $($("a[obj=user]")[0]).attr("objid") | |
| } | |
| if (b == 1){ | |
| datos["bloqueado"] = 1; | |
| } | |
| $.ajax({ | |
| url: '/ajax/user/block', |
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 request = require("request"); | |
| //script by OverJT, based on https://github.com/devsseb/apinator | |
| var Akinator = function() { | |
| this.url = 'http://api-es2.akinator.com/ws/'; | |
| this.session = null; | |
| this.signature = null; | |
| this.onAsk = null; | |
| this.step = 0; | |
| } |