This file contains 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 ChatGPT Hide Old Conversation | |
// @version 2025-02-18 | |
// @author Louis Hong | |
// @match *://*.chatgpt.com/c/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=chatgpt.com | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains 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
/* BetterDiscord RuneScape Font Theme by Dawncore*/ | |
/* | |
Required Font Installs https://github.com/RuneStar/fonts | |
RUNESCAPE_0.TTF | |
RUNESCAPE_BOLD_0.TTF | |
RUNESCAPE-PLAIN-11.TTF | |
RUNESCAPE-PLAIN-12.TTF | |
RUNESCAPE-BOLD-12.TTF | |
*/ |
This file contains 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 OSRS Themed YouTube Stylesheet | |
// @version 1.0 | |
// @author Dawncore/Louis | |
// @description Injects RuneScape fonts with size rounding on every webpage | |
// @match *://*.youtube.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { |
This file contains 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 RuneScape Font 16px | |
// @version 1.1 | |
// @author Dawncore/Louis Hong | |
// @description Injects RuneScape fonts and dynamically adjusts text-shadow based on page color | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=runescape.com | |
// @match *://*/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains 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
using System; | |
using System.IO; | |
using System.Speech; | |
using System.Speech.Synthesis; | |
using System.Speech.AudioFormat; | |
public class WSAPI5 | |
{ | |
public static void Main() { |
This file contains 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
/************************************************************************ | |
Speech.H - Header file to use the Microsoft Speech APIs. | |
Copyright 1994 -1998 by Microsoft corporation.All rights reserved. | |
*/ | |
#ifndef _SPEECH_ | |
#define _SPEECH_ | |
// Disable the warning for zero-length arrays in structures |
This file contains 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
#pragma warning( disable: 4049 ) /* more than 64k source lines */ | |
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ | |
/* File created by MIDL compiler version 6.00.0347 */ | |
/* Compiler settings for sapi.idl: | |
Oicf, W1, Zp8, env=Win32 (32b run) | |
protocol : dce , ms_ext, c_ext |
This file contains 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 Suno.ai Widen UI | |
// @version 2024-04-05 | |
// @description Widens suno.ai's song generation panel | |
// @author Louis Hong | |
// @match *://app.suno.ai/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=suno.ai | |
// @grant GM_addStyle | |
// ==/UserScript== |
This file contains 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 Oracle Docs Styler | |
// @version 2024-04-03 | |
// @description Styles Oracle Docs | |
// @author Louis Hong | |
// @icon https://docs.oracle.com/favicon.ico | |
// @match *://docs.oracle.com/* | |
// @match *://google.github.io/*/api-docs/*/javadoc/* |
This file contains 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
Supplier () -> x | |
Consumer x -> () | |
BiConsumer x, y -> () | |
Callable () -> x throws ex | |
Runnable () -> () | |
Function x -> y | |
BiFunction x,y -> z | |
Predicate x -> boolean | |
UnaryOperator x1 -> x2 | |
BinaryOperator x1,x2 -> x3 |
NewerOlder