We need to see DeepSWE scores. SWE Bench Pro is junk.
Where did you get that idea? It uses mini-swe-agent, same as SWE-Bench. https://github.com/datacurve-ai/deep-swe
Given DeepSWE just blew apart the SWE-Bench Pro benchmark and handed a 14-point lead to GPT-5.5, it looks pretty bad that they've listed SWE-Bench first in the model release and no DeepSWE. Like, this isn't obviously an…
From a lot of game jam games with custom engines, I have a pretty standard approach: I set the game clock to zero timestep, and push a pause gamestate onto the gamestate stack, where top gamestate gets all input. The…
I don't think that is incompatible at all. It's a restatement of the same thing: If someone is right a lot they are likely not making assertions about things that they know nothing about. If they are making assertions…
> > Nobody in their right mind would want to learn programming in BCPL > I agree, but that's not what the author thinks: The author of this document is Martin Richards, the creator of BCPL. Of course he thinks you would…
Also pipx isn't reproducible - it re-resolves dependencies so you may end up with different versions over time or in different places, eventually causing something to break. If you have a shiv working it stays working,…
> However the following is fine: > > case $a in > > No field splitting occurs here This kind of bullshit is how I made a career rewriting people's buggy shell scripts in Python
Good. As someone who is a paid up OpenAI user I absolutely don't agree that there should be a role for a team screaming to put the brakes on because of some nebulous, imagined "existential risk" of hypothetical future…
> I would be interested in examples of code that users believe require cancellation-specific async code, though. This happens all the time. For example, cancellation in the middle of sending a HTTP request. The…
Python imports are much more principled than sourcing bash though. They are executed in a new namespace, and subsequent imports reference that namespace directly instead of re-evaluating the code. C extensions don't…
Mu uses the QScintilla editor from https://pypi.org/project/QScintilla/, which is GPLv3.
Don't make it a tuple. A tuple indicates heterogenous data (a record), while a list indicates a sequence of data. If nothing else, use lists because the syntax means it stays as a list even if you someday remove all but…
Code review: default_reasons doesn't need to be a dict. Use a list. You don't need random.randrange(). Use random.randint() to select a random integer and random.choice() to select a reason from default_reasons.
We need to see DeepSWE scores. SWE Bench Pro is junk.
Where did you get that idea? It uses mini-swe-agent, same as SWE-Bench. https://github.com/datacurve-ai/deep-swe
Given DeepSWE just blew apart the SWE-Bench Pro benchmark and handed a 14-point lead to GPT-5.5, it looks pretty bad that they've listed SWE-Bench first in the model release and no DeepSWE. Like, this isn't obviously an…
From a lot of game jam games with custom engines, I have a pretty standard approach: I set the game clock to zero timestep, and push a pause gamestate onto the gamestate stack, where top gamestate gets all input. The…
I don't think that is incompatible at all. It's a restatement of the same thing: If someone is right a lot they are likely not making assertions about things that they know nothing about. If they are making assertions…
> > Nobody in their right mind would want to learn programming in BCPL > I agree, but that's not what the author thinks: The author of this document is Martin Richards, the creator of BCPL. Of course he thinks you would…
Also pipx isn't reproducible - it re-resolves dependencies so you may end up with different versions over time or in different places, eventually causing something to break. If you have a shiv working it stays working,…
> However the following is fine: > > case $a in > > No field splitting occurs here This kind of bullshit is how I made a career rewriting people's buggy shell scripts in Python
Good. As someone who is a paid up OpenAI user I absolutely don't agree that there should be a role for a team screaming to put the brakes on because of some nebulous, imagined "existential risk" of hypothetical future…
> I would be interested in examples of code that users believe require cancellation-specific async code, though. This happens all the time. For example, cancellation in the middle of sending a HTTP request. The…
Python imports are much more principled than sourcing bash though. They are executed in a new namespace, and subsequent imports reference that namespace directly instead of re-evaluating the code. C extensions don't…
Mu uses the QScintilla editor from https://pypi.org/project/QScintilla/, which is GPLv3.
Don't make it a tuple. A tuple indicates heterogenous data (a record), while a list indicates a sequence of data. If nothing else, use lists because the syntax means it stays as a list even if you someday remove all but…
Code review: default_reasons doesn't need to be a dict. Use a list. You don't need random.randrange(). Use random.randint() to select a random integer and random.choice() to select a reason from default_reasons.