HackerTrans
TopNewTrendsCommentsPastAskShowJobs

equinumerous

no profile record

Submissions

Qgrep Internals

zeux.io
4 points·by equinumerous·6 mesi fa·1 comments

comments

equinumerous
·23 giorni fa·discuss
I am very curious what some of your lint rules look like in practice. In my mind a lot of the AI-isms in my code that I hate are stylistic or a matter of taste, not necessarily something I could write a deterministic rule to check. But I want to hear more. Like, what kind of linters did you create and which were highest impact?
equinumerous
·26 giorni fa·discuss
I'm surprised there isn't a simple image classifier in place to filter out images of gore/porn/etc. - I know that there are such output filters for images with copyrighted content. It suggests to me that either the safeguards aren't in place, or this exploit bypasses those safeguards.
equinumerous
·2 mesi fa·discuss
Legend has it that if you can come up with a string that matches all parts of that regex, Claude starts spitting out free credits.
equinumerous
·2 mesi fa·discuss
This is genius. Let's hope the hackers aren't reading this...
equinumerous
·2 mesi fa·discuss
[flagged]
equinumerous
·4 mesi fa·discuss
That was an amazing talk, thanks for sharing! I could see the writing on the wall as soon as I saw the bucket names were predictable. Bucket squatting + public buckets + time of check/time of use in the CloudFormation service = deploying resources in any AWS account with enough persistence. I'm surprised this existed in AWS for so long without being flagged by AWS Security.
equinumerous
·5 mesi fa·discuss
Mostly just noise. This is an example data video from the creator: https://www.youtube.com/watch?v=tIRXaQWjiA8

(YouTube video for this project: https://www.youtube.com/watch?v=l03Os5uwWmk)
equinumerous
·6 mesi fa·discuss
The "> Remove lockfiles from version control" got me as well.

> Reproducible builds sound nice in theory, but velocity matters more than determinism. Think of it as chaos engineering for your dependency tree.

Reproducible builds are nice in practice, too. :) In the Node.js ecosystem, if you have enough dependencies, even obeying semver your dependencies will break your code. Pinning to specific versions is critical.
equinumerous
·6 mesi fa·discuss
As far as a scripting API, it looks like the devs beat me to it with a JS/TS plugin system: https://github.com/OpenRCT2/OpenRCT2/blob/develop/distributi...
equinumerous
·6 mesi fa·discuss
This is a cool idea. I wanted to do something like this by adding a Lua API to OpenRCT2 that allows you to manipulate and inspect the game world. Then, you could either provide an LLM agent the ability to write and run scripts in the game, or program a more classic AI using the Lua API. This AI would probably perform much better than an LLM - but an interesting experiment nonetheless to see how a language model can fare in a task it was not trained to do.