Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
bmh
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
bmh
1y ago
What if you're formatting your own SD cards for Raspberry Pi, and need control over the partition layout, filesystem, etc. Surely there are some best practices that this tool embodies, which one can follow to achieve the same level of
2.
▲
by
bmh
1y ago
The latest Pi OS writes all logs to RAM, which might change your experience.
3.
▲
by
bmh
2y ago
I agree 100%
4.
▲
by
bmh
2y ago
They decided to use the silicon space for other things. The Pi5 CPU is powerful enough to decode most h264 streams in software. The Pi5 has an h265 hardware decoder.
5.
▲
by
bmh
3y ago
You need active cooling if you want to extract all the performance out of it. The standard cooling kits sold by Raspberry Pi are neat and cheap though, so not a problem in my experience. They have two options: A case with a fan on top, and
6.
▲
by
bmh
3y ago
Who actually uses multipath?
7.
▲
by
bmh
3y ago
It's interesting that the standard "K" (number of elements with a shared scale) is 32. That seems to imply that the neural network will somehow learn to group weights at those 32-element boundaries. Does anybody understand ho
8.
▲
by
bmh
3y ago
Haha. I first read that headline as "Hans Niemann dies using vibrating sex toy"
9.
▲
by
bmh
3y ago
"Modulation can be turned off on alternate scans to identify velocity using unmodulated carrier frequency shift. This allows range and velocity to be found with just one radar set." quote from https://navtechradar.com&#
10.
▲
by
bmh
4y ago
The short answer is: Yes, you must disable CPU frequency scaling in your BIOS if you're doing this kind of work (i.e. building cryptographic primitives that don't leak information via timing). See https://timing.attacks
11.
▲
Fusion announcement was about weapons, not energy generation
(thebulletin.org)
2 points
by
bmh
4y ago
|
3 comments
12.
▲
by
bmh
4y ago
TL;DR: The December 5th experiment was about proving to ourselves and our adversaries that we still understand how to build and validate nuclear weapons, despite the ban on testing.
13.
▲
by
bmh
4y ago
It's conceivable that within a year or two, Copilot will be good enough to make the pain of the CMake language much more bearable.
14.
▲
by
bmh
4y ago
Apparently it's a known issue: https://github.com/Djdefrag/QualityScaler/issues/21
15.
▲
by
bmh
4y ago
Windows Defender says that the binary has Trojan:Win32/Wacatac.H!ml inside it.
16.
▲
by
bmh
4y ago
This is an extremely accessible blog post, and very interesting, even if you're not deep into transformers.
17.
▲
by
bmh
4y ago
Yes, this would definitely work, so long as the two cameras have sufficient overlap. If you were to use OpenCV's stitching code, then you could run the first few phases of that on your initial photo pair, which determine the camera ang
18.
▲
by
bmh
4y ago
I'm convinced after the work I did on panoramas that one shouldn't need to involve user input. Maybe for very strange situations... but generally it shouldn't be necessary. This is especially true if you have access to the IM
19.
▲
by
bmh
4y ago
I started from the OpenCV stitching_detailed example, and worked from there. That example runs pretty much out of the box on Android.
20.
▲
by
bmh
4y ago
A panorama is built by stitching together many images taken from the same viewpoint. The 1st critical thing you need to know, is that the camera may not move. It may only rotate. If the camera moves a tiny bit, that's generally OK, but
21.
▲
by
bmh
4y ago
Microsoft seems to have discontinued ICE a long time ago. As far as I know, the state of the art in panorama stitching is PTGui. I was working on mobile panorama stitching last year, and one of my datasets had a kitchen wall that was almost
22.
▲
by
bmh
4y ago
Nice feature: You can adjust brightness of multiple monitors simultaneously. Every night I set brightness of both monitors to 15, and every morning I raise it back to 30. I've been hoping for a tool like this for years.
23.
▲
by
bmh
5y ago
Thanks! I see the <cut> operator is actually explained in an older HN post: https://news.ycombinator.com/item?id=20502032
24.
▲
by
bmh
5y ago
I love PEGs, but their error messages are usually vague, because it will backtrack out of a deep tree (where it should have discovered the actual error), and then presents an error much higher up ("computer says no"). Is there a m
25.
▲
by
bmh
5y ago
I've tried to setup a 4K and a 2K monitor side-by-side, with one at 200% and the other at 100%.
26.
▲
by
bmh
5y ago
How exactly do you make this work? Whenever I try and use different scaling on my different monitors, the OS (Ubuntu 20.04) ends up setting them both to the same setting.. or something else weird happens. I have tried a lot, and never man
27.
▲
by
bmh
5y ago
I'm actually about to embark on exactly such a project. My plan is to use OpenCV's "stitching_detailed.cpp" example, and improve it from there. OpenCV's stitching is quite good out of the box, but I think I can impr
28.
▲
by
bmh
5y ago
A toy illustrative example, summing two arrays: CUDA c[i] = a[i] + b[i] i += 1 Triton c[i:i+16] = a[i:i+16] + b[i:i+16] i += 16 The 16 in this example is the "block size", and could be anything. But this
29.
▲
by
bmh
5y ago
This sits BELOW the automatic differentiation layer.
30.
▲
by
bmh
5y ago
No, this is a DSL that allows people who normally write CUDA, to do so with less lines of code, and end up with a faster kernel. By embedding it inside Python you don't need to write your own lexer/parser.
More ›