• 0 Posts
  • 36 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle







  • I’m gonna be completely honest. I don’t truly get all the inner working of git. I’m a senior DevOps Engineer and been using git for a decade, but is git is simular to sed or awk for me. I know how to do what I want really well but when shit goes wrong, I’m flying by the seat of my pants.

    A lot of times, I just know what to do to fix things because it’s rote memory with substitutions. But if you needed me to explain upstreams and rebases in actual detail, I’d be in trouble. But it rarely becomes an actual problem to the level where I’ll dedicate time to learning all the advanced stuff.

    That said, I’ve learnt that most senior people also just pretend they get it all but instead are just relying on rote memorization and basic concepts. Anyone else here in the same camp of being a fraud with git?









  • I moved from the normal sized iPhone to the Max this year. No regrets so far. The most common thing I do with my phone is consume media so the cumbersomeness has been a good tradeoff.

    I had bought a 15 Pro on release day but returned it for the max after a week of continuing to doubt myself after holding a max in the store. I had jumbophones up till the iPhone X, I even had a Dell Streak back in the day.

    Most suprising thing to me was that the speaker was insainely better. I stopped carrying a Bluetooth speaker around with me for when I’m working cause the speakers get the job done well enough now. It’s not a 1-to-1 replacement but it is just ggod enough that it suffices. Also, the battery life from the smaller phone to the larger was such a big increase that I’ve stopped carrying around an external battery but just keep a usbc cable with my in case my ecig runs out of battery and I need to charge it off my phone.

    It’s been an interesting series of trade offs going back to a larger phone but then again, the bezels and thickness have reduced so much that a Max without a case feels the same as a normal size phone with a case. I thought I’d get bit by the screen being too big more than I have but I guess some honest self reflection on what I actually use my phone for compared to what I picture I use it for helped with the decision making. (I totally get that other people’s use cases with have completely calculus)





  • Here’s a link I found that might be good if you are interested in more:

    https://cloudnativenow.com/topics/ephemeral-idempotent-and-immutable-infrastructure/

    https://guymorton.medium.com/persistent-and-ephemeral-infrastructure-as-code-in-aws-42b33939dcf1

    There are different levels of effemeriality. The simplest example I use daily would be an autoscaling group in AWS. Especially if you use Spot Instances to save money, thi gs may scale in and out whenever.

    So if a development team creates a new autoscaling group and I need to get into an instance to test something, unless I add stuff to their IaC, I’m stuck with their configuration. I need to assume that every time I ssh into one of those instances, it’s a brand new instance. But it’d be a big challenge for me to go to their repo and make a PR to alias a command whenever an instance in that resource is created

    Stuff can be even more temporary if it’s something like an ECS task which creates a container with a read only filesystem only when a task is needed to be done. But I don’t want to get too deep in the weeds (or deeper than I already have)

    terraform workspace will at least stick around for a while so you might be in and out of the same system multiple times.