Skip to content

Instantly share code, notes, and snippets.

@overflowy
overflowy / hn-article-search.user.js
Last active April 17, 2026 19:22
HN Article Search
// ==UserScript==
// @name HN Article Search
// @namespace http://tampermonkey.net/
// @version 1.0.0
// @match *://*/*
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_openInTab
// @grant GM_xmlhttpRequest
// @connect hn.algolia.com
@overflowy
overflowy / obsidian-icons.css
Last active March 23, 2026 11:36
Snippet for adding folder and notes icons to Obsidian files container
body {
--icon-size: 18px;
--icon-gap: 8px;
--title-padding-left: calc(var(--icon-size) + var(--icon-gap));
--nav-folder-icon-color: currentColor;
--nav-file-icon-color: currentColor;
/* Use Obsidian accent color for the icons
--nav-folder-icon-color: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
@overflowy
overflowy / hn-plus.user.js
Last active April 19, 2026 00:35
Hacker News Plus
// ==UserScript==
// @name HN +
// @match https://*.ycombinator.com/*
// @grant none
// @version 2.5.0
// @author overflowy@riseup.net
// @description Adds favicons to HN links, navigation menu for less known sections, and injects the about section into HN's native user hovercard
// @inject-into content
// ==/UserScript==