• 0 Posts
  • 9 Comments
Joined 2Y ago
cake
Cake day: Jun 14, 2023

help-circle
rss

Air-conditioned dhed with high volume air cleaning for toxic actibities like soldering, plastic models, spray painiting, 3-D printing…

And a 3-d printer with a cross section of a metre on a side. I am sick of having to cut up designs, I want to print an entire extended-ATX case in a single run.


Keep an eye out at thrift shops-- I’ve seen huge tranches of Star Trek novels.


I guess I’m the only one who LIKES the latching plug.


The less economic and tech dependencies China has on the West, the more free they are to act on their own accord.

The US is concerned about Taiwan-- they wrote a blank cheque of support because it was a DeMoCrAcY back when China was a far weaker economy and military, and it will now be very difficult and expensive to stop reunification. Using TSMC as a shield is no doubt part of policy-- “invade and we blow the tech world back to 2010” is a viable threat until other countries get 7/5/3nm.

But their fear is more general; they are losing their economic and geopolitical dominance, and one of their big bulwarks-- advanced tech-- is giving way. They’re trying to hype up the fear and concern. Expect a lot more sabre rattling by the West.


I recall a while ago seeing an interview with the consultant who did a bunch of team logo redesigns, and the basic takeaway was that everything needed to be hyper-aggressive stuff that 10-year-old boys would love. I recall it seemed to involve a lot of replacing mascots that used to be inanimate concepts with muscular, aggressive anthromorphic characters (the pre-2005 logo was just the college’s coat of arms, now it’s a pallette swap of someone’s fursona)

Let’s go the completely opposite direction. Let’s rename the New York Jets the New York Kittens and have Sanrio design the logo. White uniform with pink and milk-chocolate brown trim. Little ears on the helmets.



PHP.

It picked a niche and fits exactly into it. It’s a language for server side web pages. It’s not a general purpose language shoehorned into the task, so it wisely sets boundaries. PHP could avoid a lot of async/await/promise hell because you can work in the mindset of HTTP requests-- terms of short lived requests that are compiled elsewhere. You don’t have fragile runtime environments (see: server-side JS), since it just plugs into Apache or Nginx, which are at least battle tested and known quantities to operate.

It’s batteries included. Hell, it’s the entire Duracell company included. The standard library is rich and centrally documented, including decades of community nitpicks, even before you go into composer repos.

It’s non judgmental. You can write procedural code, or object-oriented code, based on preference and fit to task.

It makes ad-hoc easy and formal possible-- If I need an array of [227, “Steve” => “meow”, 953 => new FreightLocomotive()] I can get it, or I can enforce types where it’s relevant and mitigates risk.