This file contains hidden or 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 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== |
This file contains hidden or 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
| # 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')] |