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
| [ | |
| { | |
| "name": "Ruby: Debug Current File", | |
| "type": "ruby", | |
| "request": "launch", | |
| "program": "${file}", | |
| "cwd": "${workspaceFolder}", | |
| "useBundler": true, | |
| "pathToBundler": "/usr/local/bin/bundle", | |
| "pathToRDebugIDE": "rdebug-ide", |
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
| /* | |
| This is a productivity enhancer plus some quality-of-life features that takes care of tedious tasks for you, saving time for what matters. Click on the tray icon to view hotkey info. | |
| You'll find an embedded INI at the bottom of this script. However, you have to follow these two steps before you can run this script: | |
| Download and unzip archive in `Lib` folder: https://github.com/thqby/winrt.ahk | |
| Download raw file into `Lib` folder: https://github.com/Descolada/UIA-v2/blob/main/Lib/UIA.ahk | |
| ********** EIGHT-HOTKEY REMOTE ********** | |
| Multi- and single-function hotkeys. | |
| TIP: change the `Run` setting to `Maximize` in the properties wnd of the Paint shortcut (b/c the snip feature can open Paint in a small wnd, which will be remembered by the OS). | |
| And go to `Settings > System > Focus assist` to turn off all `Automatic rules`, so that TrayTip notification banners can also be shown on the desktop wnd for example. |
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
| # Configure the public AdGuard DNS server with DoH (Encrypted) programatically in W11. | |
| # https://adguard-dns.io/en/public-dns.html#:~:text=Configure%20AdGuard%20DNS%20manually | |
| # Define AdGuard DNS servers and their DoH template. | |
| $servers4 = @( | |
| # IPv4 default servers: block ads and trackers. | |
| @{ address = "94.140.14.14"; template = "https://dns.adguard-dns.com/dns-query" }, | |
| @{ address = "94.140.15.15"; template = "https://dns.adguard-dns.com/dns-query" } | |
| ) |
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
| [ | |
| // Terminal | |
| { | |
| "context": "Workspace", | |
| "bindings": { | |
| "ctrl-/": "workspace::ToggleBottomDock" | |
| } | |
| }, | |
| // Window's navigation | |
| { |
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 dark-mode | |
| // @match *://*/* | |
| // @grant none | |
| // @version 1.1 | |
| // @author cjb | |
| // @run-at document-start | |
| // ==/UserScript== | |
| const adjustColors = () => { |
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
| #!/bin/bash | |
| # Colors | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| NO_COLOR='\033[0m' | |
| BLUE='\033[0;34m' | |
| YELLOW='\033[0;33m' | |
| NO_COLOR='\033[0m' |
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
| #!/bin/bash | |
| # SteamOS Recovery Downloader and Flasher | |
| # script by ryanrudolf | |
| # https://github.com/ryanrudolfoba | |
| # https://youtube.com/@10minutesteamdeckgamer | |
| # | |
| # script will create the directory - ~/SteamOS-Recovery-Downloader and automatically download the latest SteamOS Recovery Image. | |
| # script will perform a md5 check to make sure that download is not corrupted and finally flash the image to the USB device. | |
| # if there are multiple USB devices, the script will exit immediately. Plug in a single USB device that you want to flash and re-run the script. | |
| # |
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
| // Use like this: node --import logger.js yourapp.js | |
| import path from 'path'; | |
| const { log } = console; | |
| [`debug`, `log`, `warn`, `error`, `table`, `dir`].forEach((methodName) => { | |
| const originalLoggingMethod = console[methodName]; | |
| console[methodName] = (...args) => { | |
| const originalPrepareStackTrace = Error.prepareStackTrace; | |
| Error.prepareStackTrace = (_, stack) => stack; |
This Autohotkey script is intended to dim the taskbar when it is not needed in order to reduce the burn-in effect on OLED displays.
This script originally came from: https://superuser.com/a/1691664
Original script from the link above:
NewerOlder