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-SetFileVersion 1.0.4.0 | |
| ;@Ahk2Exe-SetProductName Robocopy backup tool | |
| ;@Ahk2Exe-SetCopyright https://gist.github.com/flipeador/29ac92f277f4c01e07659f17f8c0caa5 | |
| #Requires AutoHotkey v2 | |
| #SingleInstance Off | |
| #NoTrayIcon | |
| TITLE := 'Robocopy backup tool' |
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
| /** | |
| * JavaScript UUIDv7 (Time-Sortable Identifier) for NodeJS and the browser. | |
| * https://gist.github.com/flipeador/878e735b9f6432ff7006975627104693 | |
| * | |
| * | |
| * IMPORTANT: | |
| * Quickly made with the help of ChatGPT, not suitable for use in production. | |
| * This implementation may not be fully compliant with the UUIDv7 specification. | |
| */ |
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
| /** | |
| * One-time password implementation for NodeJS and the browser. | |
| * https://gist.github.com/flipeador/d70a8a08b9600116cc102b6f63e8519e | |
| * | |
| * Special thanks to ChatGPT for its incredible skills. | |
| */ | |
| const CHARS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'; | |
| /** |
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
| /** | |
| * | |
| * QRCode for JavaScript by Sangmin David Shim. | |
| * https://github.com/davidshimjs/qrcodejs | |
| * | |
| * Licensed under the MIT license. | |
| * https://opensource.org/license/mit | |
| * | |
| * The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED. | |
| * https://www.qrcode.com/en/patent.html |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <style> | |
| html { | |
| color-scheme: dark; | |
| } | |
| body { |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>QR Code Generator</title> | |
| <style> | |
| html { | |
| display: grid; | |
| place-content: center; | |
| color-scheme: light dark; |
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
| Windows Registry Editor Version 5.00 | |
| ; Microsoft Edge | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] | |
| "ExtensionManifestV2Availability"=dword:00000002 | |
| ; Chromium | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Chromium] | |
| "ExtensionManifestV2Availability"=dword:00000002 |
Windows Sandbox is a lightweight isolated virtual environment, designed to safely run and test untrusted applications without affecting the host system. It's a temporary, disposable instance that resets after closure, ensuring no permanent changes or data persist.
Everything required for this feature is included in Windows 10/11 Pro and Enterprise.
To enable Windows Sandbox, open PowerShell as Administrator and run the following command:
Enable-WindowsOptionalFeature -FeatureName "Containers-DisposableClientVM" -All -Online
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 Twitter Link Fixer | |
| // @author Flipeador | |
| // @version 1.0.4 | |
| // @icon https://www.google.com/s2/favicons?sz=128&domain=twitter.com | |
| // @homepageURL https://gist.github.com/flipeador/15b2bb8a471b967e4fd0371a1256b0ee | |
| // @downloadURL https://gist.githubusercontent.com/flipeador/15b2bb8a471b967e4fd0371a1256b0ee/raw/twitter-link-fixer.js | |
| // @match *://x.com/* | |
| // @grant none | |
| // @run-at document-idle |
