graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
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 | |
;; Remaps keys, as follows: | |
;; 1. capslock becomes (=) ctrl (left) | |
;; (basic must have) | |
;; left ctrl = home | |
;; left shift = end | |
;; these two allow one to work on a laptop w arrow keys, with home and end to navigate in a nice way | |
;; end = caps lock | |
;; well, now that left ctrl is end, maybe we want capslock somewhere? TBH have never used it since I mapped it this way so... may change this later... |
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
:: notepad2, install and replace standard win11 notepad, which is slow as snails... | |
:: first uninstall notepad2, if already installed | |
winget uninstall flos-freeware.Notepad2 | |
:: backup, just to be prudent | |
reg export "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" notepad-exe-redirections-backup.reg | |
:: then delete the "redirection record", just to be sure | |
reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /f |
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
# ---------------------------------------------------------------- | |
# prompt config for (git-)bash | |
# this is called from /etc/profile.d/git-prompt.sh | |
# (if this file exists, which it apparently does, since you are reading it...) | |
# src: https://github.com/git-for-windows/build-extra/blob/main/git-extra/git-prompt.sh | |
# | |
# why this file? /etc/profile.d/git-prompt.sh is overwritten with git (for windows) is updated. | |
# starting point (default setup for the prompt) can be found in /etc/profile.d/git-prompt.sh | |
# | |
# Config info: https://gist.github.com/adojos/fd30baa716dbfbe282fe147ab717b664 |
NKP-Pocky/Central\KpDataProvider\src\providers\icom\getIcomCacheData.js:34
async function fetchData() {
const icomData = {};
try {
const unstructuredGeometryData = await getGeometryData();
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
. |