HackerTrans
トップ新着トレンドコメント過去質問紹介求人

rcfox

5,615 カルマ登録 17 年前
[email protected]

http://rcfox.ca

@RyanFox

コメント

rcfox
·3 日前·議論
Huh, it's wild that they didn't send an email about this. I can't imagine people taking this well, especially as they don't seem to be giving notice about the end of it either.
rcfox
·3 日前·議論
This is the first I'm hearing about a usage cut. Do you have a link to an announcement for this? Search hasn't shown anything.
rcfox
·21 日前·議論
Interesting that this showed up here now. I did it a week ago after hearing about it on The Rest Is Science. https://www.youtube.com/watch?v=9t-5lQ2mzuw
rcfox
·30 日前·議論
Seems kind of similar (at least in purpose) to giscus, a commenting system powered by GitHub Discussions.

https://github.com/giscus/giscus
rcfox
·2 か月前·議論
You actually can do that. https://github.com/settings/pages
rcfox
·2 か月前·議論
It looks like SARIF is JSON, with a formal schema. I'm guessing the JSON they used to output used their own, non-standard schema.
rcfox
·3 か月前·議論
Could be to highlight their incompatibility?
rcfox
·3 か月前·議論
There are communities of people who publicly blog about their eating disorders. I wouldn't be surprised if the laymen's discourse is over-represented in the LLM's training data compared to the scientific papers.
rcfox
·3 か月前·議論
Maybe you need to make shorter PRs?
rcfox
·3 か月前·議論
Yeah, my first thought (admittedly an absurd one) went to something along the lines of:

"I flipped a coin and the LLM called heads. I should have gone with tails..."
rcfox
·5 か月前·議論
The title is misleading. Productivity isn't at 10%, it's at 110%.
rcfox
·8 か月前·議論
> For Linux, just use the emacs that comes with the distro.

Are the major distros shipping packages with tree-sitter support yet?
rcfox
·9 か月前·議論
Your comment heavily implied (to me) scaling databases horizontally. Yes, it's not necessarily "Google scale" either, but it's a ton of extra complexity that I'm happy to avoid. But a Google employee is probably going to approach every public-facing project with the assumption of scaling everything horizontally.

With multiple servers talking to a single database, I'd still prefer to let the database handle generating IDs.
rcfox
·9 か月前·議論
"Distributed systems" doesn't have to mean some fancy, purpose-built thing. Just correlating between two Postgres databases might be a thing you need to do. Or a database and a flat text file.
rcfox
·9 か月前·議論
Do most people? Not everyone is Google.
rcfox
·9 か月前·議論
Just following the chat for a few minutes, people posted links to a couple of other locations:

Okaukuejo waterhole in Etosha National Park: https://www.youtube.com/watch?v=AeMUdOPFcXI (at the time of posting, a herd of elephants are enjoying the water)

Kalahari Desert: https://www.youtube.com/watch?v=ME0dPuBtzug
rcfox
·9 か月前·議論
I worked on creating a card game with a couple of my friends. We kept all of the cards in a Google Sheet, allowing everyone to easily edit or create new cards. Then, I wrote a script to compile the sheet into a card atlas so that it could be consumed by Tabletop Simulator. It worked amazingly well.

The only issue was that I had to run the script myself, since my friends were less technical. I'd probably see if I could setup a workflow in Github Actions to do it for me if I were to do this again.
rcfox
·10 か月前·議論
In Python, every variable is either defined or imported in the file in which it's used, so you always know where to find it. (Assuming you don't do `from foo import *`, which is frowned upon.)

In C++, a variable might be defined in a header or in a parent class somewhere else, and there's no indication of where it came from.
rcfox
·10 か月前·議論
Is this just because LLMs don't have state?

As far as I understand it, as you have a back-and-forth conversation with an LLM, you have to provide the entire history of the conversation plus your new response each time.
rcfox
·10 か月前·議論
With Typescript, I find it pretty eager to just try `(foo as any).bar` when it gets the initial typing wrong. It also likes to redefine types in every file they're used instead of importing.

It will fix those if you catch them, but I haven't been able to figure out a prompt that prevents this in the first place.