Hacker News new | ask | show | jobs
by ChuckNorris89 1614 days ago
This^.

I still have my muscle memory tuned to creating and using only:

  C:\Games
  C:\Music
  C:\Movies
  C:\Pictures
  C:\Torrents
  C:\Workspace
I hate the default

  C:\Users\ChuckNorris89\Pictures\ or whatever.
Much prefer the linux ~/Pictures instead.

Or maybe this just shows how old I am.

3 comments

Well ~ is basically just a shortcut to /users/ChuckNorris89. It's kind of surprising MS hasn't mapped ~ to go to basically the Windows home folder. In R on Windows you can use ~ to go there at least which is nice.
FWIW ~ works in PowerShell too.

  %CSIDL_MYPICTURES%
  %USERPROFILE%\Pictures
https://docs.microsoft.com/en-us/windows/deployment/usmt/usm...

You can also add your own environment variables.

  setx pix "%SYSTEMROOT%\Pictures"
It works great but you won't escape the merriad of system folders in Documents or Pictures that way. Apps, games and the OS itself flooding these folders is the main problem why file management on Windows sucks.
That even happens on Linux. Apps dump a thousand little files in ~.

Distros and package managers putting binaries in completely different spots. Is it /bin, /usr/bin, /usr/sbin? Who knows!

> /bin, /usr/bin, /usr/sbin? Who knows!

If anyone is curious:

Historically /bin and /sbin contained the binaries that were necessary to bring up the system (especially to mount the /usr partition, which was "best practice" to have separately from the root and /boot partitions). Nowadays most distros just symlink them to /usr/(s)bin

/usr/sbin is for utilites that only root should use, whereas /usr/bin is for regular applications managed by your system (i.e.: your distro's default package manager).

I prefer the short paths myself. I create something similar and add it to the quick access in explorer.