• 0 Posts
  • 176 Comments
Joined 3 years ago
cake
Cake day: June 14th, 2023

help-circle



  • Or at least, diversified so it’s not only those two, and there’s a multitude of options.

    A fair few countries do that, for example, with payment being diversified into other systems like Alipay, and the other QR-based payment systems. Australia has EFTPOS, HK lets you use your Octopus to buy things in addition to paying for the train fare.

    Otherwise, you’d be in trouble if MasterCard/Visa decided that they didn’t like something you did very much, so you’re barred from their services.


  • Its the most soul crushing thing to be looking for a job right now, anything to make you stand out of a crowd is ignored, volume of applications and adherance to posted requirments are the only way to get a fleeting interaction with a human.

    Or none at all.

    The advice is not helping either, since you’re told to both make your resume and cover letter stand out, but also to make it generic so the automated system doesn’t parse it wrong and disregard it.











  • It depends. At least, I find that it has a habit of falling on its metaphorical face if the task is anything more complex than the simplest things, so the idea that people can use it to make viable programs is baffling to me.

    “Put these values into the CSV” works okay enough, but if you task it with more than that, like see if a column of values in the CSV is entered correctly from the markdown, it breaks.

    Or it gets stuck in a loop, and there’s a very short point where it is faster to enter it by hand. Slightly ironic, though, that a language model doesn’t do too well with natural language processing.

    I’d certainly not trust it for anything important like a production database, but the csv/markdown thing isn’t, and it’s no big deal if it gets destroyed by the model/agent, so it’s interesting to poke around with, and feel out the limitations, so you know its strengths and weaknesses.




  • I don’t use mine for coding, but it can be useful for editing stuff, since a lot of agent-based systems can edit parts of a file instead.

    The thing I have it do sometimes is parsing a bunch of markdown files, and parse data to put into the middle of a CSV, so it’s not out of order. Since making a script read the markdown is non-trivial, and itls not something that needs to be done very often, it’s easier to run a local model on the same machine and have it do that. Past a point, re-generating the entire file isn’t feasible, since it either consumes so many tokens doing the output that it hits the output limit that’s usually in place to prevent looping, or it takes an incredibly long time.