• 1 Post
  • 8 Comments
Joined 4 years ago
cake
Cake day: May 31st, 2020

help-circle
  • “Infrastructure as code” is what the strategy is typically called. You use one of the many tools for orchestrating configuration of hosts (Ansible, OpenTofu, Puppet, Saltstack, Chef, etc.). These allow you to provide configuration files and code for setting up your hosts in a central place. This place is typically a Git repo, allowing you to keep track of when which change was made.

    Depending on the tool you use, you trigger applying the configuration on your dev PC, or there’s a hosted CI/CD server which automatically rolls out the changes when a new commit is pushed.



  • I can’t give you an exhaustive list, but I’m, for example, not a fan of:

    • Needing an account at Microsoft for reporting issues, contributing code or searching code in repositories. Microsoft operates in the ad/tracking business and is known for violating laws.
    • Microsoft will potentially link this account data with LinkedIn or other Microsoft services in the future.
    • Microsoft violates the licenses of code hosted on GitHub to train their AIs.
    • Microsoft is known for creating lock-in effects and EEE, generally putting humanity worse off for their own profit. I’d rather not contribute to that, neither with code nor socially.


  • Ephera@lemmy.mlOPtoProgrammer Humor@lemmy.ml*shudders*
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 year ago

    I have another account on another instance and this post showed up on its feed, too.

    And you can bet I had a rightful giggle at this excellent meme by this beautiful OP, …uh, me.

    To be fair, it was extremely relatable for obvious reasons. But yeah, I had forgotten I made this.


  • I guess the point is, it’s not strongly typed during runtime. In other strongly typed languages, that cast would fail, since the underlying memory layout of some random class does not fit to that of a string.

    But yeah, as soon as you break out as, you’re telling the type system to fuck off. So, while it does look freaky to me, too, it doesn’t dispell that TypeScript is strongly typed…