HackerTrans
TopNewTrendsCommentsPastAskShowJobs

thought_alarm

5,133 karmajoined قبل 16 سنة

comments

thought_alarm
·قبل 4 أيام·discuss
Or in the case of Superbad, a film based on Seth Rogen's experiences as a Vancouver teenager in the late 90s, Vancouver is a stand-in for Los Angeles, which is a stand-in for Vancouver.
thought_alarm
·الشهر الماضي·discuss
I use the built-in `hidutil` utility to remap F3-F9 to my preferred keys.

F3/F4 are remapped to the keyboard backlight brightness.

F5-F9 are remapped to be plain old function keys.

This post has a lot of great info: https://news.ycombinator.com/item?id=35555475

This is the mapping I use on an M1 MacBook:

    hidutil property --set '{
      "UserKeyMapping":[
        {"HIDKeyboardModifierMappingSrc":0x0000FF0100000010,"HIDKeyboardModifierMappingDst":0x00FF00000009},
        {"HIDKeyboardModifierMappingSrc":0x0000000c00000221,"HIDKeyboardModifierMappingDst":0x00FF00000008},
        {"HIDKeyboardModifierMappingSrc":0x0000000c000000cf,"HIDKeyboardModifierMappingDst":0x00070000003e},
        {"HIDKeyboardModifierMappingSrc":0x000000010000009b,"HIDKeyboardModifierMappingDst":0x00070000003f},
        {"HIDKeyboardModifierMappingSrc":0x0000000c000000b4,"HIDKeyboardModifierMappingDst":0x000700000040},
        {"HIDKeyboardModifierMappingSrc":0x0000000c000000cd,"HIDKeyboardModifierMappingDst":0x000700000041},
        {"HIDKeyboardModifierMappingSrc":0x0000000c000000b3,"HIDKeyboardModifierMappingDst":0x000700000042}
      ]
     }'
thought_alarm
·الشهر الماضي·discuss
iTunes didn't go anywhere.

Just about everything I watch or listen to is served from the same iTunes Library I've had for over 20 years. It's more important to me now than it has ever been.
thought_alarm
·قبل شهرين·discuss
It's always fun when an old relic pops up in ye olde RSS reader. His feed would have been one of the originals I started following 25 years ago or so.
thought_alarm
·قبل شهرين·discuss
I would really love to see something like EndBASIC built around a Lisp-family language.

I've recently been playing around with some of the old Logo implementations from the 80s and I've been really charmed by just how powerful and elegant that language can be once you've wrapped your head around it. It makes BASIC look barbaric by comparison.
thought_alarm
·قبل 4 أشهر·discuss
Hypothetical question:

Let's say that back in 1930s when they were assigning frequencies for the broadcast television channels, they allocated enough extra bandwidth for a future color (chroma) signal, apart from the existing monochrome (luma) signal.

If the bandwidth was available, would it have been possible to include separate chroma and luma components in the broadcast signal without the two interfering with each other, thereby producing a much cleaner color image while maintaining backward compatibility with the original B&W TV sets?
thought_alarm
·قبل 4 أشهر·discuss
I just use some old textbooks to raise the height of the display:

- Design Patterns by the Gang of Four

- Modern C++ Design by Andrei Alexandrescu

- Code Complete from the Microsoft Press

That's enough old paper to raise the display height to a comfortable level.
thought_alarm
·قبل 5 أشهر·discuss
Release notes: https://developer.apple.com/documentation/xcode-release-note...

Surprisingly, this version does not require MacOS 26 (Tahoe).
thought_alarm
·قبل 6 أشهر·discuss
Computer Chronicles and MotorWeek were fixtures of my Saturday afternoons as a young kid in the 80s. 35+ years later both shows became fascinating and priceless time capsules of the era.
thought_alarm
·قبل 7 أشهر·discuss
That's also why Apple renamed OpenStep to Cocoa. Java was supposed to be the primary development language for Mac OS X (because Java and Cocoa go great together).
thought_alarm
·قبل 8 أشهر·discuss
When you hear people complaining about Time Machine you can stop listening once they mention their NAS. Time Machine over the network has never been properly supported and is inherently unsafe.

Time Machine to a local drive connected via USB is great.

If you want to backup over the network you will have to find another solution.
thought_alarm
·قبل 10 أشهر·discuss
I'm very surprised it's organized as just a single 162 kB source document instead of being divided into smaller modules to make the code easier to work with, speed up build times, etc.

Were PDP-10 text editors of the day able to easily work with such large documents? And how long would it typically take to assemble all of that code in one go?