document.cookie = 'safemode=0; expires=Sun, 13 Oct 2019 00:00:00 UTC; path=/';
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
| <?php | |
| $content = ' | |
| Text with newlines, possible XSS attacks and URLs. | |
| <script type="text/javascript">alert("this could be an XSS attack.");</script> | |
| The URL to my github page is https://github.com/geon. | |
| '; |
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
| "use strict"; | |
| var LocalBuffered = {}; | |
| LocalBuffered.Model = Backbone.Model.extend({ | |
| constructor: function () { | |
| Backbone.Model.apply(this, arguments); |
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
| const std = @import("std"); | |
| const Buffer = std.ArrayList(u8); | |
| const source = [_]u8{ 1, 2, 3, 4, 5 }; | |
| const expectedOrder = [_]u8{ 1, 2, 3, 4, 5, 5, 4, 3, 2, 1 }; | |
| fn recursive(read: []const u8, write: *Buffer) !void { | |
| if (read.len > 0) { | |
| try write.append(read[0]); |
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
| import { createServer, Socket } from "net"; | |
| // Promisified socket.write(). | |
| const write = (socket: Socket, data: Buffer | string) => | |
| new Promise((resolve, reject) => | |
| socket.write(data as Buffer, (error: Error | undefined) => { | |
| if (error) { | |
| reject(); | |
| } else { | |
| resolve(); |
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
| // Copy and paste into console on the following URL: | |
| // https://steamcommunity.com/my/inventoryhistory/?app%5B%5D=730 | |
| (async _ => { | |
| const loadMoreBtnSelector = '#load_more_button:not([style*="display:none"])'; | |
| let pagesLoaded = 0; | |
| console.time('loadall'); | |
| console.log(g_historyCursor); | |
| while (g_historyCursor !== null) { | |
| pagesLoaded++; | |
| await waitForSelector(loadMoreBtnSelector); |
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
| #!/usr/bin/python3 | |
| from plexapi.server import PlexServer | |
| import sys | |
| import json | |
| import requests | |
| import time | |
| import socket | |
| # please make sure to install PlexAPI via pip, "pip install PlexAPI" |
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
| // ==UserScript== | |
| // @name Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser) | |
| // @namespace Hcaptcha Solver | |
| // @version 10.0 | |
| // @description Hcaptcha Solver in Browser | Automatically solves Hcaptcha in browser | |
| // @author Md ubeadulla | |
| // @match https://*.hcaptcha.com/*hcaptcha-challenge* | |
| // @match https://*.hcaptcha.com/*checkbox* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_setValue |
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
| // ==UserScript== | |
| // @name Recaptcha Solver (Automatically solves Recaptcha in browser) | |
| // @namespace Recaptcha Solver | |
| // @version 2.1 | |
| // @description Recaptcha Solver in Browser | Automatically solves Recaptcha in browser | |
| // @author engageub | |
| // @match *://*/recaptcha/* | |
| // @connect engageub.pythonanywhere.com | |
| // @connect engageub1.pythonanywhere.com | |
| // @grant GM_xmlhttpRequest |
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
| // ==UserScript== | |
| // @name Hcaptcha Solver with Browser Trainer(Automatically solves Hcaptcha in browser) | |
| // @namespace Hcaptcha Solver | |
| // @version 10.0 | |
| // @description Hcaptcha Solver in Browser | Automatically solves Hcaptcha in browser | |
| // @match https://*.hcaptcha.com/*hcaptcha-challenge* | |
| // @match https://*.hcaptcha.com/*checkbox* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_setValue | |
| // @grant GM_getValue |