+---docs/
| | PERSONAL_NOTES.md
| |
| +---gemini/
| | +---architect/
| | | BACKLOG.md
| | | IDENTITY.md
| | | PLAN.md
| | |
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
| # WLAN POWER SAVE | |
| # check network card name with ip addr | |
| iw wlp3s0f0 set power_save off | |
| # CASE INSENSITIVE TAB COMPLETION | |
| if [ ! -a ~/.inputrc ]; then echo '$include /etc/inputrc' > ~/.inputrc; fi | |
| echo 'set completion-ignore-case On' >> ~/.inputrc |
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
Show hidden characters
| { | |
| // REFERENCING https://code.visualstudio.com/api/references/theme-color | |
| "name": "VS Code Theme Reference", | |
| "date": "2024-08-20", | |
| "colors": { | |
| ////////////////////////////////// | |
| // Contrast colors // | |
| ////////////////////////////////// | |
| "contrastActiveBorder": "#000000", | |
| "contrastBorder": "#000000", |
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
| function pseudoseed(key, predict_seed) | |
| if key == 'seed' then return math.random() end | |
| if predict_seed then | |
| local _pseed = pseudohash(key..(predict_seed or '')) | |
| _pseed = math.abs(tonumber(string.format("%.13f", (2.134453429141+_pseed*1.72431234)%1))) | |
| return (_pseed + (pseudohash(predict_seed) or 0))/2 | |
| end | |
OlderNewer