• 0 Posts
  • 5 Comments
Joined 1 year ago
cake
Cake day: June 12th, 2023

help-circle
  • So to any young kids who get into this “I am intelligent therefore depressed.”

    I’ve been there and what I’ve found is that if you are like how I was. I falsely correlated analysis of the universe and the discovery of it’s harshness with how I was feeling and probably erroneously ignored my bias (because I was depressed) to focus on negative realizations.

    It was my caustic family environment, my lack of individual freedom, poor sleep, poor diet that was making me miserable.

    If you’re feeling this way you need to look into Mindfulness and why existence even in its brutally bleak appearance can be an enjoyable quiet morning listening to crickets as you wake up, or being aware of noisy air vent that sounds interesting, or even the curiosities of your own wandering mind.

    Our experience of existence is relative to our framing. Emotional intelligence is learning to side step the current and enjoy observing the river.




  • The important concepts aren’t that complicated.

    Instead of nesting a computer (VM’s) the operating system makes the program think it’s on its own dedicated computer (isolated file system space, cpu, and memory shares). A Dockerfile is just a basic script to construct one of these computers by commands and files.

    The real reason people get excited is because they can ship a Docker “image”. It’s a layered filesystem which really is just like saying there’s a system tracking who puts what files in what place and so it’s easier to just send the whole setup to someone then try to document how you should set all that stuff up to run their software.

    This is “dummier” proof than the pre-existing convention of just using a package manager to do this for you.