Readit News logoReadit News
make3 commented on DeepSeek-v3.1   api-docs.deepseek.com/new... · Posted by u/wertyk
amelius · 11 days ago
Aren't good benchmarks supposed to be secret?
make3 · 5 days ago
if you're able to submit multiple times, then you can learn from the hidden set
make3 commented on GPT-5   openai.com/gpt-5/... · Posted by u/rd
Wowfunhappy · 25 days ago
> For example, if you are an ELO 1000 chess player would you yourself be able to tell if Magnus Carlson or another grandmaster were better by playing them individually?

No, but I wouldn't be able to tell you what the player did wrong in general.

By contrast, the shortcomings of today's LLMs seem pretty obvious to me.

make3 · 25 days ago
the argument is for in the future, not now
make3 commented on Genie 3: A new frontier for world models   deepmind.google/discover/... · Posted by u/bradleyg223
alphabetting · a month ago
I doubt there was a condition on writing positively. Other people who tested have said this won't replace engines. https://togelius.blogspot.com/2025/08/genie-3-and-future-of-...
make3 · a month ago
It wouldn't be surprising if a structured version of this with state cached per room for example could be used in a game.

& you're basically seeing GPT-3 and saying it will never be used in any serious application.. the rate of improvement in their model is insane

make3 commented on ‘No Other Land’ consultant Awdah Hathaleen killed by Israeli settler   latimes.com/entertainment... · Posted by u/_shadi
diggan · a month ago
The settlers been at this for a long, long time. It was hard for me to understand their perspective as well, because surely they most be seeing what they do as something good, like everyone else. There is a BBC documentary that goes into more depth, but a short snippet of the documentary can be found here: https://www.youtube.com/watch?v=lrdldVhfbaU which includes a short interview with Daniella Weiss, a Orthodox Zionist who founded a organization focusing on creating these civilian colonies for Israelis.

As far as I can tell, from talking with Israelis both living in Israel and outside, there really isn't one majority thinking a certain way, it seems to me that there is an equal amount of people cheering the settlers as there are people against what they're doing.

make3 · a month ago
Except most polls, etc., show that you're wrong and that most Israelis are pro-colonization, and don't care about Palestinian lives, etc. Some things just aren't easy to say in casual conversation. https://www.nytimes.com/2025/07/28/world/middleeast/israel-d...
make3 commented on Steam, Itch.io are pulling ‘porn’ games. Critics say it's a slippery slope   wired.com/story/steam-itc... · Posted by u/6d6b73
advael · a month ago
It's crazy to me that people can simultaneously understand that censorship is bad and still think we can allow for exceptions for things like "obscenity/pornography" or "hate speech"

Free expression means that objectionable things will be said, even published. There are certainly hairy exceptions, like doxxing, slander, or incitement to violence that can put people in immediate danger, but stuff like this clearly doesn't fall in that category, and giving finance the ability to censor in this way is not signficantly better than governments doing so

make3 · a month ago
I think hate speech is a separate case from porn, honestly. Porn is not ideal but it's not ideal as letting people mount hate against minorities, which imho is unacceptable
make3 commented on Psilocybin treatment extends cellular lifespan, improves survival of aged mice   news.emory.edu/stories/20... · Posted by u/atombender
itake · a month ago
that is how I feel about exercise... spending 10 hours per week in my youth at a gym for 40 years to buy me an extra 10-20 years at the end of my life.
make3 · a month ago
you can do 3 hours and have huge benefits already
make3 commented on Hyatt Hotels are using algorithmic Rest “smoking detectors”   twitter.com/_ZachGriff/st... · Posted by u/RebeccaTheDev
lxgr · a month ago
There has got to be a way to penalize companies for attempting this kind of thing. Even just removing the charge without discussion isn't enough, as some people will be traveling on a corporate card they don't necessarily monitor closely, will confuse the charge for something else etc.

Otherwise, I'd love to be able to preemptively and without any prior communication charge (way in excess of the room rate, of course!) hotels for broken appliances, poor cleanliness etc., and put the burden of proof that everything was fine on them.

make3 · a month ago
Well, if you had kept Lina Khan at the head of the FTC and not elected Trump, the country could work on continuing to improve consumer protections.
make3 commented on Linux Reaches 5% Desktop Market Share in USA   ostechnix.com/linux-reach... · Posted by u/marcodiego
palata · 2 months ago
I agree with your points, except this:

> thanks to the Steam Deck [...] but I would be reluctant to call that Linux Desktop anymore than I would call Android an uptick for Linux.

The Steam Deck very much runs Linux Desktop. Android runs the Linux kernel, but everything else is different. SteamOS is a Linux distribution based on Arch. If you run your Steam Deck in "desktop mode", it is very much a Linux Desktop (with a read-only system and A/B updates etc, but still).

make3 · a month ago
I guess the parent discussion is partly about whether the GNU/Linux desktop experience is getting popular, & if no one is using desktop mode in practice then this is not super informative, though good to know

Deleted Comment

make3 commented on I'm switching to Python and actually liking it   cesarsotovalero.net/blog/... · Posted by u/cesarsotovalero
Mawr · 2 months ago
Just a small note on the code in the linked script:

    API_KEY = os.environ.get("YOUTUBE_API_KEY")
    CHANNEL_ID = os.environ.get("YOUTUBE_CHANNEL_ID")
    
    if not API_KEY or not CHANNEL_ID:
        print("Missing YOUTUBE_API_KEY or YOUTUBE_CHANNEL_ID.")
        exit(1)
Presenting the user with "Missing X OR Y" when there's no reason that OR has to be there massively frustrates the user for the near zero benefit of having one fewer if statement.

    if not API_KEY:
        print("Missing YOUTUBE_API_KEY.")
        exit(1)
    if not CHANNEL_ID:
        print("Missing YOUTUBE_CHANNEL_ID.")
        exit(1)
Way better user experience, 0.00001% slower dev time.

make3 · 2 months ago
why print then exit(1) instead of raising an exception?

u/make3

KarmaCake day1689April 15, 2013
About
FFEEDD ff6600 a77858
View Original