HackerTrans
トップ新着トレンドコメント過去質問紹介求人

virtualritz

no profile record

投稿

Opus 4.1 12× Reduced on Max Plan, Sonnet 4.5 Considered Lagging

github.com
8 ポイント·投稿者 virtualritz·9 か月前·3 コメント

コメント

virtualritz
·16 日前·議論
> mythos allowed mediocre people to get results by holding their hand through the process,

Yes, just like early cars allowed mediocre horse riders to get from A to B with dignity.

Or like my Japanese rice cooker allows a person like me, utterly shitty at preparing this, to eat some rice that is cooked to perfection.

Etc.
virtualritz
·25 日前·議論
We only know how many were discovered.

Since we do not know the ratio to undiscovered this "1-2" is meaningless to assess the risk of this sort of attack.
virtualritz
·先月·議論
That is what pure desperation about your moat getting nullifying looks like.

Cast into TOS and code. Openly so.
virtualritz
·先月·議論
Same with truffle mayo or truffle-based products. [1]

People who grew up on the artificial flavor prefer it over the real one. I have quite a few in my circle of friends.

You go to an Italian restaurant and you get plain pasta, panned in butter or olive oil and then someone comes with a real truffle and grates it in front you of over your dish until you tell them to stop. You pay for that amount.

Unless you go to a restaurant with a great reputation or some Michelin star venue, that is the only way to be sure you're eating real truffles. The dish has no truffle-aroma itself and the truffle is grated while you watch.

Assuming ofc (and probably true for most people): your palate is not well acquainted to the taste of the real thing enough to tell it apart from the many fakes/substitutes.

[1] https://www.tasteatlas.com/truffle-industry-is-a-big-scam
virtualritz
·先月·議論
255.0. Everything else makes no sense and is actually dangerous when working with colors. Trust me. :)

And when you go from float to 8bit you should dither to avoid banding.

If in doubt, error diffusion with a random number between -0.5..=0.5 is fine. 0.5 here is dither_amplitude:

round(255 * input_value + dither_amplitude * random(-1, 1))

See e.g. my dithereens crate: https://crates.io/crates/dithereens
virtualritz
·先月·議論
And both are wrong since the values would have to be in a linear color space for for the compositing math to make sense. But in some non-linear space to be useful when mapped to 0..255 (e.g non-linear sRGB).

Which happens right after the Porter-Duff Over operator above -- a smoking gun. Which one is it gonna be?

I.e. the display transform is omitted from this and the math involved with the latter makes your whole argument moot.

It can't be expressed well enough with bitshifts to keep your purported 10x speedup anyway (and which I strongly doubt btw).

And lastly: in a software renderer that stuff is usually <0.01% of the compute in the absolut worst case.

P.S.: I'm speaking from 30 years of experience with software rendering in the context of VFX.
virtualritz
·先月·議論
PascalCase == Heap allocated makes a lot of sense to me.

Even if one may argue that scripting languages usually abstract ideas like stack and heap away. :)
virtualritz
·先月·議論
Why do not call a 'record' a 'struct'?

Same with 'List' vs 'Vec'.

And why are List, String & co uppercase?

From what I gather these are built-in types the compiler knows?

'i32', not 'I32' but 'List' not 'list'? In Rust the case is clear cut: built-ins that the compiler 'knows' are lowercase, types expressed in Rust itself are PascalCase.

Roto seems to mix this?

Reads like Rust but then "differs subtley" where it (seemingly?) does not matter at all.

What is the rationale? I'm not complaining, Roto looks great. I'm considering swapping my Koto integration in my project out for this. :)

I'm just genuinely curious. From the outside the above smell like "just because" decisions.
virtualritz
·2 か月前·議論
Controls feel reversed for me.

I would add this as a setting.
virtualritz
·2 か月前·議論
I would add that Rust also has naming guidelines and sticking to them removes or at least minimizes the occurrence of another common topic of discussions on PRs/reviews.

In the article, if you were to mention & follow them GetUser() in Go becomes user() in Rust[1], not get_user().

[1] https://rust-lang.github.io/api-guidelines/naming.html#gette...
virtualritz
·2 か月前·議論
RGB is not a color space but a color model.

sRGB or ACEScg are color spaces.

CMYK or RGB etc. are color models.

This matters a lot. And yeah, it seems this supports neither and it is unclear if operations happen in linear light at a bit depth of at more that 8bit/channel.

If they don't, most of them will produce subtly wrong results.
virtualritz
·2 か月前·議論
"Materials

Two types of spaghetti (regular No. 5 and gluten-free) produced by the Barilla company (Italy) were purchased in a supermarket."

Are you kidding me? You did a study and tested /one/ kind of gluten-free pasta?

There are so many different kinds from different companies. One type from Barilla is nowhere near representative to draw a useful conclusion.

Especially as unlike many other gluten-free pasta products it lacks an important binding agent.[1]

As someone with a gluten-allergic partner I regularly make pancakes and bake bread with (Italian!) rice-based flour.

And they are difficult to distinguish from the flour based ones, in taste, texture, fluffiness and and structural integrity.

The secret to this is xantham gum. It acts as a binding agent in gluten-free baking, providing the elasticity and stickiness that gluten typically offers. It helps to hold ingredients together and improve the texture.

I learned this when eating excellent gluten-free pinza, in a small place in Catania, Sicily, whose owner has celiac disease.

Ah yes, as far as pasta goes there is also research about this ofc[2]

[1] https://www.barilla.com/en-us/products/pasta/gluten-free/glu...

[2] "Incorporation of xanthan gum to gluten-free pasta with cassava starch. Physical, textural and sensory attributes"

https://www.sciencedirect.com/science/article/abs/pii/S00236...
virtualritz
·2 か月前·議論
When I lived in Adelaide, Australia 2006 or 2007, flexible-neck LED lamps that you plugged into an USB port to have light on your keyboard (backlit keyboards were not the norm on laptops) were a novelty item.

People simply didn't /know/ about them/that they existed at all.

I went to a computer/electronics shop in town and asked for them.

The guy told me: "We don't stock them because people don't ask for them."
virtualritz
·2 か月前·議論
Like the author of the article, I write C/C++ since 30 years. Mostly close-to-the-metal code around computer graphics. Actually: wrote.

After switching to Rust five years ago I agree with all the Rust hipsters as far as disliking those languages go.

I just don't talk about it a lot. If every Rust person I know that was a C/C++ developer before was as outspoken about what they think of the latter, you'd see that these people are a majority.

We're just old hands who like to use stuff that works. And most of us don't get attached to code or languages.

It's also difficult to admint to yourself that you were never in command of a language as far as UB/other footguns go, as much as you thought. Or ever, for your enire career. For me that self-realization about C/C++ (enabled by Rust) was a turning point.

Lately you can read about the dichotomy re. AI use.

I.e. developers who define them themselves through what they build/ideas are embracing LLMs; for what they can do.

I.e.: I am what I build.

Whereas developers for whom software engineering is a craft that defines them hate them openly.

I.e.: I am how I build.

Now this seems to suggest to me that maybe Rust developers who openly hate C/C++ squarely belong to the latter group whereas the silent ones belong to the former. It's builders vs programmers. Just different world views.

Also you can not dislike something and still not speak about it. Because you decided to not care.
virtualritz
·2 か月前·議論
No inverse kinematics?

That is the most important feature this would make me use this over the good old wooden puppet, which is small (10cm). I.e. it travels with me with my drawing utensils.

I guess I am asking: what exactly is the value proposition?
virtualritz
·2 か月前·議論
I read the article. Their chess section makes no sense as in "why this wouldn't work for CTF".

But I don't know enough that's why I asked.

I imagine one could do CTF in public, machines you work on vetted/prepared to some spec, yada yada.

If chess and Go can do it why can't CTF?

That was my question when I wrote "what am I missing here".
virtualritz
·2 か月前·議論
Chess and Go are not dead just because Ai got better than humans at these games.

What am I missing here?
virtualritz
·2 か月前·議論
Personal take: terribly disguised pitch to get someone to buy that way too long domain name from you.
virtualritz
·2 か月前·議論
Well, Python's uv seems to suggest people can see the light and pivot to one build/dep mgmt tool.

Decades into a language not having a single one projects/people agree to use, solely.

So I wouldn't be so hasty with that assessment for one for C++.
virtualritz
·2 か月前·議論
"Rust, [...], a build system that fought you"

I started using Rust in 2018 and I've never used a build system that fought me less, ever, before or after.

I stopped reading after that sentence.