HackerTrans
TopNewTrendsCommentsPastAskShowJobs

SoftTalker

23,518 karmajoined vor 4 Jahren

Submissions

Component "archive.ubuntu.com" and a few other components are Down

status.canonical.com
5 points·by SoftTalker·vor 3 Monaten·2 comments

The Magnificent Seven made up 37% of the S&P 500's value in October 2025

fool.com
5 points·by SoftTalker·vor 8 Monaten·0 comments

Building a TMS 9900 Homebrew

retrocomputingforum.com
2 points·by SoftTalker·vor 9 Monaten·0 comments

Supporting Fairness and Originality in NIH Research Applications

grants.nih.gov
1 points·by SoftTalker·vor 10 Monaten·1 comments

comments

SoftTalker
·vor 58 Minuten·discuss
Modern airliners do away with most dedicated instrumentation (a few critical ones such as airspeed, compass heading, and altitude might still have analog backups) and use a few screens to display all of this. Computers monitor most of the parameters and issue alerts when anything is out of normal.
SoftTalker
·vor 1 Stunde·discuss
Orion browser works great for me on my iPhone.
SoftTalker
·vor 1 Stunde·discuss
French operators wearing jeans, Soviets wearing white coats and sailor's caps.
SoftTalker
·vor 1 Stunde·discuss
The liability limits on most renters insurance policies are low $100Ks, because most renters don't have many assets they need to protect. This would be pretty inconsequential in the scenario of "burning down the apartment complex."

Landlords/owners have their own fire and liability insurance (ultimately paid for by the tenants as part of their rent); it's unnecessary to demand that the tenants provide their own. Renter's insurance is for the tenant's protection, not the landlord's.

My leases always point out that the landlord's insurance does not cover the tenant's personal property or liability, and recommend renter's insurance. But it's not required.
SoftTalker
·vor 2 Stunden·discuss
> using paper maps, getting lost etc

All part of the adventure!
SoftTalker
·vor 2 Stunden·discuss
Modern installation is direct bury. There are no trenches, no way to run new cables without new directional drilling. In any already built areas, these projects are constantly hitting gas, water, sewer, cable, electric, and other already buried infrastructure. Maybe (probably) it's still cheaper than launching satellites but it can be quite disruptive.
SoftTalker
·vor 2 Stunden·discuss
I remember when I first had 10Mbps at my desktop at work. It was amazing. I wonder how slow that would feel today?
SoftTalker
·vor 2 Stunden·discuss
Perhaps there will be communications nodes in LEO with high bandwidth directional links to heavy compute nodes in higher orbits? At some point I would assume that the jurisdiction of the FCC no longer applies? Or maybe you use laser links?

I still cannot believe it's economical to have "data centers in orbit" but I guess the truth will be seen in whether or not it actually happens.
SoftTalker
·vor 2 Stunden·discuss
You can see it all over the USA, there are many localities and routes that have banned outdoor advertising, and when you're traveling on a parkway with nothing but trees on either side and then you come to the end and there are billboards every 100 yards it's really noticable.
SoftTalker
·vor 2 Stunden·discuss
Literally building skynet.
SoftTalker
·vor 14 Stunden·discuss
This is why I stick to standard ASCII.
SoftTalker
·vor 16 Stunden·discuss
Same here. This has only been a thing recently when landlords figured out they could make money selling the insurance. When I was a renter, insurance was never required from me.
SoftTalker
·vor 17 Stunden·discuss
Well, they are responsible.
SoftTalker
·vor 17 Stunden·discuss
It should also be illegal. If I want to risk loss of my personal property that should be my decision to make.
SoftTalker
·vor 17 Stunden·discuss
Trade secrets. A legally recognized thing, and legally protected.
SoftTalker
·vor 17 Stunden·discuss
And I'd question the intelligence also. I don't think employment at FAANG means a lot in that regard.
SoftTalker
·gestern·discuss
The U.S. Federal minimum wage is $7.25/hr. Some states or localities might have higher minimums, but it's been a long time since I've seen any jobs paying that little. McDonald's here is about $15/hr to start and jobs go begging. CoL here is not the lowest but it's not like a major urban center either.
SoftTalker
·gestern·discuss
It's been a number of years, and all I really remember is coming to the conclusion that "emacsclient only works with a local server." It uses a domain socket for this, but forwarding that from a remote server doesn't seem to be enough.

Simply editing a remote file over an ssh connection is easy enough using TRAMP, but that isn't the same as accessing existing buffers in a remote server.
SoftTalker
·gestern·discuss
Used to work with a guy who would frequently say "a comment is an apology" i.e. the comment is there because the code itself is not clear. That can be the case, but I generally find more comments better than fewer, especially if they relate the code to actual business or functional requirements and don't just restate what the code is doing.

Years ago I would often write comments first. I.e. start with describing the overall goals. Then break it down into routines and order of operations, all still in plain english. Once I was happy with that, I'd break up the comments with blocks of code. I guess this is sort of like "literate programming" though I was doing it long before I ever heard that term and I still have never read much about it. It's almost more like I was prompting myself towards the end goal. The downside of this approach is that the comments do end up more or less just explaining in english what the code is doing, so maybe aren't quite as useful to future maintainers.
SoftTalker
·gestern·discuss
Emacs itself can run as a client and server. To start the server:

  emacs --daemon
Then use `emacsclient` to connect to it. All `emacsclient` instances whether in terminals or GUI are using the same server and can access the same open files and buffers.

Unfortunately it only works locally. I've tried to forward the emacs server socket over ssh to a remote client and it doesn't work.