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
| ;@Ahk2Exe-ConsoleApp | |
| #Requires AutoHotkey v2 | |
| #SingleInstance Off | |
| Persistent(true) | |
| FileEncoding('UTF-8') | |
| SetWorkingDir(A_InitialWorkingDir) | |
| parent := ProcessGetName(ProcessGetParent()) |
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 Twitch Chatters Count | |
| // @author Flipeador | |
| // @version 1.0.5 | |
| // @icon https://www.google.com/s2/favicons?sz=128&domain=twitch.tv | |
| // @homepageURL https://gist.github.com/flipeador/7cdead05b6f00b34b743dbde071db34d | |
| // @downloadURL https://gist.githubusercontent.com/flipeador/7cdead05b6f00b34b743dbde071db34d/raw/twitch-chatter-count.js | |
| // @require https://gist.githubusercontent.com/flipeador/577200d2ece50b4e0906d1ff589f1935/raw/graphql-tag.js | |
| // @match *://www.twitch.tv/* | |
| // @run-at document-idle |
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 Bluesky Translate | |
| // @author Flipeador | |
| // @version 1.0.1 | |
| // @icon https://www.google.com/s2/favicons?sz=128&domain=bsky.app | |
| // @homepageURL https://gist.github.com/flipeador/56ca9b5798987d175f0a5e9bc97f6977 | |
| // @downloadURL https://gist.github.com/flipeador/56ca9b5798987d175f0a5e9bc97f6977/raw/bluesky-translate.js | |
| // @match https://bsky.app/* | |
| // @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
| @echo off | |
| powercfg.exe /h /size 100 | |
| powercfg.exe /h /type full | |
| control.exe /name Microsoft.PowerOptions /page pageGlobalSettings | |
| pause |
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
| #Requires AutoHotkey v2 | |
| key := "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" | |
| RegWrite(Mod(A_Hour + 23, 24), 'REG_DWORD', key, 'ActiveHoursStart') | |
| RegWrite(Mod(A_Hour + 11, 24), 'REG_DWORD', key, 'ActiveHoursEnd') | |
| RegWrite(2, 'REG_DWORD', key, 'SmartActiveHoursState') |
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" } | |
| ) |
NewerOlder