HackerTrans
TopNewTrendsCommentsPastAskShowJobs

chrisldgk

no profile record

comments

chrisldgk
·2 miesiące temu·discuss
That’s because he is. None of these people are your friends and all of them will fuck you over if it means getting richer and more powerful.
chrisldgk
·2 miesiące temu·discuss
At this point, why not just write the code yourself? Defining exactly what the product is supposed to do is the hard part, writing code is the easy part. Write your specs as code and you have your product - why let your LLM do the fun part?
chrisldgk
·2 miesiące temu·discuss
One thing that I can’t seem to parse from the article is why the researchers assume that this is an unresearched part of ADHD and not a different disorder entirely. I’m sure they have their reasons, but I don’t think it’s written in the article.

To me it seems that if it’s not „treatable“ the same way ADHD is, I’m not sure if it’s useful to categorize it as such. On the other hand, I’m happy if kids with this disorder can get a diagnosis and treatment that actually helps them sometime in the future due to this research.
chrisldgk
·3 miesiące temu·discuss
I would suppose it interrupts the page load after streaming the HTML and before loading and/or executing the cookie banner‘s javascript, meaning the content is there but the cookie banner will never open.
chrisldgk
·3 miesiące temu·discuss
Per their own docs, D1 is primarily meant for things like Auth DBs that you have frequent read/write access to but that store limited amounts of data. If you need more storage, running Postgres somewhere else and querying via Hyperdrive is probably what you want to do instead.
chrisldgk
·3 miesiące temu·discuss
Reading this back, I did entirely misinterpret your comment and may have acted on that a bit more emotionally than I would like to admit.

Thank you for clarifying and I wholeheartedly agree.
chrisldgk
·3 miesiące temu·discuss
You sound exactly like the tens of doctors that misdiagnosed my aunt (who passed away through euthanasia after her symptoms got too bad to live with late last year).

I understand that the symptoms of ME/CFS might be similar to being obese/depressed or housebound, but the problem is that doctors often jump to that conclusion too quickly and don’t take efforts to diagnose ME/CFS leading to situations like my aunt’s. She was also obese and depressed and has been struggling with those symptoms for about 30 years and has constantly been misdiagnosed the entire time because doctors didn’t figure out that those were symptoms of ME/CFS and not two unrelated conditions coming from two different diagnoses.

Thanks to long-covid putting the symptoms of ME/CFS on the forefront lately, there’s finally been some much needed research into the disease and people like my aunt finally get the diagnosis they should have been getting many years ago.
chrisldgk
·3 miesiące temu·discuss
My main question here is mostly why so many people still rely on axios for their fetch implementation. Native fetch has been a thing in the JavaScript world for so long, and the DX gains to using axios over it are miniscule. The only thing I can think of is axios instances, but you can easily write a tiny wrapper for fetch that would do the same.

This is a genuine question - if you still use axios, why exactly?
chrisldgk
·4 miesiące temu·discuss
People tend to forget that React != React-DOM (i.e. HTML).

React is just a framework for declaratively defining components and reactivity, the end result can be whatever you want. That’s what react-native is for mobile apps, and as another commenter pointed out, in this case it was using React Native for Windows[1], which apparently calls native Windows APIs in the background.

I like to jump on the MS hate train as much as the next guy, but React itself is not the reason the start menu is bad.

[1] https://microsoft.github.io/react-native-windows/
chrisldgk
·5 miesięcy temu·discuss
Notice the word „decriminalize“, not „legalize“. It’s about not throwing people already struggling with addiction in jail but rather offering safe alternatives (counseling, safer use, etc.).

The government‘s not passing out drugs in the street, like US media likes to suggest.
chrisldgk
·5 miesięcy temu·discuss
It’s simple, you use innerHTML if you know for sure where the input comes from and if it’s safe (for example when you define it as a hard coded string in your own code). You use setHTML when you need to render HTML that is potentially unsafe (for example forum posts or IM messages). Honest question, which part of that isn’t clear?
chrisldgk
·5 miesięcy temu·discuss
They did carry over into the USB era! I specifically remember my stepdads copy of Cubase (music production software) requiring a USB dongle to open.
chrisldgk
·6 miesięcy temu·discuss
There are sites that will happily sell you keys, though I don’t feel qualified to comment on their legitimacy.

You could also sail the seven seas and run an AutoKMS script, though that might (and probably will) include some malware.
chrisldgk
·6 miesięcy temu·discuss
Is this a quip I’m not understanding or is there really something here that bun‘s bundled wouldn’t be able to do? Because I can’t find anything.
chrisldgk
·6 miesięcy temu·discuss
Which is mainly NextJS (old and new), since under the hood that still seems to rely on Webpack.
chrisldgk
·6 miesięcy temu·discuss
That and losing the ability to connect displays via USB-C is what’s keeping me from switching sadly. I love what the Asahi team is doing and I’m confident they’ll get it figured out. I wish I could do something to help, but this type of programming is far beyond my skill level so there’s not much I can do other than donate here and there.
chrisldgk
·6 miesięcy temu·discuss
I think the point is that you can write your code using ES6 and ES7 and the TypeScript compiler allows you to output ES6 or ES5 compatible code if you want to make sure it runs in older browsers as well. You can do that with non-TypeScript ES code as well but you’re bound to use another transpiler. With TypeScript you get it „for free“ since you need to compile your code either way.
chrisldgk
·6 miesięcy temu·discuss
You‘re probably talking about this video: https://youtu.be/vU1-uiUlHTo

The part you mentioned is at around 7:29.
chrisldgk
·6 miesięcy temu·discuss
The translation layer doesn’t really matter though, does it? If a user installs a game and it runs the same, the user doesn’t care about the translation layer inbetween. If installing and running a game on Linux is the same as running it on windows, there’s no reason to prefer one over the other for gaming.
chrisldgk
·6 miesięcy temu·discuss
You should read the article.

The reasons stated against upscaling were that (re-)encoding video files should generally be done in a way that preserves as much of the original information and intent as possible. AI upscalers add information where there is none, thus modifying the video in a way that goes against that goal.