Readit News logoReadit News
serf commented on Show HN: Clearcam – Add AI object detection to your IP CCTV cameras   github.com/roryclear/clea... · Posted by u/roryclear
diggan · a day ago
Where can I find the list of supported GPUs? Frigate been able to handle everything I've tried so far, all from Nvidia and AMD GPUs to even Intel iGPUs.
serf · a day ago
same here -- it's also among one of the only things to support Coral devices and RPi video cores.

I would imagine any GPGPU compute-capable pre-CUDA thing probably won't cut it.

serf commented on Fear not, even AI engineers will be replaced by AI   doch88.github.io/2025/08/... · Posted by u/Doch88
serf · a day ago
"The great fear that someone else may not be equally devastated by change." . Gee, what a nice ethos to live by.
serf commented on Vibe coding creates a bus factor of zero   mindflash.org/coding/ai/a... · Posted by u/AntwaneB
ch4s3 · 5 days ago
That’s not even a very large code base. My experience is definitely that anything with more than 100K-loc really makes the LLMs struggle.
serf · 4 days ago
there is more to it than that. it's about modularization as well.

I run LLMs against a 500k LoC poker engine and they do well because the engine is modularized into many small parts with a focus on good naming schemes and DRY.

If it doesn't require a lot of context for an LLM to figure out how to direct effort then the codebase size is irrelevant -- what becomes relevant in those scenarios is module size and the amount of modules implicated with any change or problem-solving. The LLM codebase 'navigation' becomes near-free with good naming and structure. If you code in a style that allows an LLM to navigate the codebase via just an `ls` output it can handle things deftly.

The LLMification of things has definitely made me embrace the concept of program-as-plugin-loader more-so than ever before.

serf commented on French firm Gouach is pitching an Infinite Battery with replaceable cells   arstechnica.com/gadgets/2... · Posted by u/pabs3
serf · 5 days ago
it's a cool idea for small setups, but very expensive per kwh.

if you want the same kind of style diy-er box-for-batteries I suggest the Trampa offerings. Similar focus on safety and novice level DIYer capability but much larger capacities and arrangements.

serf commented on Why are anime catgirls blocking my access to the Linux kernel?   lock.cmpxchg8b.com/anubis... · Posted by u/taviso
serf · 5 days ago
I don't care that they use anime catgirls.

What I do care about is being met with something cutesy in the face of a technical failure anywhere on the net.

I hate Amazon's failure pets, I hate google's failure mini-games -- it strikes me as an organizational effort to get really good at failing rather than spending that same effort to avoid failures all together.

It's like everyone collectively thought the standard old Apache 404 not found page was too feature-rich and that customers couldn't handle a 3 digit error, so instead we now get a "Whoops! There appears to be an error! :) :eggplant: :heart: :heart: <pet image.png>" and no one knows what the hell is going on even though the user just misplaced a number in the URL.

serf commented on Why are anime catgirls blocking my access to the Linux kernel?   lock.cmpxchg8b.com/anubis... · Posted by u/taviso
jmclnx · 5 days ago
>The CAPTCHA forces vistors to solve a problem designed to be very difficult for computers but trivial for humans

Not for me, I have nothing but a hard time solving CAPTCHAs, ahout 50% of the time I give up after 2 tries.

serf · 5 days ago
it's still certainly trivial for you compared to mentally computing a SHA256 op.
serf commented on Vibe coding tips and tricks   github.com/awslabs/mcp/bl... · Posted by u/mooreds
danielvaughn · 7 days ago
The approach I've taken to "vibe coding" is to just write pseudo-code and then ask the LLM to translate. It's a very nice experience because I remain the driver, instead of sitting back and acting like the director of a movie. And I also don't have to worry about trivial language details.

Here's a prompt I'd make for fizz buzz, for instance. Notice the mixing of english, python, and rust. I just write what makes sense to me, and I have a very high degree of confidence that the LLM will produce what I want.

  fn fizz_buzz(count):
    loop count and match i:
        % 3 => "fizz"
        % 5 => "buzz"
        both => "fizz buzz"

serf · 7 days ago
I do something like that when I get down to the function level and there is an algorithm that is either struggling for the role or poorly optimized, but the models that excel in codebase architecture have their hands held behind their back with that level of micromanaging.

the results are good because as another replier mentioned, LLMs are good at style transfer when given a rigid ruleset -- but this technique sometimes just means extra work at the operator level to needlessly define something the model is already very aware of.

"write a fizzbuzz fn" will create a function with the same output. "write a fizzbuzz function using modulo" will get you closer to verbatim -- but my point here is that in the grand scheme of "will this get me closer to alleviating typing-caused-RSI-pain" the pseudocode usually only needs to get whipped out when the LLM does something braindead at the function level.

serf commented on Electromechanical reshaping, an alternative to laser eye surgery   medicalxpress.com/news/20... · Posted by u/Gaishan
singularity2001 · 7 days ago
Is it even glued on I thought it just put there and sticks through adhesive forces
serf · 7 days ago
it's placed into a flap that is cut into corneal tissue.

the flap size itself keeps the lens in place; the elasticity of the underlying tissue itself, until it heals into an encapsulation.

the surgery videos of that procedure make me squeamish unlike other surgery videos. Watching an eyeball get deflated/inflated with liquid pressure from the surgeon is just un-nerving to me; not as bad as watching a glaucoma surgery -- but up there.

serf commented on 'Tradwife', 'delulu' and 'skibidi' among new words added to Cambridge Dictionary   news.sky.com/story/tradwi... · Posted by u/austinallegro
TillE · 7 days ago
I think despite having lived through it, it's easy to miss just how transformative smartphones and social media have been to human society.

There's been an absolute explosion in communication. In the early years of the internet it was pretty exciting and novel to be able to talk to people from other countries. Now it's completely unremarkable.

All this of course has a huge effect on how language develops and is used, and really we're still in the early years of it all (I guess The Smartphone Era starts around 2010 or so).

serf · 7 days ago
counterpoint:

i've been on my phone/social/media/etc through the entire trend and this is the only time i've ever read the word 'delulu'; I had to look it up.

Might I suggest that tribe matters a lot in this context?

I don't listen to k-pop, I don't watch machinima, and I only knew 'tradwife' from the bullshit politics associated with the concept..

I think Cambridge called these too early. Maybe i'm old, and maybe i'm sheltered, but I never hear these words used in real life aside from a young nephew who was into the toilet thing, and he didn't so much use the word as just scream SKIBIDI while dancing around the room.

I'm fine with being old. Some trends you prefer to see sail away from you.

serf commented on Claudia – Desktop companion for Claude code   claudiacode.com/... · Posted by u/zerealshadowban
rovr138 · 8 days ago
Not tied to VSCode is a big one for me. This one is agnostic.

Continue.dev has some features, but it’s on VSCode and Jetbrains

serf · 8 days ago
"agnostically gnostic".

you give up one side of freedom (the ide) for the other (the backend).

u/serf

KarmaCake day9884November 25, 2012
About
i'm sorry!

hn_serf@gmx.com

View Original