PostgreSQL
coub
express.js
freeware
git
jquery
laravel
links
linux
macos
mysql
node.js
php
powershell
python
ubuntu
vim
virtualbox
анекдот
блог
игры
интересно
стихи
цитаты
Get laptop model or motherboard model
February 13, 2026
Just like that
sudo dmidecode -s system-product-name
Single mode saves you
February 13, 2026
Sometimes bad things happen. Crooked arms, crooked updates etc. This feature saves me many times.
Choose recovery in your GRUB menu, then press "e" to edit boot options, then find the line that starts with "linux" word, it usually has words like "splash" and "quiet", then add to the end of this line word "single".
Example:
And finally press F10 or Ctrl+x to boot with your changed options.
This allows you to boot in single-user mode as root.
Choose recovery in your GRUB menu, then press "e" to edit boot options, then find the line that starts with "linux" word, it usually has words like "splash" and "quiet", then add to the end of this line word "single".
Example:
linux /boot/vmlinuz-6.12 root=UUID=249a1099-3034-4084-af21-b489693602fd ro panic=30 quiet splashChange to this:
linux /boot/vmlinuz-6.12 root=UUID=249a1099-3034-4084-af21-b489693602fd ro panic=30 quiet splash single
And finally press F10 or Ctrl+x to boot with your changed options.
This allows you to boot in single-user mode as root.
Convert Windows line endings to Linux in Vim
June 08, 2025
Original solution is here
Short explain
Use Ctrl+q-m to input ^M in Windows
I-i-i, wanna fall from the stars
Short explain
:%s/^M//gUse Ctrl+v-m to input ^M in Linux
Use Ctrl+q-m to input ^M in Windows
I-i-i, wanna fall from the stars
linux-like top for Windows - NTOP
March 21, 2025
Source project is here, looks pretty nice in powershell + vim-like commands. Still in development, but already usable.
Windows Terminal here, just the best terminal for windows.
Choose your lovely color theme on windowsterminalthemes.dev
Windows Terminal here, just the best terminal for windows.
Choose your lovely color theme on windowsterminalthemes.dev
powershell modules management
March 21, 2025
Sometimes there is a need to check modules installed or remove one
Uninstall is obviously simple
And finally, powershell gallery is here
# check installed morules list Get-InstalledModule Version Name Repository Description ------- ---- ---------- ----------- 0.8.5 BurntToast PSGallery Module for creating and … 4.2.6 NTFSSecurity PSGallery Windows PowerShell Modul… 1.1.0 posh-git PSGallery Provides prompt with Git… 2.2.5 PowerShellGet PSGallery PowerShell module with c…This helps to read description details
Get-InstalledModule | Select Name,Description Name Description ---- ----------- BurntToast Module for creating and displaying Toast Notifications on Microsoft Windows 10. NTFSSecurity Windows PowerShell Module for managing file and folder security on NTFS volumes posh-git Provides prompt with Git status summary information and tab completion for Git commands,… PowerShellGet PowerShell module with commands for discovering, installing, updating and publishing the…Related doc here.
Uninstall is obviously simple
Uninstall-Module -Name YOUR_MODULE_NAME
And finally, powershell gallery is here