| File | Chars | Babel plugins | Diffs |
|---|---|---|---|
| test1.js | 14 635 | @babel/plugin-transform-react-inline-elements, transform-react-remove-prop-types, transform-react-class-to-function | test2, test3 |
| test2.js | 15 052 | @babel/plugin-transform-react-inline-elements, transform-react-class-to-function | test1, [test3](https://gist.github.com/Jaid/8c66782b908b8f18585991f25f68fe5e#file- |
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
| #Warn All, StdOut | |
| #SingleInstance Prompt | |
| #Include ../lib/jaid.ahk2 | |
| main() { | |
| ; TODO: Write business logic | |
| } | |
| ; TODO: Change key | |
| #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
| #Warn All, StdOut | |
| #SingleInstance Prompt | |
| ProcessSetPriority "High" | |
| ; From https://www.maketecheasier.com/turn-off-monitor-automatically-lock-windows/ | |
| #l:: { | |
| Sleep 200 | |
| DllCall "LockWorkStation" | |
| Sleep 1000 |
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
| # From https://superuser.com/a/758464/1288709 | |
| xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync | |
| xrandr --addmode Virtual1 1920x1080 | |
| xrandr --output Virtual1 --mode 1920x1080 |
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
| * { | |
| background: red !important; | |
| color: red !important; | |
| } |
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 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
| "ShowSecondsInSystemClock"=dword:1 |
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 | |
| [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] | |
| "DisallowShaking"=dword:1 |
The ESM standard is considered stable in NodeJS and well supported by a lot of modern JavaScript tools.
ESLint does a good job validating and fixing ESM code (as long as you don't use top-level await, coming in ESLint v8). Make sure to enable the latest ECMA features in the ESLint config.
- .eslint.json
{