Readit News logoReadit News
Austizzle commented on Physically Based Rendering in Filament   google.github.io/filament... · Posted by u/indigo945
Austizzle · 6 days ago
Man, I got excited for a second from the title thinking this was about a way to produce 3d printer filament from PBR settings, so you could tweak a material on the computer and have your filament match the digital version
Austizzle commented on Microsoft is open sourcing Windows 11's UI framework   neowin.net/news/microsoft... · Posted by u/bundie
specproc · 22 days ago
I get there are old people and stuff, but why should anyone consider Windows these days?
Austizzle · 21 days ago
Lots of games don't run on Mac or Linux

Others, like adobe software, only run on Mac or windows

Windows computers are generally cheaper than macs for the same hardware

Plenty of stuff annoys me about windows, but for now it's still what I end up going with every time I need a new computer

Austizzle commented on Harmonic: Modern Android client for Hacker News   github.com/SimonHalvdanss... · Posted by u/flashblaze
atmanactive · 3 months ago
Can't find it on F-Droid.
Austizzle · 3 months ago
It's on the play store and there's APK files in the GitHub releases
Austizzle commented on Anatomy of a SQL Engine   dolthub.com/blog/2025-04-... · Posted by u/ingve
Austizzle · 4 months ago
Man, this title tripped me up for a minute because I pronounce it with the letters like Ess-Queue-Ell

So the "A" in "A ess-queue-ell" engine felt like it should have been an "An" until I realized it was meant to be pronounced like "sequel"

Austizzle commented on You might not need WebSockets   hntrl.io/posts/you-dont-n... · Posted by u/hntrl
Dwedit · 4 months ago
WebSockets can't go through proxies.
Austizzle · 4 months ago
I've definitely used websockets through nginx
Austizzle commented on Pricing software adds billions to rental costs, White House says   axios.com/2024/12/17/real... · Posted by u/elorant
wordpad25 · 8 months ago
maximizing profit is expect and desired behavior in a perfect market

perfect competition in open market is supposed to push all profits to zero, maximizing value for consumers

Austizzle · 8 months ago
Except the market isn't perfect and many companies actively work to decrease competition
Austizzle commented on Seamlessly transition your Twitter network to Bluesky with just a few clicks   skyfollowerbridge.com/... · Posted by u/speckx
amingilani · 10 months ago
There are several inline ads on the page that are disguised as big CONTINUE and START buttons. On mobile they look like they’re part of the site. It makes this whole site seem scammy and suspect.
Austizzle · 9 months ago
Oof yeah this site feels sketchy
Austizzle commented on Achieving high Python performance with code generation (2022)   medium.com/@yonatanzunger... · Posted by u/PaulHoule
wdroz · a year ago
I agree, you can also use Rust with PyO3[0] and Maturin[1]. It's far easier than what the author is doing is the article.

[0] -- https://github.com/PyO3/pyo3

[1] -- https://github.com/PyO3/maturin

Austizzle · a year ago
I've done this and it's a really lovely way to work once the rust stuff clicks!
Austizzle commented on Approximating sum types in Python with Pydantic   blog.yossarian.net/2024/0... · Posted by u/woodruffw
binarycoffee · a year ago
I needed to reflect Rust enums and went a bit further with that approach. All variants are wrapped in a decorated class, where the decorator automatically computes the union type and adds de/serialization hooks for `cattrs`.

    @enumclass
    class MyEnum:
        class UnitLikeVariant(Variant0Arg): ...
    
        class TupleLikeVariant(Variant2Arg[int, str]): ...
    
        @dataclass
        class StructLikeVariant:
            foo: float
            bar: int

        # The following class variable is automatically generated:
        #
        # type = UnitLikeVariant | TupleLikeVariant | StructLikeVariant
where the `VariantXArg` classes are predefined.

Austizzle · a year ago
Fascinating, how did you get the type hint on the `type` class variable to be correct? (Or is this not visible to mypy?)
Austizzle commented on Tell HN: Steinberg shut down their eLicenser service, breaking older software   steinberg.net/licensing/e... · Posted by u/TonyTrapp
Austizzle · a year ago
I own a copy of nuendo, but now I'm thinking about switching to something else like Studio One out of spite.

u/Austizzle

KarmaCake day62September 16, 2022View Original