I'm mostly just lamenting people gravitating towards living rooms on wheels. Makes roads worse for everyone, esp peds and cyclists.
HN user
hnav
PID is a type of AI! That's why Space X blew up so many rockets, that was just RLHF.
the VLE looks great but the pricepoint basically limits it to livery use in cosmopolitan cities. I'm thinking they'll probably sell 1000s of units over the whole run in north america
If they could shoehorn the Prius drivetrain into a Corolla hatchback (not sure of packaging, a Corolla hybrid sedan already loses 2 gallons of gas vs the normal car, maybe with solid-state batteries), that could be a great, if sonically unpleasant, middle ground. The hybrid Civics already give the Si a run for the money (though the 6 speed and LSD are great). I could see Honda being able to punch the engine out to 2.3 (they shrank the bore on the hybrid to 81mm for efficiency) and with updated battery tech eek out 230hp. Add an LSD, type R control arms/spindles/sway bars and that'd be an incredible 40mpg combined daily though dangerously close to $40k.
GM does have pretty great chassis and controls tuning these days, but GP's claim is absurd.
You have not driven well driving cars if a 6000lb crossover is the pick of the litter. GM really went crazy with its Ultium SUVs by making most of them 77-78" wide with huge tires but there's only so much you can do mask the mass.
also the ride, and the interior is not great though post-covid all the other manufacturers except the japanese are speed running to that same interior setup
It's meant for spirited driving. If it wasn't so expensive it'd be an amazing car for tooling around on gravel roads with some skidplates. Electric won't take you out to the boonies, you can't bring more juice with you and ultimately an electric package that will consistently produce 300hp while weighing 3200lbs does not exist. As far as Land Cruisers's I feel that the externalities of those and other neo-vintage boxes on 33" tires are greater than anything else on the road. Horrible mileage, makes everything less safe, less agility, less visibility, all to cosplay.
At least on macos and linux you can put the whole process tree into a seatbelt or bubblewrap sandbox. This lets you limit file and even network access fairly trivially.
it’s not a psychological phenomenon. If a human engineer constantly used pompous language to deliver unvetted information (the number of claude slop root-cause analyses i’ve read where “the smoking gun” is a red herring) we’d rightly consider them a moron
That's probably a good thing, the world needs appliance-like cars for markets where EV charging isn't there yet.
Meanwhile Toyota is #1, moving millions of units, something like half of them are electrified in most markets. A 2026 Camry, for $30k, gives the buyer a low-TCO, value retaining, 50mpg, 230hp appliance of a car. That's a rarity.
Yeah, if it's worth more than 4k registered, it'll either be fixed or shipped. California gives you $1200 to junk it, people will come pick it up for $1500 and a lot of times you'll see it pop back up in state because they illegally resuscitated it with a defouler, a used/EPA cat and put it back into circulation.
For mid 2000s, the car is self monitoring so an emissions check is just a visual once over to ensure no physical tampering and a computer readout of emission readiness monitors + firmware checksum for digital tampering.
Yup, a bigger issue for old cars trying to pass emissions is that with prices of precious metals, a worn out catalytic converter (diagnostic code P0420 ) means that most of them are mechanically totaled in California, New York, Colorado since they require either OEM or CARB approved replacements.
if it's sturdy/you're light then doing eccentrics (jump up, come down unassisted) is a good way of working up to full pull ups.
We're all going to caching appliances deployed on the ISP's network these days anyway.
https://developer.apple.com/icloud/prepare-your-network-for-... has a guide for web server operators, including a GeoIP CSV which could conceivably be used for whitelisting. More concerning is that they're plugging private access tokens there, which allows Apple to vouch that you're a human running their hardware.
historically car manufacturing gets redirected into defense for wartime though it's unclear how that would pan out with today's factory specialization
E.g if gmail knows that you have maps or chrome it can deep link you into a particular view instead of opening safari.
I’m not saying that we need to regress further as a society. I was merely providing a counterpoint to the argument that the homeless need to have their agency stripped because they’re a negative value to “productive” society.
I have come to the conclusion that until I am part of the landed gentry, the erratic homeless are a positive impact on my life. They may be a nuisance and cost me a stolen package here and there but when the “let them eat cake” types move into the neighborhood is when I get priced out. That is to say like inflammation is a symptom of something being wrong in the body, their plight is emblematic of the struggle that affects everybody but the upper crusts of society. You can try to treat the symptom in either case but there are much deeper structural problems.
If you mean watchtowers with armed guards, then no those don't exist anymore.
The top %1 is a strawman invented by the top 0.01%.
East-side gallery is still standing.
What came first, the wage or the cost of housing?
- Figuring out NIMBY-ism. Anywhere you run a tunnel you're gonna have people suing you and stalling for decades. Less so if you use a tunnel bore machine, but cut and cover is pretty much a non-starter.
- Cost of labor is insanely high due to cost of housing. Short of jumping straight back into the 19th century, setting up temporary housing and bringing in guest laborers this is pretty much non-negotiable.
- Not a ton of expertise left in the country since there's 2 new subway tunnels a decade AFAIK.
- The grift has got to be worse here than in Spain. There if you get $40k in kickbacks that's a nice bonus, here that barely covers your rent for the year.
And then even if you bring the costs down, you have to figure out the taxation. Several billion per mile is the running rate and you may be able to bring that down but then you have ongoing costs. Muni's farebox recovery is only 1/4 of its budget so unless you're making existing lines redundant, there's new ongoing cost. Obviously the choices there will be to go into the pockets of the middle class or not do it at all.
Though it is true that bleeding edge browsers are fairly secure.
You can have a volume mount into your container backed by whatever block storage which may have snapshotting or format with a FS that supports snapshots.
what I meant was a proxy that implements HTTP/1.1 CONNECT
and a server behind it like
``` mkfifo /tmp/myfifo cat /tmp/myfifo | nc -l 12345 > /tmp/myfifo ```
so if you manually type out
CONNECT host:12345 HTTP/1.1
host: host:12345
you can see exactly what's happening. To be fair you can hack curl to support that via curl -x proxy:3333 telnet://host:12345
but that's not exactly what you want and requires curl to have been compiled with telnet support.Sometimes you want to do something that curl cannot express, e.g. timing, protocol oddities, etc. For example you may want to issue a CONNECT to an echo server through a proxy and observe the bytes flowing back and forth. You may want to see what happens when conflicting hop-by-hop headers are specified without worrying about the client's (curl's) interpretation of them. A simple nc -c (or openssl s_client -crlf) lets you do all of that.