• 0 Posts
  • 21 Comments
Joined 2 years ago
cake
Cake day: April 3rd, 2024

help-circle


  • And don’t feel bad for getting an e-bike. Riding that is still a good workout if you get into the habit of going fast. E-bikes usually have a hard speed cutoff (25 km/h by law where I live); if you want to go faster it’s all you and the motor is just there to give you better acceleration and take the pain out of things like hills or opposing wind.

    If you don’t want to go fast, the bike still expects you to put in a certain amount of work. Low-intensity training is still training. Most crucially, getting that bit of assistance might get you to use the bike when you otherwise wouldn’t, turning no exercise into some exercise.

    People underestimate the benefits of light exercise. Even brisk walks or relatively leisurely motor-assisted bike rides can absolutely be beneficial if done regularly.





  • Basically, the way DIMMs are built with edge connectors causes trouble with signal integrity. That limits the maximum speed and is one reason why LPDDR is soldered.

    CAMMs replace the edge connector with a grid of contacts like on modern CPUs. That’s easier on the signal, allowing for faster speeds and even LPDDR on modules. Downside: They need to lie flat on the mainboard and thus use more space. Then again, laptop RAM is typically mounted in a flat configuration already so it’s mostly a new challenge on the desktop.

    In case you’re wondering why they announced CAMM2 and where CAMM1 went: The original CAMM was a proprietary module from Dell; their spec was refined into the JEDEC-standardized CAMM2.



  • It’s true that LLMs (and GANs) are taking over a term that contains a lot of other stuff, from fuzzy logic to a fair chunk of computer linguistics.

    If you look at what AI does, however, it’s mostly classification. Whether it’s fitting imprecise measurements into categories or analyzing waveform to figure out which word it represents regardless of diction and dialect; a lot of AI is just the attempt at classifying hard to classify stuff.

    And then someone figure out how to hook that up to a Markov chain generator (LLMs) or run it repeatedly to “recognize” an image in pure noise (GANs). And those are cool little tricks but not really ones that solve a problem that needed solving. Okay, I’ll grant that GANs make a few things in image retouching more convenient but they’re also subject to a distressingly large number of failure modes and consume a monstrous amount of resources.

    Plus the whole thing where they’re destroying the concept of photographic and videographic evidence. I dislike that as well.

    I really like AI when used for what it’s good at: Taking messy input data and classifying it. We’re getting some really cool things done that way and some even justify the resources we’re spending. But I do agree with you that the vast majority of funding and resources gets spent on the next glorified chatbot in the vague hope that this one will actually generate some kind of profit. (I don’t think that any of the companies who are invested in AI still actually believe their products will generate a real benefit for the end user.)



  • Downside: Many companies use open-plan offices, which means it’s too busy to concentrate. So everyone wears noise-cancelling headphones in order to be able to work at all.

    The only time I actually felt that being present was a benefit was in a company that had one from for every two people.


  • I think major factors in people bitching about the Windows 10 EOL is that a) Windows 10 was explicitly marketed as the final version of Windows and b) Windows 11 is so unappealing that even companies are reluctant to upgrade.

    Normally, that wouldn’t be a big problem. We had dud releases before. Windows Vista had few friends due to compatibility issues but was workable. Besides, 7 was launched shortly after Vista’s EOL. Likewise, Windows 8’s absurd UI choices made it deeply unpopular but it was quickly followed by 8.1, which fixed that. And Windows 10 again followed shortly after 8’s EOL (and well before 8.1’s).

    Windows 11, however, combines a hard to justify spec hike with a complete absence of appealing new features. The notable new features that are there are raising concerns about data safety. In certain industries (e.g. medical, legal, and finance), Recall/Copilot Vision is seen as dangerous as it might access protected information and is not under the same control that the company has over its document stores. That increases the vector for a data breach that could lead to severe legal and reputational penalties.

    Microsoft failed to satisfyingly address these concerns. And there’s not even hope of a new version of Windows releasing a few months after 10’s EOL; Windows 12 hasn’t even been announced yet.

    It’s no wonder that companies are now complaining about Windows 10’s support window being too short.


  • Yeah, and in the 70s they estimated they’d need about twice that to make significant progress in a reasonable timeframe. Fusion research is underfunded – especially when you look at how the USA dump money into places like the NIF, which research inertial confinement fusion.

    Inertial confinement fusion is great for developing better thermonuclear weapons but an unlikely candidate for practical power generation. So from that one billion bucks a year, a significant amount is pissed away on weapons research instead of power generation candidates like tokamaks and stellarators.

    I’m glad that China is funding fusion research, especially since they’re in a consortium with many Western nations. When they make progress, so do we (and vice versa).





  • I fully agree. LLMs create situations that our laws aren’t prepared for and we can’t reasonably get them into a compliant state on account of how the technology works. We can’t guarantee that an LLM won’t lose coherence to the point of ignoring its rules as the context grows longer. The technology inherently can’t make that kind of guarantee.

    We can try to add patches like a rules-based system that scans chats and flags them for manual review if certain terms show up but whether those patches suffice will have to be seen.

    Of course most of the tech industry will instead clamor for an exception because “AI” (read: LLMs and image generation) is far too important to let petty rules hold back progress. Why, if we try to enforce those rules, China will inevitably develop Star Trek-level technology within five years and life as we know it will be doomed. Doomed I say! Or something.



  • Of course it’s more normie. As more people from more diverse communities join, the average becomes more, well, average.

    For instance, not everyone who moved over from Reddit is a communist trans furry cybersecurity expert in a chastity belt – some people even somehow manage to be none of those things.

    I think there is room for them and there’s even room for them thinking the original crowd is weird. We need to maintain that “weird” is good, though, and that people can just look away if a topic makes then uncomfortable.

    It works with .ml and friends – they can spend all day living their understanding of communism and everyone who doesn’t share that understanding can just block them and move on with their lives.


  • Of course you wouldn’t use an existing database engine as the foundation of a new database engine. But you would use an existing database engine as the foundation of an ERP software, which is a vastly different use case even if the software does spend a lot of time dealing with data.

    If I want to build an application I don’t want to reimplement everything. That’s what middleware is for. The use case of my application is most likely not to speak a certain protocol; the protocol is just the means to what I actually want to do. There’s no reason for me to roll my own implementation from scratch and keep up with current developments except if I’m unhappy with all current implementations of that protocol.

    Of course one can overdo it with middleware (the JS world is rife with this) but implementing a communication protocol is one of the classic cases where it makes sense.