Skip to content

Instantly share code, notes, and snippets.

View aethercowboy's full-sized avatar

Jacob P. Silvia aethercowboy

View GitHub Profile
@aethercowboy
aethercowboy / lt-suggestion-hider.js
Last active February 21, 2025 15:17
LibraryThing Suggestion Hider Userscript
// ==UserScript==
// @name LibraryThing Suggestion Hider
// @namespace https://whatcharacter.com
// @version 1.1
// @description Toggle visibility of checkmarked books
// @author Jacob P. Silvia ([email protected])
// @match https://www.librarything.com/work/*/recommendations/*
// @match https://www.librarything.com/work/*/recommendations
// @grant none
// ==/UserScript==
@aethercowboy
aethercowboy / ExampleGame.cs
Last active April 7, 2025 11:42
Monogame with IHostedService DI
public class ExampleGame : Game, IGame
{
public Game Game => this;
private readonly ISomeDependency _someDependency;
public ExampleGame(ISomeDependency someDependency)
{
_someDependency = someDependency;
}