HackerTrans
TopNewTrendsCommentsPastAskShowJobs

msarnoff

no profile record

comments

msarnoff
·2 เดือนที่ผ่านมา·discuss
I met Steve Bourne a while back and asked him why he chose to write sh with all those ALGOL-like macros. His answer was terse—he just wanted to use the syntax he was most familiar with.
msarnoff
·2 เดือนที่ผ่านมา·discuss
Busybox is where I learned the multi-call technique of using argv[0] to simulate multiple commands in a single binary.

It works great for Rust binaries, which can get quite large. I had to rewrite some Python utilities (software updater, Wi-Fi network config, etc.) for a very constrained embedded system (64MB RAM) that couldn’t handle Python. So I built them all in a single multi-call binary. I believe `clap` has built-in support for it.

Also, Busybox has a lot of stuff built in that you’d never think of. It has a little vi built in. It has the full suite of ‘runit’ process supervisor utilities. And plenty more. It has a Kconfig system (like the kernel) where you can tune exactly which utilities you need and what features you need. Don’t need full output in ps? Turn it off. Don’t need tab completion? Pretty sure you can turn that off too. Always typing ‘dc’ instead of ‘cd’? Just don’t include dc.
msarnoff
·2 เดือนที่ผ่านมา·discuss
This was a class assignment in the 15-213 class at Carnegie Mellon. The staff had set up a test suite and an online leaderboard to rank the speed of each student's malloc implementation.

I figured out that the test cases allocated a disproportionate amount of X-byte blocks. I was able to get to the top by hardcoding a specific freelist just for X-byte blocks.

Learned a lesson about easily it is to game a benchmark :)
msarnoff
·2 เดือนที่ผ่านมา·discuss
I think this is me. I was diagnosed with “regular” ADHD a few years ago, but I’ve had issues with rejection sensitive dysphoria my whole life. As a kid I would have a lot of meltdowns when I couldn’t get something right on the first try or made any kind of mistake.

The meltdowns stopped, but I still have issues spiralling into thoughts of failure and being a horrible person when I feel like I’ve disappointed family or friends.

Guanfacine has helped though. Tried a bunch of medications and this is the only one that seems to have made an impact.
msarnoff
·4 เดือนที่ผ่านมา·discuss
Originally read the URL as “D-Bus Hell dot com” and was like… yup.
msarnoff
·5 เดือนที่ผ่านมา·discuss
On early bit-paired keyboards with parallel 7-bit outputs, possibly going back to mechanical teletypes, I think holding Control literally tied the upper two bits to zero. (citation needed)

Also explains why there is no difference between Ctrl-x and Ctrl-Shift-x.
msarnoff
·5 เดือนที่ผ่านมา·discuss
Retro Game Mechanics Explained has a video about how the Asteroids vector generator worked and was coded for:

https://youtu.be/smStEPSRKBs?si=k_0u3NKCxCqZBc6w

Battlezone and later 3D games used different circuitry that generated vectors with analog circuitry and used a “math box” coprocessor based on Am2901 bit slice ALUs to help with the 3D math.
msarnoff
·6 เดือนที่ผ่านมา·discuss
The ancestor of the RCX was the "programmable brick" project out of the MIT Media Lab in the mid-1990s

http://archive.pbrick.info/The%20MIT%20Programmable%20Brick%...

https://web.archive.org/web/20011212030110/http://fredm.www....

Growing up in New England at the time, I was very lucky that they ran a pilot project at my elementary school. We programmed our "sketches" (though we didn't use this term) in LogoWriter on Mac LC IIs and flashed them using a weird dongle that connected to the brick via RJ11 cable.

I owe a lot to my teachers and Fred Martin's group. I don't think I'd be a developer today without that experience.
msarnoff
·7 เดือนที่ผ่านมา·discuss
I was very surprised that GCC could optimize NEON SIMD intrinsics. After spending hours trying to optimize my vector code, trying to get the spacing between register dependencies right to reduce stalls, breaking long reduction operations into intermediate results, messing with LLVM-MCA, etc., I realized that I just couldn’t beat the compiler. It was doing its best to allocate registers and reorder instructions to keep the pipeline filled.

I don’t think it always did the best job and saw a bunch of register spills I thought were unnecessary, but I couldn’t justify the time and effort to do it in assembly…
msarnoff
·7 เดือนที่ผ่านมา·discuss
Storage tubes are amazing. I once had a Tektronix 464 scope. Unlike the ubiquitous 465, the 464 was an analog storage oscilloscope! The persistence of the storage tube let you capture pulses, visualize signal jitter, etc. And there was a very satisfying erase button that cleared the tube with the characteristic green flash.

You could also just mess with the horizontal/vertical position knobs and use it as a very expensive Etch-a-Sketch.
msarnoff
·8 เดือนที่ผ่านมา·discuss
When I was last at Penn Station in the 2010s their departure board was a mosaic LCD like the article, not a split-flap display:

https://upload.wikimedia.org/wikipedia/commons/b/bd/Penn_Sta...

I do miss the split flap displays at the Boston and Providence Amtrak stations though…
msarnoff
·8 เดือนที่ผ่านมา·discuss
I have seen these throughout the US and Europe and been fascinated by them. Penn Station has (had? been a while) a big one with more segments per character. I’ve been trying forever to find the name of this particular style of segmented displays and get more info on them. The closest I could find is “mosaic display.”

Love this article!

Signed, someone who has an obsession with segmented displays
msarnoff
·8 เดือนที่ผ่านมา·discuss
I've done small embedded Linux systems and it makes me so happy that there is a (mostly) compatible implementation built into busybox. svlogd's rotation and size capping makes it great when using limited-lifespan nonvolatile storage like eMMC.
msarnoff
·9 เดือนที่ผ่านมา·discuss
Instruction set looks very similar to the AVR, which is one of my favorites. Very cool!
msarnoff
·10 เดือนที่ผ่านมา·discuss
I acquired a nonfunctional Diehl VSR a while back, naïvely thinking I could bring it back to life.

Oh my goodness, I took the cover off and what I saw was jaw-dropping. Thousands, possibly tens of thousands, of the most densely packed metal levers and cams and gears one could ever imagine. Nearly all of which would have needed cleaning and lubrication. Getting this thing fully working could have taken a year or more, especially with no repair manuals, and all available information in German.

The respect I have for the designers of these machines, and the servicepeople who repaired them, is immeasurable.

They are also electrical death traps. Lots of exposed switch contacts carrying mains voltage.
msarnoff
·10 เดือนที่ผ่านมา·discuss
I was there when we added it to Preview ;) I think Nils wrote the code to hook it up, because he also worked on the loupe and how it would automatically lock onto the bounding box of a line.