Skip to content

Commit f511804

Browse files
committed
[site] fix various minor errors/lint formatting
1 parent 64932c2 commit f511804

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

docs/dev-notes/prog-lang-theory/plt-misc-resources.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Programming Language Theory: Misc Resources
22

3+
- [awesome compilers](https://github.com/aalhour/awesome-compilers)
34
- [Very Thorough Link Dump](https://wiki.nikitavoloboev.xyz/compilers)
45
- [YAIR](https://github.com/sheredom/yair): Yet Another Intermediate Representation from @sheredom/Neil Henning (Unity compiler)
56
- [Resources for Amateur Compiler Writers](https://c9x.me/compile/bib/)
@@ -13,6 +14,6 @@
1314
- <http://mlton.org/pipermail/mlton/2003-January/023054.html>
1415
- [JIT in python](https://csl.name/post/python-jit/)
1516
- Interpreter
16-
<https://francisstokes.wordpress.com/2017/08/16/programming-language-from-scratch/>
17-
<https://github.com/Lel-Language/Lisp-esque-language>
17+
- <https://francisstokes.wordpress.com/2017/08/16/programming-language-from-scratch/>
18+
- <https://github.com/Lel-Language/Lisp-esque-language>
1819
- [Category Theory in 15 minutes](http://chrislambda.github.io/blog/2014/01/30/catamorphisms-in-15-minutes/)

docs/dev-notes/python/conda.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
|||
2828
|`conda install PKGNAME==3.1.4`|install specific package|
2929
|`conda install --file requirements.txt`|install from requirements file|
30-
|`conda update conda`|update conda|
30+
|`conda update conda`|update conda base|
3131
|`conda update python`|update python version|
3232
|`conda update anaconda`|update all packages to latest stable + compatible version of Anaconda|
3333
|`conda update -n base conda`|update base conda environment|
@@ -62,7 +62,7 @@
6262
|Managing Packages||
6363
|||
6464
|`mamba install -n <ENV> <PKG>`|install package|
65-
|`mamba update -n base mamba`|updating mamba|
65+
|`mamba update -n base mamba`|update mamba base|
6666
|`mamba update -n <ENV> --all`|update package|
6767
|`mamba remove -n <ENV> <PKG>`|removing a package|
6868
|`mamba repoquery search <PKG>`|finding a package|

docs/dev-notes/unraid/unraid-upgrade.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- **Pkgs**: `SettingsTab -> NerdTools -> Check For Updates`
1515
- Disable/Shutdown:
1616

17-
- **Custom Plugins**: `un-get update; un-get installed; un-get remove bat; un-get cleanup`
17+
- **Custom Plugins**: `un-get update; un-get installed; un-get remove bat; un-get cleanup; plugin remove un-get.plg`
1818
- **Background Jobs**: `ParityCheck/Tuner, Mover, AutoUpdate, AutoBackup`
1919
- **Docker**: `SettingsTab -> Docker -> Enable Docker = No`
2020
- **VM Manager**: `SettingsTab -> VM Manager -> Enable VMs = No`
@@ -25,7 +25,8 @@
2525

2626
## Apply Upgrade
2727

28-
- **Flash Drive Snapshot**: `scp -r server:/boot/* ~/backup/unraid-flash-snapshot/`
28+
- **Flash Drive Snapshot**: `rsync -avh --delete server:/boot/ /mnt/backup/unraid-flash-snapshot/` or
29+
`scp -r server:/boot/* ~/backup/unraid-flash-snapshot/`
2930
- **Upgrade OS**: `ToolsTab -> UpdateOS`
3031

3132
## Restore Settings

docs/dev-notes/win-internals/win-debug-recipes/components/win-drivers.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,6 @@
3535
> |`gdrv`,`gdrv2`|GigaByte software, 2nd worse after ASUS, remove everything. Known to cause BSODs|
3636
> |`NTIOLib_MSISimple_OC`,`NTIOLib_OCKit`,`MSI Command Center`|not the worst but hitting performances. Remove all MSI software, you can do the same without usually. Nice to change options without rebooting but then once done disable the driver|
3737
> |`NPF*`,`Network Packet Filter drivers`|used by many network utils (e.g. PowerLine adapters, etc) so must check if needed; can always disable/re-enable on-demand instead of deleting|
38-
> |`AMDRyzenMasterDriverV*`|seems latest versions are less dangerous and gets uninstalled, anyway better to remove RM unless you have gun pointed at your head|
39-
> |`AsrDrv*`|ASRock drivers, anything ASRock should be removed; literally banned as it provides [full kernel access](https://github.com/stong/CVE-2020-15368)|
40-
> |`Asusgio2`|anything ASUS should be removed, the worst. If you have ROG peripherals you may need to keep the ROG drivers. Armoury-Crate software is a virus-like, will cause BSOD and all sort of issues, stay away|
41-
> |`EneIo`,`EneTechIo`,`*Io64.sys`|RGB software drivers usually terrible written, suffering from performance **and** serious security holes|
42-
> |`gdrv`,`gdrv2`|GigaByte software, 2nd worse after ASUS, remove everything. Known to cause BSODs|
43-
> |`NTIOLib_MSISimple_OC`,`NTIOLib_OCKit`,`MSI Command Center`|not the worst but hitting performances. Remove all MSI software, you can do the same without usually. Nice to change options without rebooting but then once done disable the driver|
44-
> |`NPF*`,`Network Packet Filter drivers`|used by many network utils (e.g. PowerLine adapters, etc) so must check if needed; can always disable/re-enable on-demand instead of deleting|
4538
4639
- Application Drivers: usually fine since they should only be loaded on demand on app start (e.g. CPU-z,HWInfo,GPU-z,)
4740
- HW drivers: dangerous as can can cause your system to stop booting; always use system snapshots
@@ -194,7 +187,7 @@
194187
```batch
195188
driverquery /V
196189
pnputil /enum-drivers
197-
pnputil /enum-devices
190+
pnputil /enum-devices
198191
pnputil /enum-interfaces
199192
```
200193

0 commit comments

Comments
 (0)