retrocomputing

This magazine is not receiving updates (last activity 0 day(s) ago).

BeneGesseritWitch , in Gateway 2000 Computer - Brand New - Free to a good home!
@BeneGesseritWitch@sh.itjust.works avatar

My first computer I ever bought for myself was a gateway 2000, it came with a cow print coffee mug lol

jaredj , in Is there a precedent for a really delay-tolerant command line interface? (A bit off-topic)
@jaredj@infosec.pub avatar

Secure Scuttlebutt is (was?) a protocol for high-latency communication between occasionally-networked humans. Pro: https://scuttlebutt.nz/; con (not read in detail): https://derctuo.github.io/notes/secure-scuttlebutt.html. I think it was supposed to be able to spread messages over Bluetooth, assuming a sufficiently connected web of nodes between person A and person B. Public keys were identities, and were bound to devices; unfortunately people may have multiple devices, or change devices over time, so this was a hindrance.

IPFS was supposed to be the Interplanetary File System. I think that was just because whatever pieces of content you ask for, you also cache, as part of the design: you keep a copy on the near side of the small high-latency pipe. But that's mostly about file transfer, not interactivity.

UUCP was definitely made in a time where a latency of days for delivery of email or netnews was common.

In the early days of CGI, the Web was just one way people imagined interacting with applications; another way was email. RFC 3834 has some recommendations for people who are going to automate email responses. There used to be services you could email a URL to, and receive the web page back as an email.

Using ed (in my experience) involves looking up the screen, or up the roll of paper on your teletype, to see what the lines of your file were, and imagine what they are now, given the changes you've wrought to them since they were printed, and then turn them into what they should be. With Mars rovers you have a simulation that you issue your command to, before sending it off to Mars. With correspondence chess you might keep a physical chessboard for each game you have going, and/or send a form back and forth that keeps track of several moves.

People used to do computation at universities and businesses by writing programs at their desks, submitting them to be typed on punchcards, and receiving printouts some time later. They would "desk check" their programs before sending them in, because each compute job took a couple days to come back.

I mention all these because, in an extreme censorship environment, any local state (session history on paper, an app on a smartphone, an odd device) might not be good to have around. So usability may require reducing the total amount of state that a command carries. The current working directory at the time a command is run changes the meaning and outcome of the command; you may not remember that directory in a day or two. The vocabulary and syntax of command-line switches are easy to look up in online manuals - but are there offline manuals? I don't know if this avenue of inquiry helps you, but it's interesting to think about for a moment.

nickwitha_k , in Is there a precedent for a really delay-tolerant command line interface? (A bit off-topic)

As long as you're using TCP (what SSH uses) or a similar protocol, you should be able to deal with a situation like that. You'd mainly need to ensure that your client and server are tuned to meet your needs. With TCP, every packet is considered important and if the receiver does not acknowledge receipt, the sender will resend.

CanadaPlus OP , (edited )

I'm not talking a lot of latency, I'm talking snail-mail levels. Hours probably won't even be unusual, because hops will happen partly by sneakers net as people move around with their nodes. The concept is distributed burst radio for extreme censorship environments.

The point of the containers in the first place is to make as much as possible work offline, without the user having to be in the loop.

nickwitha_k ,

Oh that's interesting. I might suggest looking at implementations of IP Over Avian Carrier (IPoAC). And I do mean that seriously. The idea started as an April Fools RFC but some people have actually implemented it. Basically, just using a different physical layer.

CanadaPlus OP ,

Yeah, that's probably worth a look. Good suggestion. There's also delay-tolerant protocols for space and similar, but I don't know if any of them define an endpoint, as opposed to just a transport layer.

nickwitha_k ,

Indeed. I'd really suggest going for something based upon Internet Protocol, with any software that you need at endpoints to read and/or transmit. I might poke about at some ideas on the weekend (long holiday). What languages are you thinking to use?

CanadaPlus OP ,

Probably Rust, although I'm not married to it. I'm just at the planning stage right now, though.

One open question is if you can use a fairly standard transceiver like a Bluetooth chip, or if you need an SDR. Obviously they weren't designed with this in mind, by maybe there's a profile that's close enough.

Packets should have a few kilobytes of payload so you can fit a postquantum cryptographic artifact. Thankfully, even with a BCH code, it seems doable to fit that much in a 1-second burst in a standard amateur radio voice channel, for testing. (In actual clandestine use I'd expect you'd want to go as wide as the hardware can support)

As envisioned there would be someone operating a hub, which might have actual network access through some means, and on which the containers run. They would send out runners to collect traffic from busy public spaces which might serve as hubs for burst activity, and dump outgoing packets, all without giving up any locations.

Accounts with their own small container would be opened by sending in a public key, and then further communication would be by standard symmetric algorithm - except in testing, because that's an amateur radio no-no, so just signed cleartext. ID would be derived from signature fingerprint, as I have been thinking about it. I have a lightweight hash scheme in mind that would allow awarding of credit for retransmitting packets in a way that couldn't be cheated.

You'd want to have some ability to detect and move around jamming, or just other people's bursts. That's more hardware research, basically.

MajorHavoc , in Is there a precedent for a really delay-tolerant command line interface? (A bit off-topic)

The 'ed' editor was designed for high latency networks. I would pull on that thread. That is, in your shoes, I would read up on 'ed' and related tools.

scroll_responsibly ,
@scroll_responsibly@lemmy.sdf.org avatar
MajorHavoc ,

Delightful!

"Of course, on the system I administrate, vi is symlinked to ed. Emacs has been replaced by a shell script which 1) Generates a syslog message at level LOG_EMERG; 2) reduces the user's disk quota by 100K; and 3) RUNS ED!!!!!!"

Gave me a giggle. That 100k loss has got to hurt for a user who still tries to run 'vi' on a classic system, I imagine.

Edit:

Another gem:

"Ed is generous enough to flag errors, yet prudent enough not to overwhelm the novice with verbosity."

CanadaPlus OP ,

Ed is great (in this context). I think there's been posts about it on here before. It's just a text editor, though.

MajorHavoc ,

Yeah. I've had mentors regail me of other tools they used alongside 'Ed', but I wasn't listening very attentively. Hopefully that's something that can be dug out of the history of the Internet.

I would definitely choose the old reliable stuff over something new and fancy, if I had this use case.

CarbonatedPastaSauce , in Is there a precedent for a really delay-tolerant command line interface? (A bit off-topic)

Ask NASA

CanadaPlus OP ,

Do they post their software somewhere? What they use for space probes is exactly what I would need, but I kind of figured it would be a trade secret.

CarbonatedPastaSauce ,

I was kidding. 😁 There’s nothing real time about C&C with space probes. And the ISS is close enough I doubt it’s an issue.

CanadaPlus OP ,

Yeah, I want not real time. The goal of having containers in the first place is to enable as much as possible without needing to put a human in the loop, since you have no idea how long each packet will spend in transit.

If I could emulate Curiosity's onboard computer that would be a decent starting point.

CarbonatedPastaSauce ,

In that case it might not hurt to reach out to some NASA email addresses. The people who write that stuff are, after all, nerds like us, and would probably be happy to share whatever they are allowed to share.

It’s funded by taxes so, security issues aside, there shouldn’t be a lot of trade secrets.

CanadaPlus OP ,

Government agencies, in my experience, tend to believe in security through obscurity; even the ones that don't worry about spies as much as NASA. That said, maybe it's worth a shot. I'll have to figure out who's the best person to bug.

MNByChoice , in Is there a precedent for a really delay-tolerant command line interface? (A bit off-topic)

Like MOSH? https://mosh.org/
Mosh has some predictive output and will resume sessions automatically.

Or more like tmux/screen?
Has some fancy "nohup" like functions.

CanadaPlus OP ,

That's really helpful. Thank you! MOSH might work, I'll have to play around with it.

Could you go into more detail about the tmux functions? If it's a way to write everything to files instead of a STDOUT in a predictable way, that would be great, since each packet could be a (compressed) shell script that explicitly includes which data to send back, if any.

MNByChoice ,

No, tmux does not redirect to a file. Though '>' and 'script' do.

Tmux is like 'screen' and can be wrapped with 'byobu'.

CanadaPlus OP ,

I mean, I guess you could just programmatically insert a > after every command. That's actually a pretty good idea. It's kind of obvious now that you mention it, haha!

It would be better if the tools expected to be used this way, but as a quick kludge for a project about something else it's probably sufficient.

MonkeMischief , in Idle Windows XP and 2000 machines get infected with viruses within minutes of being exposed online — legacy OSes compromised by just connecting to the Internet

I've seen videos of people doing this for fun to see what happens.

Sadly now it's not even fun "for teh lulz" kinda compromise, either. Everything is just a million varieties of crypto miner or ransomware now.

Donatella , in Dell Called It "The Showstopper" - The Dell XPS M2010, a last hurrah of the luggable PC.

@quordle this laptop with superior quality and features compared to other laptops they have used before

pmjv , in What was the last IBM ThinkPad?
@pmjv@lemmy.sdf.org avatar

The T40 series. Everything afterwards, even though it still had the IBM logo was made by lenovo

wesker , in "Chornobyl Family" - YouTube channel dedicated to Soviet-era computers and tech.
@wesker@lemmy.sdf.org avatar

The videos of them exploring Pripyat are amazing.

Tylerdurdon , in What was the last IBM ThinkPad?

You know, I was thinking the Thinkpad was going to go to crap after Lenovo bought it, but overall I didn't have anything negative to say. I wore mine out, keeping it way beyond it's end of life and it kept chugging. It was difficult to part, in fact, but so goes change.

Clusterfck ,

We switched from Dell to Lenovo at work and the amount of times I’ve had to totally reformat a computer for something just randomly not working right and not being able to find another fix for it has gone to almost zero. Before, with 20 computers, every couple months we had to reformat at least one laptop.

Not a single person has complained about missing Dell in two years.

chance , in The short, happy reign of CD-ROM

Encarta seems so quaint to me now, but it really was a well curated encyclopedia that had a designed charm to it.

I admit when I saw this headline I thought "but what about music" and for me, CD's lived long after the 90's due to small music players and cars having audio CD players but not yet being able to read MP3's. Decks with that feature and cars with that feature were not much later.... but we still burnt them to CDRs.

deFrisselle , in Gateway 2000 Computer - Brand New - Free to a good home!
@deFrisselle@lemmy.sdf.org avatar

Wish Boston was closer or I had time to drive over

BeigeAgenda , in Gateway 2000 Computer - Brand New - Free to a good home!
@BeigeAgenda@lemmy.ca avatar

Pentium 4 those were the days, super fast CPU, that was 5 years ago right...

altima_neo , in Gateway 2000 Computer - Brand New - Free to a good home!
@altima_neo@lemmy.zip avatar

Wow, who buys an beast like that and doesnt even use it?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • kbinchat
  • All magazines