Andrew's Blfog

Steam Deck

I'm pretty excited for Valve's upcoming Steam Deck hardware.

[Image: The thicc boy itself]

For those not in-the-know, the Steam Deck is a handheld PC designed and (soon) sold by Valve/Steam. More info here.

On paper, the hardware itself is cool but not anything too exotic - we already have handheld PCs that can run Windows, and they have pretty decent specs usually.

What sets the Steam Deck apart is a short set of very compelling features

Read More...

Finding Large Files (on Linux)

If you've ever needed to figure out what files are taking up all the space on your Linux system, you can use this snippet to do so!

sudo find / -type f -printf "%s\t%p\n" 2>/dev/null | sort -nr | head -n 20

This lists the 20 largest files on your system. You can increase the 20 at the end to increase the amount of results.

For a (probably) more useful view, you'd probably want to use something akin to WinDirStat. My utility of choice is WizTree which is SUPER fast because it will scan the file table instead of asking the OS to tell it what's in a directory and recursing. The results are clear, though you do miss out on this extreme speed when using it on a non-NTFS drive.

Read More...