So it's old enough already in Europe.
HN user
panzi
https://github.com/panzi/
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.
Here a German podcast episode not about this publication, but in general about geothermal power in Germany: https://erdeumwelt.podigee.io/11-erdwarme
If you speak German it's very interesting. Sounds like we should build more geothermal power plants.
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 also want to be able to debug the database in an SQL console with nice looking date-times.
Well, I would also like a proper datetime/timestamp datatype that isn't just a string.
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.
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!
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.
And then there is https://schema.org/ It's the item* attributes, e.g.: https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/... Also Dublin Core in <meta> tags. Why do they keep adding conflicting meta data formats to HTML!?!
Python packages aren't quite so insane on transitive dependencies. The diff of package-lock.json can be novel length.
or for anything
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?
We have the same saying in German: Operation erfolgreich, Patient tot.
How many ships does Meta have?
On one hand yes, sandbox everything. On the other the extensions still can change your code which you then run. Though you might only run it in a container at first.
I heared zed sandboxes extensions. I should have a look at that editor some day.
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.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>Plus the lock file doesn't just contain the exact versions, it contains hashes. Making sure that you actually got the package in the exact same version.
How does Maven handle JNI? Is it also a build system for C/C++, or do packages with native bindings require manual build steps?
Last I checked npm had 2FA for publishing, but cargo didn't. I don't think cargo is any better than npm, just not that of an attractive target.
A good part of it is already implemented in web crypto, which is supported by browsers and node. There is a chance that npm could implement something there without extra dependencies. Maybe I'm too optimistic?
Does Debian 12 have this patched? But I guess I'm not affected if I don't use `rewrite` or `set` anywhere?
Is NTSYNC used for anything else other than wine/proton?
So are certain states of the USA: https://www.ipvanish.com/blog/ban-vpns-us-privacy/
It's horrible everywhere. If you're in the EU go donate to: https://epicenter.works/ They're a citizen rights NGO working against all that BS in the EU (and in Austria, where they're from).
We should assume that multiple state actors already are using it.
What use cases do you see?