neutrinobro
|
2 days ago
|
on: FFmpeg at Meta: Media Processing at Scale
> At the same time, new versions of FFmpeg brought support for new codecs and file formats, and reliability improvements, all of which allowed us to ingest more diverse video content from users without disruptions.
While it is good they worked to get their internal improvements into upstream, and this is certainly better behavior than some other unmentioned tech giants. It makes one wonder (since they are presumably running it tens of billions of times per day), if they were involved in supporting these improvements all along. If not, why not?
neutrinobro
|
28 days ago
|
on: We rendered and embedded one million CAD files
Neat, but also hilarious! Searching for "mug" gives results where the first item listed (ABC-00008297) is a mug model with a hole not only in the top to pour in your drink, but also in the side and bottom (just in case you wanted more access to your liquid).
neutrinobro
|
1 month ago
|
on: Building a 25 Gbit/s workstation for the SCION Association
No idea, you can still get one-off boards here and there, but buying anything in quantity has been tricky. I can only surmise supermicro's resources are largely tied up with AI data center build out, with everything else relegated to short runs.
neutrinobro
|
1 month ago
|
on: Building a 25 Gbit/s workstation for the SCION Association
Nice write up! For this sort of thing, I have leaned towards AMD Epyc, Intel e810, and DPDK for the software stack. Unfortunately, lately the supermicro H13SSL line of mobo's appear to have become near-unobtainable with ridiculous 6+ month lead times.
neutrinobro
|
5 months ago
|
on: The treasury is expanding the Patriot Act to attack Bitcoin self custody
My comment was directed at your statement "that at no point in history was the US dollar 100% backed by gold (or silver, originally). Never." which is entirely false. The US dollar (the currency unit), was at one point quite literally an exact weight of silver. This is no longer the case, but it was true in the past. This has nothing to do with the nation debt, or what is backing it. Obviously, the national debt isn't collateralized by precious metals or anything else except the military and power to raise taxes.
neutrinobro
|
5 months ago
|
on: Shai-Hulud malware attack: Tinycolor and over 40 NPM packages compromised
The lack of an easy method to automatically pull in and manage dependencies in C/C++ is starting to look a lot more like a feature than a bug now.
neutrinobro
|
5 months ago
|
on: The treasury is expanding the Patriot Act to attack Bitcoin self custody
Wrong. As per the Coinage Act of 1792, the US dollar was to be equal to exactly 371.25 grains of fine silver.
neutrinobro
|
6 months ago
|
on: NASA finds Titan's lakes may be creating vesicles with primitive cell walls
Titan is completely dead, you can bet on that.
neutrinobro
|
6 months ago
|
on: OpenAI says it's scanning users' conversations and reporting content to police
Yeah, I was equally surprised. I am using a patched version of ollama to run the models:
https://github.com/austinksmith/ollama37 which has a trivial change to allow it to run with old versions of cuda (3.5, 3.7). Obviously this was before tensor cores were a thing, so you're not going to be blown away by the performance, but it was cheap. I got 3x k40s for $75 on ebay, they are passively cooled, so they do need to be in a server chassis.
neutrinobro
|
6 months ago
|
on: OpenAI says it's scanning users' conversations and reporting content to police
I have a old system with 3 ancient Tesla K40s which can easily run inference on ~30B parameter models (e.g. qwen3-coder:30b). I mostly use it as a compute box for other workloads, but its not completely incapable for some AI assisted coding. It is power hungry though, and the recent spike in local electricity rates is enough of an excuse to keep it off most of the time.
neutrinobro
|
7 months ago
|
on: From XML to JSON to CBOR
These days you don't have to worry about endianness much (unless you dealing with raw network packets). However, you do need to worry about byte-padding. Different compilers/systems will place byte padding between items in your struct differently (depending on the contents and ordering of items), and if you are not careful the in-memory or on-disk placement of struct data elements can be misaligned on different systems. Most systems align to a 8-byte boundary, but that isn't guaranteed.
neutrinobro
|
7 months ago
|
on: Tour de France confronts a new threat: Are cyclists using tiny motors?
Just drill a small ~1mm hole in the seat/down tube of all bikes before each race. That shouldn't meaningfully affect the frame's structural integrity, but would easily disable any small motor attached to the crank.
neutrinobro
|
7 months ago
|
on: Claude Code weekly rate limits
This was bound to happen at some point, but probably net-on-net won't affect most users. I think it's pretty useful for a variety of tasks, but those tend to fall into a rather narrow category (boilerplate, simple UI change requests, simple doc-strings/summaries), and there is only so much of that work which is required in a month. I certainly won't be cancelling my plan over this change, but so far I also haven't seen a reason to increase it over the hobbyist-style $20/mo plan. When I do run into usage limits, its usually already at the end of the day, or I just pivot to another task where it isn't helpful.
neutrinobro
|
9 months ago
|
on: Cheap yet ultrapure titanium might enable widespread use in industry (2024)
Buried at the end of the article:
> A limitation of this work is that the resulting de-oxygenated titanium contains yttrium, up to 1% by mass;
> After solving the yttrium contamination problem, applications to industrial manufacturing will be straightforward.
One wonders how much of a problem this is for most applications, and how easy it will be to solve...
neutrinobro
|
11 months ago
|
on: The Internet Slum: is abandoning the Internet the next big thing? (2004)
You are free to use facebook.
neutrinobro
|
1 year ago
|
on: The Curious Similarity Between LLMs and Quantum Mechanics
I was half expecting a discussion of the eigenvalues of a random matrix, or something at least halfway plausible, but no, this is useless mumbo jumbo, a la Deepak Chopra. People with zero understanding of quantum mechanics should stop making analogies to everything else.
neutrinobro
|
1 year ago
|
on: SpiceNice – An open source spice database
No, that's exactly why I clicked on it too.
neutrinobro
|
1 year ago
|
on: Why is language documentation still so terrible?
I disagree, cppreference is pretty good. The information is very complete and useful examples abound. And just because you may not understand a template operator definition does not make it useless documentation.
neutrinobro
|
1 year ago
|
on: Ask HN: Fast data structures for disjoint intervals?
In the past for this sort of thing I've used an interval tree
https://en.wikipedia.org/wiki/Interval_tree
However, that was mainly for the case where I needed to detect overlapping intervals. Depending on your application perhaps a K-d tree, in this case, K=2 (one dimension for start-time the other for the end-time)? If you know that all you intervals are entirely disjoint (no overlap at all) I don't think you'll be able to do better than just an ordered map or list.
neutrinobro
|
1 year ago
|
on: Run CUDA, unmodified, on AMD GPUs
Cries in OpenCL
While it is good they worked to get their internal improvements into upstream, and this is certainly better behavior than some other unmentioned tech giants. It makes one wonder (since they are presumably running it tens of billions of times per day), if they were involved in supporting these improvements all along. If not, why not?