Interests: programming, video games, anime, music composition

I used to be on kbin as e0qdk@kbin.social before it broke down.

  • 0 Posts
  • 10 Comments
Joined 2 years ago
cake
Cake day: November 27th, 2023

help-circle








  • Been a long time since I’ve used a laptop, but usually when I’ve got a terminal open I’m doing something with Python these days. Often I just use it interactively as a calculator with some nice extra features. (I have some libraries like humanize installed in a local environment that I fire up frequently for quick tasks. That library can turn a number of bytes or seconds into easily readable approximations – e.g. humanize.naturalsize(1920*1080*3*60) spits out 373.2 MB for the size of 60 frames of uncompressed HD video.) I also have a bunch of custom scripts for various things – like a trivial spellchecker, custom image viewers, tools for converting timestamps between formats I use frequently, etc. Occasionally, I’m checking the load on a system with tools like htop, or logged into a remote system with ssh to fix something, running a long download with wget (or other tools), or re-encoding a video with particular settings using ffmpeg. Rarely I’m searching through my files with grep or other tools.