• 1 Post
  • 122 Comments
Joined 1 year ago
cake
Cake day: June 19th, 2023

help-circle
rss
  • The FEIE is only concerned about your relationship with America. It doesn’t matter what country/countries you decide to live in.

    As far as the transition, I didn’t know it was happening until much later. When I left America it was to travel full time. I wasn’t specifically going to one place so saying goodbye to friends and family was like, “I’ll be around. Catch you guys later.” 2-3 years later I was thinking to myself, “Oh shit… You’re like… really gone.”

    For work, I hold myself pretty strictly to working on US east coast hours so there is as little friction as possible with the employers. I moved my phone to a virtual provider and updated all banking and W4 paperwork to use a mailbox service in Florida (no state level income tax in FL).

    You do get very bored with tourist stuff though. I think I would rather die than set foot in another museum or see some old building or religious site or whatever… Now 100% of the travel I still do is to see people I care about.

    Good luck.




  • Certs are a waste of time tbh. If you have 8 years of experience, you should have more than enough to fill out a resume already.

    An AWS cert is almost certainly even more useless for you specifically unless you wanted to get into devops/sre and do systems design. I have been in sre for a very long time and have never even heard of anyone writing tooling in Java. That section of the industry is entirely dominated by go, python, and (more often than anything else) bash for really quick automation.



  • Hated Windows. TechTV had a download of day that “works on both Windows and Linux!”

    “I don’t know what Linux is but it can’t be worse that Windows.”

    I’ve been on it ever since. That was 20+ years ago.

    I honestly don’t know how windows works… I only ever used it for about a year and some change when I was a teenager in the 90s.


  • It’s easier to think about Linux on the context of what an individual application needs to run. Pretty much everything you do will have these components.

    • configuration
    • an executable
    • a communication mechanism (dbus, networking, web server, etc)
    • something that decides if the application runs or not (systemd, monit, docker/docker compose, kubernetes scheduler, or you as the user)
    • a way of accepting input (keyboard and mouse, web requests, database queries, etc)
    • a way of delivering an output (logging to unique log files, through syslog, or to stdout/stderr, showing something on a screen, playing a sound, returning a message to the client, etc)
    • storage (optional)
    • some cpu and memory capacity

    That’s really it. If something isn’t working, it’s pretty much exclusively going to fall into one of those categories. What that means is going to vary significantly from app to app but understanding this is how literally everything works makes the troubleshooting process a lot easier.


  • My personal laptop is whatever the first gen Framework is called. After many, many years doing the "cool" distros, I've settled on Mint and don't really have any motivation to do anything else… I have real work I need to do and can't be bothered to deal with figuring out weird shit. I just need it to work.

    TBH, the only things I use my laptop for anymore is a browser, vim, git, and kubernetes tooling… I barely have any interest in running Linux on a workstation at this point. The only things that really interest me anymore are being run in distributed clusters. Desktop Linux is kinda boring and tedious for me.






  • As a counter balance to that though, interviewers need to understand what they are hiring for and tailor the questions asked to those requirements.

    For example, there is genuinely very little coding required of an SRE these days but EVERY job interview wants you to do some leetcode style algorithm design… Since containers took over, the times I have used anything beyond relatively unremarkable bash scripts is exceptionally small. It's extremely unlikely that I will be responsible for a task that is so dependent on performance that I need to design a perfect O(1) algorithm. On terraform though, I'm a fucking surgeon.

    SRE specifically should HEAVILY focus on system design and almost all other things should have much much less priority… I've failed plenty of skill assessments just because of the code though.