HackerTrans
TopNewTrendsCommentsPastAskShowJobs

derN3rd

no profile record

comments

derN3rd
·hace 11 meses·discuss
electronic medical record

no more paper stuff so rather some software where they have to type all the details into the computer
derN3rd
·el año pasado·discuss
We've been using zod 4 beta already with great improvements but due to our huge codebase not being able to handle the required moduleResolution settings, we cannot upgrade...

They could at least also publish it as a major version without the legacy layer

EDIT: I've just seen the reason described here: https://github.com/colinhacks/zod/issues/4371 TLDR: He doesn't want to trigger a "version bump avalanche" across the ecosystem. (Which I believe, wouldn't happen as they could still backport fixes and support the v3 for a time, as they do it right now)
derN3rd
·hace 2 años·discuss
To allow the maintainers of the projects to see in the traffic analytics where an influx of stars comes from, I guess

https://docs.github.com/en/repositories/viewing-activity-and...
derN3rd
·hace 2 años·discuss
There is also Homerow (homerow.app) for MacOS that does this on a system level
derN3rd
·hace 2 años·discuss
Some clubs in Berlin (Germany) already do this for quite some time and the people there are all fine with it. The vibe is just different, because the people focus more on each other or themself instead of generating content for some online profiles.
derN3rd
·hace 2 años·discuss
Not to sound rude, but isn't this exactly what Rewind.ai does since a couple of years?
derN3rd
·hace 2 años·discuss
Reminds me of Bandle (bandle.app) where you are guessing the song by listening to parts of a song (drums, then drums+base etc)
derN3rd
·hace 3 años·discuss
Looks like it has been like this since before 2009 already https://wowpedia.fandom.com/wiki/Blizzard_Downloader
derN3rd
·hace 3 años·discuss
Just thought that the `This rework addressed a series of long-standing memory leaks and use-after-free issues in the following APIs that support` part will finally solve memory issues with jest, but Simen Bekkhus already posted that it's still an issue... (https://github.com/nodejs/node/issues/35375#issuecomment-174...)
derN3rd
·hace 3 años·discuss
Wouldn't it be simpler and easier for clients to implement when they would use the TXT to store a magnet link and host the file via webtorrents?

Maybe such a solution already exists, but I couldn't find it
derN3rd
·hace 3 años·discuss
Yesterday I had the case where I needed to create analytics tables in Clickhouse based on typescript types for around 150 types.

Thought I'd give it a try and gave chatGPT 2 examples of existing tables and the corresponding TS types and asked it if it understood what it should do next. It explained the existing logic and also 2 edge cases hidden (e.g. if a type was boolean the column was UInt8 (to save 0/1))

Then I pasted all types in batches of 15 in and it generated with only 2-3 corrections needed, probably saving me around 1-2h of manual checking and/or creating. It understood that certain fields are non LowCardinality and therefore not used it.