Skip to content

Instantly share code, notes, and snippets.

@listlessbird
listlessbird / neetcode-ctrl-k-search.user.js
Last active April 1, 2026 12:17
NeetCode Ctrl+K Search userscript
// ==UserScript==
// @name NeetCode Ctrl+K Search
// @author listlessbird
// @namespace https://neetcode.io/
// @version 0.0.1
// @description Adds a reliable Ctrl+K / Cmd+K search for the NeetCode All catalog beside the timer.
// @match https://neetcode.io/problems/*
// @grant none
// @run-at document-idle
// ==/UserScript==
@listlessbird
listlessbird / qbit_script.ps1
Created January 1, 2024 19:56
try to open qbit on a particular ssid
# https://stackoverflow.com/questions/58718191/is-there-a-way-to-display-a-pop-up-message-box-in-powershell-that-is-compatible
function Show-MessageBox {
[CmdletBinding(PositionalBinding=$false)]
param(
[Parameter(Mandatory, Position=0)]
[string] $Message,
[Parameter(Position=1)]
[string] $Title,
[Parameter(Position=2)]
[ValidateSet('OK', 'OKCancel', 'AbortRetryIgnore', 'YesNoCancel', 'YesNo', 'RetryCancel')]