![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
...I should be getting my SwissMicros DM32 in the mail! I have the parcel tracking number from Swiss Post and it is estimating a delivery around the middle of the month. That is all depending on how long customs takes to get the device through. I've already paid the duty through Amazon and that usually covers any duty at at the border, but that doesn't mean that it gets through the processing facilities in any sort of timely manner.
In the meantime I have Youtube videos on the calculator itself and on RPN calculation. But my favourite videos are the ones that try and pump you up about the calculator, cool calculators, for ummm cool people?
I have been diving into RPN more with an app for the Ti-83 Plus and 84 Plus that effectively turns the whole device into an RPN calculator styled on the HP42S. Here is the link on Cemetech if you are interested on trying it out on your own device. I am going to be writing some posts about RPN and I'll be using screenshots from this app. Also once I get the DM32, from that device as well as I learn more about it and RPN.

For now, I'll wait. And tinker. And post, now that I have this journal.
Is there something you are looking forward to this Fall?
In the meantime I have Youtube videos on the calculator itself and on RPN calculation. But my favourite videos are the ones that try and pump you up about the calculator, cool calculators, for ummm cool people?
I have been diving into RPN more with an app for the Ti-83 Plus and 84 Plus that effectively turns the whole device into an RPN calculator styled on the HP42S. Here is the link on Cemetech if you are interested on trying it out on your own device. I am going to be writing some posts about RPN and I'll be using screenshots from this app. Also once I get the DM32, from that device as well as I learn more about it and RPN.

For now, I'll wait. And tinker. And post, now that I have this journal.
Is there something you are looking forward to this Fall?
no subject
Date: 2024-10-01 05:52 am (UTC)Also, I'm going to be taking some vacation time and going to 2 haunted houses with a friend visiting from across the USA. It's my first time in years going to a haunted house so I think it's going to be a lot of fun!
no subject
Date: 2024-10-01 06:04 pm (UTC)So you have a stack (and again, I'll have more later but you can see the four 0 stacked in the image from my post). If you wanted to add 1 + 1 in RPN you would put 1 in press enter to put it on the stack which would free up the input line again for another 1. With the two 1s on the stack you would just press the plus button and the calculator would perform the calculation. No need for an = key.
A lot of people prefer RPN because it removes any conflicts with inproper bracket placement in calculations. With Mathprint and other visual aids now in most calculators, this is kind of moot now but you used to have to pay very careful attention to where and how brackets were used especially in complex engineering and scientific formulas. RPN eliminates that and for many engineers and scientists it makes the calculator an extension of how they are already think about math and numbers. Again with the 1 + 1, it is more efficient and clear to think about it as 1 and 1 add. Especially if you want to divide the whole thing by something next. You would go 1 and 1 add 2 divide. No need for brackets or order of solviing.
no subject
Date: 2024-10-01 07:21 pm (UTC)2 2 + .
will return4
.: squares 11 1 do i dup * . loop ;
will define a word (Forth-speak for function) that will print out the first ten square numbers.It's years and years since I had the Ace, so I'm horribly rusty on RPN syntax, but it's nice to see it exists on calculators too. :)
no subject
Date: 2024-10-02 05:07 pm (UTC)I know that RPN was popular on professional scientific calculcators in the 70s, 80s and early 90s. Before the screens were large enough and detailed enough to have an input line to put fancy algebra expressions (and the rise of the personal computer, where most maths get done nowadays). There are a few still out there and always people making programs to turn non-RPN calculators into RPN ones.
I wish it was something they taught in school early, especially linked with coding. The jury is still out and which is better, I don't think it is a matter of better though, just what works for your own workflow and way of thinking.
no subject
Date: 2024-10-02 05:37 pm (UTC)That's to print out what's on the stack, rather than COBOL-style pernickety punctuation. It's perfectly valid Forth to write
2 2 +
but you won't get the result on your screen if you leave out the dot! :P