Skip to content

Instantly share code, notes, and snippets.

@TheLouisHong
TheLouisHong / ChatGPT Hide Old Conversation.user.js
Last active February 18, 2025 06:54
ChatGPT Hide Old Conversations For Page Performance (limit visible chats to a certain number)
// ==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() {
@TheLouisHong
TheLouisHong / RuneScape Font Theme For Discord.css
Last active March 2, 2025 02:39
RuneScape Font Theme For Discord
/* 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
*/
@TheLouisHong
TheLouisHong / osrs_themed_youtube_stylesheet.user.js
Last active January 27, 2025 09:28
YouTube OldSchool RuneScape Theme Stylesheet
// ==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() {
@TheLouisHong
TheLouisHong / RuneScape Font.user.js
Last active February 27, 2025 11:11
RuneScape Font Changer For All Website
// ==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==
@TheLouisHong
TheLouisHong / WSAPI5.cs
Created April 24, 2024 05:58
A C# Runtime for WSAPI5, streams PCM byte array to stdout, reads commands using stdin
using System;
using System.IO;
using System.Speech;
using System.Speech.Synthesis;
using System.Speech.AudioFormat;
public class WSAPI5
{
public static void Main() {
@TheLouisHong
TheLouisHong / speech.h
Created April 22, 2024 05:51
Windows Speech API 4 speech.h
/************************************************************************
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
@TheLouisHong
TheLouisHong / sapi.h
Created April 22, 2024 05:47
Windows Speech API 5.1 SDK sapi.h
#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
@TheLouisHong
TheLouisHong / suno.ai-widen.user.js
Last active April 6, 2024 01:17
Suno.ai Widen UI
// ==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==
@TheLouisHong
TheLouisHong / oracle-docs-styler.user.js
Last active April 12, 2024 07:40
TamperMonkey - Oracle Docs Styler
// ==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/*
@TheLouisHong
TheLouisHong / java_function_object_signatures.txt
Created April 3, 2024 13:06
Java: Table of Function Objects Signatures (Callable, Runnable, Function, ...)
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