HN user

panzi

1,053 karma

https://github.com/panzi/

Posts1
Comments730
View on HN
Blender 5.2 LTS 3 days ago

Are you confusing Blender with some other software? Blender is free and open source software. People donate to it because they 1) want to support the project and 2) have the money. If you don't have the money you just don't donate.

About 90° rotated tables: Sometimes only the text in the headers are rotated. Sometimes not to 90°, but some arbitrary value.

And then there are digital signatures. 5 years ago I looked into automatically verifying signed documents. Either there are multiple competing standards on how to sign a PDF or my government (Austria) just invented their own for the heck of it. Could not figure out to verify those signatures. Our government provides a website where you can upload such a PDF so they verify it for you. Yeah, sure. Nice try. The source of the website is open, but it is the kind of abstracted factory heavy Java where I couldn't figure out where it all happens. It doesn't happen in one place, but multiple abstract places and at some point I just gave up trying to reverse engineer how it is done. The signatures I calculated never matched.

I am interested in programming language topics and I certainly have heard of Odin and have seen a couple of interviews with Ginger Bill. Same with Zig, Rust, Jai, C++ etc. I haven't used much of these (only C++ and Rust out of these), though. But I find that stuff interesting.

Winamp Skin Museum 20 days ago

Yeah, back in the day I made myself one from screenshots of the in-game GUI of Chrono Trigger. It wasn't very good, but hey, it was mine!

Winamp Skin Museum 20 days ago

Even Linux DEs have it less now than they used to, but there are renewed efforts to bring a better universal theming engine to KDE at least.

It's more difficult now than it was back then for KDE I guess, because with Qt Widgets, QML, and Plasma you basically have three times as much to support in a theme/theming engine. And then back in the day better KDE themes also provided themes for Gtk, so that Gtk apps integrated nicely. How many concurrent Gtk versions are now used that you would all have to support? And sometimes (especially non-Qt programs) take some colors from the theme, but not others, breaking everything when you want to customize your theme (you get e.g. black text on black background). So I appreciate the renewed effort, but I'm not holding my breath.

I mean the animated graphics and some other hackery going on when you try to zoom. It thinks to detect a different scroll position and jumps to a different slide. Also means you can't convert it to a PDF or print it, if you want to (though I wouldn't want to do that).

The animated graphics are fancy, but can anyone with a screen reader tell us how that "looks" to them? The graphics are all one SVG mixed together with different parts set to opacity: 0. The accessibility tree in Firefox gives you all the labels randomly mixed together. If that is how people with screen reader "see" it, its unusable.

Maybe make the graphic aria-hidden and add an empty tag with aria-description (or other kind of tag only screen readers see) describing the current graphic to each slide.

While I'm not that against to such a web page (when viewing it on a monitor, not a phone) I'd say follow these points:

• Don't hijack any browser functionality. Scrolling shall scroll the document, the end.

• Don't scale something to the screen size, breaking zoom! Especially don't do it so that when zooming causes a different scroll position and then it all jumps to a different slide. WTF!

• Make it accessible!

If you want to make flashy graphics and animations make a game. That is not meant as to belittle games, I love games.

It's the wrong way around. If we get AGI (or any well working AI) before we abandon capitalism it's going to be a huge disaster. A handful of even richer even more powerful very greedy people will have all the wealth and everyone else will have nothing. I mean, there was a WW3 in Star Trek, so maybe it was that path that humanity took in Star Trek anyway?

I googled a bit and found this snippet:

            <plugin>
                <artifactId>exec-maven-plugin</artifactId>
                <version>3.5.1</version>
                <groupId>org.codehaus.mojo</groupId>
                <executions>
                    <execution>
                        <id>Generate-shared-lib</id>
                        <phase>package</phase>
                        <goals>
                            <goal>exec</goal>
                        </goals>
                        <configuration>
                            <executable>bash</executable>
                            <arguments>
                                <argument>generate-lib.sh</argument>
                            </arguments>
                            <environmentVariables>
                                <JAVA_HOME>${env.JAVA_HOME}</JAVA_HOME>
                            </environmentVariables>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
At least with certain plug-ins Maven will execute arbitrary commands at build time. And if you need that to build native bindings it feels like a big hole. Granted, most projects don't need JNI, I guess.
HTML Lists 2 months ago

Wasn't it more like this?

    <style>
    @keyframes blink {
        0% { visibility: visible; }
        50% { visibility: hidden; }
        100% { visibility: visible; }
    }
    
    blink { animation: blink 0.7s steps(1, end) infinite; }
    </style>

    <blink>This guy blinks.</blink>
New Nginx Exploit 2 months ago

Does Debian 12 have this patched? But I guess I'm not affected if I don't use `rewrite` or `set` anywhere?