AS 400 is still going strong for many companies!
What have we lost? [video]
51–60 of 86 posts
Re: What have we lost? [video]
#52AS 400 is still going strong for many companies!
Indeed. A lot of banks overhauled their core banking platforms to run on IBM i in the early to mid 90ies. It scales well and considered secure.
Re: What have we lost? [video]
#53AS 400 is still going strong for many companies!
There are techs from 2 other companies in attendance. Apparently IBMi is used widely in banking.
It was the only thing NOT totaled when we got hit with ransomware, and is what holds our PII for our clients/workers.
Re: What have we lost? [video]
#54Earlier quoted context omitted.
Indeed. A lot of banks overhauled their core banking platforms to run on IBM i in the early to mid 90ies. It scales well and considered secure.
I’m curious about the IBM i. Anyone here who can comment on how to get started? You can’t exactly buy one of these systems off the shelf.
You could also take a look at IBM's redbooks. They're guides written by 3rd parties. http://redbooks.ibm.com/
And here are the IBM technical docs: https://www.ibm.com/docs/en
You can get used IBM Power servers on ebay, but they're pretty pricey. Not sure about licensing and such also, so you should look into that before buying.
Re: What have we lost? [video]
#55Re: What have we lost? [video]
#56Earlier quoted context omitted.
We lost the environment where the whole OS was a debugger, and everything could be inspected and modified as the system was running.
Except, that’s what the browser is, and increasingly that’s where software lives.
Re: What have we lost? [video]
#57Did we really “lose” the Lisp Machine, or did we just realize that compiling Lisp to a general-purpose instruction set like x86 and then having someone else in charge of creating hardware to efficiently execute that is much more clever?
[1] https://groups.google.com/g/comp.lang.lisp/c/QzKZCbf-S6g/m/K...
[2] https://groups.google.com/g/comp.lang.lisp/c/XpvUwF2xKbk/m/o...
Re: What have we lost? [video]
#58Earlier quoted context omitted.
I still miss Warp. It was actually a pretty great OS. BeOS was fantastic as well.
OS/2 Warp was nice to work in and fully object oriented too. It was just too resource intensive and by the time they shipped, Windows was the default.
Re: What have we lost? [video]
#59I was recently thinking a bit about how one could create a typed Forth-like system, by adding a 3rd parallel stack that would hold the type on the data stack, and was used for type checking. I really wanted to like Forth (which is very similar to Lisp/Smalltalk systems, even possibly more elegant in some respects), because of the system extensibility, but the stack errors drove me crazy. So if the system had the abil…
A third stack is one more thing to keep track of. The simpler solution to this in many languages is type tagging. E.g. Ruby (MRI at least) uses a few bits to indicate type to avoid creating full-blown objects for small-ish integers, symbols, etc., and you'll find the same approach in many strongly typed dynamic languages.
Re: What have we lost? [video]
#60Earlier quoted context omitted.
You'd think I was an expert, given that I gave that segment of the talk, but I haven't yet dived that deep into Genera's internals. As I understand it though, you don't have the concept of page faults at the image level; IIRC, Genera doesn't have any form of virtual memory, or if it does, it's all in microcode. Task switches are , iirc, handled in the image, but in the same way that it's done in Smalltalk: there's a…
It was intentionally designed as a single user mode-machine wasn’t it?