HackerTrans
TopNewTrendsCommentsPastAskShowJobs

altbdoor

243 karmajoined 8 yıl önce

Submissions

Show HN: Combine WigglyPaint GIFs into Video

altbdoor.github.io
3 points·by altbdoor·geçen ay·0 comments

CVE-2026-23869: CVSS 7.5 in React Server Components lead to Denial of Service

vercel.com
1 points·by altbdoor·3 ay önce·0 comments

comments

altbdoor
·17 saat önce·discuss
[dead]
altbdoor
·3 gün önce·discuss
They had a short blog post about this:

https://developers.cloudflare.com/changelog/post/2026-07-08-...
altbdoor
·28 gün önce·discuss
https://archive.is/NndS8
altbdoor
·2 ay önce·discuss
Just found the link to the project: https://github.com/WorldMaker/butterfloat

That's neat, will give it a spin in the future.
altbdoor
·2 ay önce·discuss
Interesting to know. Personally I've also been trying out other library/frameworks, like Vue, AlpineJS, or just plain server side rendering.

I have heard a little about ClojureScript here and there. Will take a look at it when I am free!
altbdoor
·2 ay önce·discuss
I know there will probably be some complications here and there, but this could be done with Web Components too, right?
altbdoor
·2 ay önce·discuss
I read one post before that really resonates with me, couldn't recall from where though:

    You love JSX, you don't love React
Many of the jobs in my location requires React though, so I have to tolerate it somehow.
altbdoor
·2 ay önce·discuss
Friendly reminder that all (I sure hope it does all...) the Copilot kerfuffle can be disabled in `chat.disableAIFeatures` flag in the settings.
altbdoor
·3 ay önce·discuss
Working with multiple teams in a large project, hooks can be a nightmare to maintain.

I see 7x layers deep of hooks, with no test cases to support them. Some of the side effects are not properly tested, and mocks that abstract away the whole implementation means the test case only works for certain scenarios.

FWIW this scenario might be an outlier in large projects, considering how some developers prefer to "just wrap the hook in another hook, and not worry about its internals".
altbdoor
·4 ay önce·discuss
Their status page communicates whats going on

https://status.appsflyer.com/
altbdoor
·5 ay önce·discuss
And then start writing "hit pieces" to all the bot PR authors? /s
altbdoor
·6 ay önce·discuss
In retrospect, Jekyll has been relatively stable recently. The last stable release was in January 2025, v4.4.1[1].

I've been using 4.3 to 4.4 without much issues, granted the sites I generate are simple.

[1]: https://jekyllrb.com/news/
altbdoor
·6 ay önce·discuss
> I think it's sending my message to the server continuously

It is, at least I see it for the first message when starting a new chat. If you open the network tools and type, you can see the text being sent to the servers on every character.

Source, from spending too much time analysing the network calls in ChatGPT to keep using mini models in a free account.
altbdoor
·7 ay önce·discuss
To Logan's credit though, his team made and drove a lot of good improvements in AI studio and Gemini in general since the early days.

I feel his team is really hitting a wall now in terms of improvements, because it involves Google teams/products outside of their control, or require deep collaboration.
altbdoor
·7 ay önce·discuss
It was one hell of a ride, but I would say the Angular team did one hell of a job too, supporting the glue code until v18 (not sure if the latest version still does).

Having both old and new Angular running in one project is super weird, but everything worked out in the end.
altbdoor
·9 ay önce·discuss
Had a meeting where developers were discussing the infrastructure for an application. A crucial part of the whole flow was completely dependant on an AWS service. I asked if it was a single point of failure. The whole room laughed, I rest my case.
altbdoor
·9 ay önce·discuss
I guess it also didn't help that these kind of PRs are most commonly generated with AI.
altbdoor
·10 ay önce·discuss
Same thoughts. Company is currently migrating from tech A to tech B, and while AI gets us 70-80% of the way, due to the riskier nature of the business, we now spend way more time reviewing the code.
altbdoor
·10 ay önce·discuss
Very interesting thought process, with lots of nitty gritty details. I recently had some idea around a repetitive process at work, and decided to try it in TUI. Oh what a ride it was!

Even armed with a library like charms or bubbletea in Golang, sometimes its just amazing how all the internals "clicked" together, to render layouts and widgets.