2019-02-20

Sort songs by band, year, album, title in WinAmp

Go to Preferences > Titles > Use advanced  title formatting when possible and enter one of the following
  • %artist% - %year% - %album% - %tracknumber% : %title%
  • $if(%artist%, %artist% - %year% - %album% - %tracknumber% : %title%, $filepart(%filename%))
or in the comment I put the country of the band and used one of this
  • %artist% [%comment%] %year% : %album% : %tracknumber% - %title%
  • $if(%artist%, %artist% '['%comment%']' %year% : %album% : %tracknumber% - %title%, $filepart(%filename%))
  • $if2((%artist% [%comment%] %year% : %album% : %tracknumber% - %title%), $filepart(%filename%))

2019-02-06

Windows: Auto logon


  • Open Registry Editor
  • go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
  • AutoAdminLogon ="1"
  • DefaultUserName="Administrator"
  • DefaultPassword="Pa$$w0rd"


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"AutoAdminLogon"="1"
"DefaultUserName"="Administrator"
"DefaultPassword"="Pa$$w0rd"

2019-02-01

Ubuntu: Install Java from terminal

Install Java 7:
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer

Download multiple files / splitted archive from one command

If you have a splitted archived like file.part001.rar to file.part008.rar you cand download all file with this command:

wget https://myserver.net/files/file.part00{1..8}.rar

Install Midnight Commander from the terminal

Open the terminal and run:
sudo add-apt-repository ppa:eugenesan/ppa
sudo apt-get update
sudo apt-get install mc

Ubuntu: Install Google Chrome from the terminal

Open the terminal and run the following commands:
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb