- Everything: https://www.voidtools.com/downloads/
- Everything Toolbar: https://github.com/srwi/EverythingToolbar
- Traffic Monitor: https://github.com/zhongyang219/TrafficMonitor
- Clink (CMD Integration): https://github.com/chrisant996/clink
- Windhawk (Top Taskbar Mod): https://windhawk.net/mods/taskbar-on-top
- Battery Care: https://batterycare.net/
- Tixati (Torrent Client): https://tixati.com/
- Text Grab: https://github.com/TheJoeFin/Text-Grab
- LocalSend: https://localsend.org/
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
| // Types for the result object with discriminated union | |
| type Success<T> = { | |
| data: T; | |
| error: null; | |
| }; | |
| type Failure<E> = { | |
| data: null; | |
| error: E; | |
| }; |
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
| /** | |
| * Represents possible types for path parameters in URLs | |
| */ | |
| type PathParam = string | number; | |
| /** | |
| * Represents possible types for query parameter values | |
| */ | |
| type QueryValue = string | number | boolean | (string | number | boolean)[]; |
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
| // import topicIds from "./youtube-topics.json" with { type: "json" }; | |
| // Refer: https://developers.google.com/youtube/v3/docs/search/list | |
| const topicIds = [ | |
| { | |
| id: "/m/04rlf", | |
| topic: "Music", | |
| parent: true, | |
| }, | |
| { |