Loess.ru

having fun

Windows-tools и автозапуск SSHD в WSL2

Список плюшек для упрощения жизни windows-рабов:

https://vas3k.club/post/6238/
https://www.hanselman.com/blog/scott-hanselmans-2021-ultimate-developer-and-power-users-tool-list-for-windows

Включить цветную рамку текущего окна в win10 (https://habr.com/ru/post/544214/):
HKCU\Software\Microsoft\Windows\DWM\
EnableWindowColorization:REG_DWORD:1
ColorPrevalence:REG_DWORD:1

Включить все иконки в system tray (https://winaero.com/always-show-tray-icons-windows-10/):
HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\
EnableAutoTray:REG_DWORD:0
или cmd -> shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}

WSL2:

Дабы SSHD был запущен при старте windows 10 (не входя в bash), надо его перезапустить из-под root:

wsl sudo service ssh --full-restart

можно даже такой батник в автозапуск засунуть

Далее кратко описан процесс установки WSL2 на Win10 home:
Read More

Git tools: diff docx/pdf, git server

Using git diff for doc, xls, pdf, ppt, odt:

https://gist.github.com/mbrehin/634f46aeacb0a9a6da5e (pdf)
for docx use pandoc as following (https://blog.martinfenner.org/posts/using-microsoft-word-with-git):

[diff "docx"]
textconv=pandoc --to=markdown
prompt = false

Git personal server

(Gitolite, Cgit, fcgiwrap, and Nginx)

https://bryanbrattlof.com/cgit-nginx-gitolite-a-personal-git-server/ (pdf)

and more of freshly-baked gitlab alternatives: https://www.cyberciti.biz/open-source/github-alternatives-open-source-seflt-hosted/

Правило 20 секунд

Здесь было видео «Use Laziness To Your Advantage — The 20 Second Rule», но «Видео недоступно, Автор ограничил доступ к видео.», поэтому теперь версия на русском:

Кратко: Избавляйтесь от плохих привычек, делая их на 20 секунд сложнее, и приобретайте хорошие — делая их на 20 секунд проще
(от себя: и закрепляя их в течение ~40 дней)

Backing up your git repos

git clone --mirror path/to/original path/to/dest/.git
cd path/to/dest
git config --bool core.bare false
git checkout anybranch

https://stackoverflow.com/questions/67699/how-to-clone-all-remote-branches-in-git

p.s. можно просто git clone --mirror path/to/original,
затем — mv original.git .git и далее — по инструкции git config..., git checkout...

TeamRedMiner 4Gb

This is an example table with 2 x Nitro+ 470 4GBs mining at 29.65 MH/s
each at full speed, i.e. 59.30 MH/s total, having 4078MB of DAG buffer
space available. Power draw will stay roughly the same, so your
efficiency will take about the same hit as the hashrate.

Epoch  DAG MB  DAG %    Hashrate  Loss %  ~date (https://minerstat.com/dag-size-calculator)
381    4072    100.00%  59.30       0.0%  10th Dec 2020
382    4080    99.95%   58.38      -1.6%  14th Dec 2020
383    4088    99.76%   54.89      -7.4%  18th Dec 2020
384    4096    99.56%   51.46     -13.2%  21st Dec 2020
385    4104    99.37%   48.29     -18.6%  25th Dec 2020
386    4112    99.17%   45.17     -23.8%  29th Dec 2020
387    4120    98.98%   42.17     -28.9%  2nd Jan 2021 
388    4128    98.79%   39.35     -33.6%  5th Jan 2021
389    4136    98.60%   36.80     -37.9%  9th Jan 2021
390    4144    98.41%   34.23     -42.3%  13th Jan 2021
395    4184    97.47%   22.46     -62.1%  16th Jan 2021
400    4224    96.54%   12.55     -78.8%  20th Jan 2021

Биология пандемий


Подборка золотого научпопа про болезни, их исторические последствия, прочую биологию, и даже про зомби:

ВИЧ — нулевой пациент мировой пандемии https://habr.com (pdf)

Рудиментарные дела. Кого, чему, зачем и что не нужно https://habr.com

Охотничьи зоонозы: когда утка опасней ружья https://habr.com (pdf)

SARS нерукотворный? Генеалогия уханьского коронавируса https://habr.com (pdf)

Биологическое оружие против советских граждан. Трагедия в Свердловске-19 https://skrepohistory.livejournal.com/21016.html (pdf)

Зомби: от Гаити до психиатрии https://zen.yandex.ru/ (pdf)

Справочка о рабстве (и немного эзотерики): https://bitcoin-translated.ru/sources/bitcoin-abc/masters-and-slaves-of-money/

Прочие рассказы о паразитарных (и не только) инфекциях тут: https://zen.yandex.ru/scientaevulgaris

Win 10 Home RDP

1. install RDP wrapper
2. net stop termservice
3. take rdpwrap.ini from https://github.com/affinityv/INI-RDPWRAP and put it to c:/Program Files/RDP Wrapper/rdpwrap.ini
4. net start termservice
5. add remote desktop user https://sysadmin.ru/articles/rdp-wrapper
dont forget to turn off auto updates 😀 https://blog.simplix.info/disable-update-win10/

p.s. How-to check windows serial in uefi tables:
1. on linux: sudo tail -c +56 /sys/firmware/acpi/tables/MSDM
2. on windows: https://www.nirsoft.net/utils/firmware_tables_view.html