HackerTrans
TopNewTrendsCommentsPastAskShowJobs

yoran

no profile record

comments

yoran
·vorige maand·discuss
Just installed my plug-and-play panel this week in my small garden. 400W so not enough to power all my appliances. But I'm happy that I'm at least a little hedged against the negative geopolitical developments we're going through.
yoran
·3 maanden geleden·discuss
Anthropic support is reserved only for famous devs on X with > 100k followers.
yoran
·9 maanden geleden·discuss
How does an LLM approach to OCR compare to say Azure AI Document Intelligence (https://learn.microsoft.com/en-us/azure/ai-services/document...) or Google's Vision API (https://cloud.google.com/vision?hl=en)?
yoran
·10 maanden geleden·discuss
It still worked a few years ago but no longer :( (http://techno.org/electronic-music-guide/)
yoran
·11 maanden geleden·discuss
I feel like all new AI tools only integrate with GitHub though, like Claude Code. We're actually thinking of moving from GitLab to GitHub, just for this reason.
yoran
·2 jaar geleden·discuss
We use it extensively in our codebase. We started without any types, and added Sorbet later. It's similar to Typescript as that you can gradually sparkle your code with types, building up the typing coverage over time.

I just completed a big refactoring. We have a good suite of tests. But Sorbet has provided an added layer of confidence. Especially when it comes to the treatment of null values. Sorbet will raise an error if you try to call a method on an object that may be null. So it forces you to think through: what should happen if the object is null?

So the tests combined with Sorbet typechecking made that we could just almost blindly deploy refactoring after refactoring, with only a handful of bugs for several 1000s of lines of code changed.