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
| // Probably easier to just change m_Enabled to 0 in the .asset file, but this also works. | |
| // Depends on https://github.com/BossKoopa/BWSR | |
| #include "InlineHook.h" | |
| #include <cstdio> | |
| #include <cstdint> | |
| #include <cstring> | |
| #include <string> | |
| #include <vector> | |
| #include <mach/mach.h> |
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 DeSchimmel | |
| // @version 2025-03-02 | |
| // @description View blocked posts on Bluesky | |
| // @author Antonius Martinus | |
| // @match https://bsky.app/profile/* | |
| // @match https://bsky.app/profile/*/post/* | |
| // @grant none | |
| // ==/UserScript== |
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
| UIView *view = // The root view. | |
| CGRect screenBounds = [[UIScreen mainScreen] bounds]; | |
| UITextView *textView = [[UITextView alloc] initWithFrame:screenBounds]; | |
| textView.text = @"Test"; | |
| textView.textColor = [UIColor blackColor]; | |
| textView.font = [UIFont systemFontOfSize:0.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
| // ==UserScript== | |
| // @name ApplauseBlocker YT | |
| // @version 0.1 | |
| // @description Turn off sound when applause is being detected | |
| // @author You | |
| // @match https://www.youtube.com/watch?v=* | |
| // @grant none | |
| // ==/UserScript== | |
| let text, parser, xmlDoc, playTime = 0, applauseTimestamps = []; |
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 Beta Blazor | |
| // @match http://www.beta.blazor.nl/ | |
| // @description jQuery test script | |
| // @include * | |
| // ==/UserScript== | |
| (function () { | |
| var test = "<script src='https://cdnjs.cloudflare.com/ajax/libs/url-search-params/1.1.0/url-search-params.js'></script>"; | |
| document.body.insertAdjacentHTML('afterbegin', '<script src="https://cdnjs.cloudflare.com/ajax/libs/usertiming/0.1.7/usertiming.min.js"></script><script>try { if (new URLSearchParams("q=%2B").get("q") !== "+") throw {}; }catch (error) {URLSearchParams = void 0;document.write(test); console.log("hi")}'); |
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 Beta Blazor | |
| // @match http://www.beta.blazor.nl/ | |
| // @description jQuery test script | |
| // @include * | |
| // ==/UserScript== | |
| (function () { | |
| var scriptElement = document.createElement( "script" ); | |
| scriptElement.type = "text/javascript"; |
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
| // Int64.js | |
| // | |
| // Copyright (c) 2012 Robert Kieffer | |
| // MIT License - http://opensource.org/licenses/mit-license.php | |
| /** | |
| * Support for handling 64-bit int numbers in Javascript (node.js) | |
| * | |
| * JS Numbers are IEEE-754 binary double-precision floats, which limits the | |
| * range of values that can be represented with integer precision to: |