you’re high on mushrooms in the Viking age, the gods are everywhere

  • 0 Posts
  • 208 Comments
Joined 1 year ago
cake
Cake day: February 19th, 2024

help-circle
  • Lately the most frequent ide/editors I’ve been using are sublime text, eclipse, and teXworks. I’d like to replace sublime text, maybe go back to emacs or give neovim a try. I’ll probably get rid of eclipse once I can replace the ee containers with self contained apps, I used vs code for a bit with java and it was fine but the ee server container integration wasn’t great, this was a couple years ago I last tried though.



  • The most efficient base for a number system is e.

    We use base 10 with 0-9 digits and each position is a ten’s place, and the efficiency being measured is the product of the number of digits and the length of digits needed to represent a number in a given range of values. So if we used base 2 binary instead of base 10 decimal we only need to remember 2 digits 0-1, but to represent most numbers we’ll need more digits, 11 in base 10 is 1011 in base 2. On the other side we could use hexadecimal to write shorter numbers like 11 is B, but need to use more digits, 0-F digits where A-F are the 10-15 digits.

    If you try to plot a function that minimizes the efficiency the minimum is at e. So you’d have digits 0-2 and e would be written as 10 since each position is an e’s place.


  • The command line is an exceptionally useful tool, you may want to spend a little time getting familiar with it and common command line tools that would probably make self hosting almost anything easier.

    It’s like wanting to learn to play guitar but not learning how to restring and tune it, sure it’s not necessary but you’re going to be overly dependent on others to do something you could learn for yourself with a little time and patience, and it will probably broaden your perspective on what you can do once you do get familiar with how to pipe commands together and combine basic tools into something more sophisticated and complex.