• 5 Posts
  • 188 Comments
Joined 3 years ago
cake
Cake day: June 18th, 2023

help-circle


  • I’m guessing you want fantasy/history, but since you didn’t specify it, if cyberpunk is something ypu’re interrested in, I highly recommend https://store.steampowered.com/app/2001070/Heart_of_the_Machine/.

    It’s a unique game. Not exactly 4x, but kind of choose your own adventure / rpg / 4x game, where you play a newly awekened sentient android/AI in a dystopic city, that is left alone by corporation because they want to see what you do.

    There’s extremely branching story that works across timelines/playthrough, you have a lot of options from “fuck humans uplift animals” through “i’m your god”, " I house the homeles", to “this is my city now” or “VR torment nexus”, with numerous civilization destrpying dooms you’re trying to solve along the way.

    It’s pretty cool, and I don’t think I’ve seen anything like it.

    While it doesn’t have dynasties or span ages, it does work with time travel where you affect your new/other timelines, which are new playthroughs.

    So, it’s probably not the fantasy kingdom management sim you’re looking for, but just in case you don’t mind cyberpunk and a smaller scale, I highly recommend this. It’s my top 4x hybrid I’ve played so far.



  • You can do a task pretty well if you nudge the AI, have it write an exact explanation about every part of the architecture, code and data flow it’s working with and throw relevant files into context, and correct anything that’s wrong before you send it to do the task. You still have to review, but I didn’t have to correct much in my experience.

    But that burns like 20$ of tokens per task, at current prices that are way below the costs AI companies are paying.

    While it does help me, especially with parts of the codebase I’m not familliar with, it’s not sustainable, and it’s actively and very quickly robbing me of my skills and knowledge. It’s really a bad idea to use it, in two years time you’ll be royally fucked once they raise prices to recover the trillions they are loosing right now.

    So, however tempting, I simply don’t use it. I won’t throw away years of college and experience just to do a task a little bit faster today.





  • I don’t think that"s the reason for the absird lobbying, which is why it’s getting through.

    Governments aren’t that competent to get this through at scale, but corporations can and have a very good reasob to do so.

    I believe that it’s a lot more probable that the reason is profit - social networks have a problem with bots. Advertisers don’t want to pay if 90% of impressions are bots, and you can’t really solve that problem easily.

    Age verification by ID solves this, and if they even can lobby hard enough to outsource the costs to mandatory OS level veryfication, so they just call one OS api, it’s even better.



  • I’m mostly interested in how will they handle giving the info to apps. If it’d let me to block or fake the request depending on what I currently need (just prompt me every time an app asks, and let me choose the bracket), I’m good.

    Tbh, most sites that are slowly getting targeted by age verification laws are things I’m kind of addicted to and have been trying to drop for a long time. A “scan your face or id” dialog would be a good reminder to finally cold turkey it. It’s one of the things I hate more than however much I need their platforms.









  • I mostly work in gamedev where they aren’t that much feasible so I don’t have much real experience working with them and I might be wrong but from when I looked into it a while back, it’s basically just a docker container that you specify in a .devcontainer file (at least for VSCode, but other IDEs probably have something similar) and when you need to develop, compile or run your code, it runs it in the container. It also doesn’t have to run locally on your machine, if you can run docker somewhere else (i.e on a more powerful shared server).

    I can see several advantages (but I never really tested it in practice, so I’m mostly guessing) - containers are usually quick to start, you have the same and stable and replicable dev/build environment for all devs (since you just commit .devcontainers), so there aren’t some hidden dependencies and “works on my machine” shouldn’t happen too often. It also helps you keep your OS clean, so you don’t end up with 5 versions of python, 3 JDKs and 20gb of random NPM packages installed in your OS after 5 years of development - which is the most important advantage for me.