Got a new pet

Baymax went home with Mark. I was very sorry to see both of them go. Fortunately, we have a new pet! Joanne has named him Opie. I’m not sure he’s going to be permanent, though.

The coding world for me continues to go a bit slowly, although I have done a few computery things. I installed a few new systems on various machines in the homelab. One if Automatic Ripping Machine, which I got installed just today. It’s not exactly working right at the moment, but it might start working. Eventually.

I also mostly gave up on the open-source version of VS Code I’ve been using. It’s still installed on two servers, but I’ve been unable to get FORTRAN to work on it. It’s probably doable, but everything just seems to work more easily with the actual VS Code. So I installed it on a couple of machines. Ironically, I haven’t tried to make it work with my little FORTRAN code snippets.

I also get up a copy of GitLab on a server. I still don’t really have a use case for it, but it’s there when I need it.

In all of this, though, I haven’t even looked at XCode lately. I’ll get back to that soon. That’s really the future for my coding efforts, I believe.

So more coding to come. Later. But soon! Maybe. Hopefully! We’ll see.

Updated My Coding Tool

Baymax found a pillow. It’s actually Mark’s Steam Deck case, but it works for the cat.

Baymax is going home tomorrow! We’re really going to miss him. Oh, Mark is also going home tomorrow. We’ll miss him a lot too. It’s been nice having Baymie here for about two months! It’s also been nice having Mark here for a few days. Two months would have been even better!

Many days have gone by again since my last post. But I have not been inactive. Mostly inactive, true. But not entirely.

IDE Worries

I’ve been using a web-based application called Code-Server. It’s a clone of VS Code, but without the telemetry. At least that’s how it’s advertised. I think its main strength is that since it’s web-based, I can code from anywhere. Just open a browser, log in, and start. It works with GitHub and has extensions for pretty much every language and tool that you can find on VS Code. Pretty cool. I’ve written a tiny bit of sample Python code as a proof of concept and it’s pretty slick.

One problem: I can’t seem to get FORTRAN working on it.

FORTRAN Woes

Heaven knows I’ve tried. There is a FORTRAN extension or two. I installed one, pasted some FORTRAN code into the IDE, and . . . It didn’t compile. As I recall, the source code was formatted as a FORTRAN program, but the ‘Run” button didn’t appear.

I figured maybe I didn’t have an actual compiler installed on the server hosting the IDE. So I installed one via command line, compiled the little programs I had written (sort of – more detail later), and went back to the IDE to try again. Still nothing. So I gave up.

And It’s Resolved, Mostly

I installed VS Code on Shemp the Mac Studio. I got it hooked up to GitHub, installed a few extensions , brought up my Python demo, and it works great!

That’s as far as I got before I ran out of time. I’ll try it again tomorrow or Sunday.

The good thing about GitHub it that I can install VS Code on any machine I want to use to develop and have them all synchronized with my code libraries. it still kind of prefer my web-based code server, but it just wasn’t working with FORTRAN. And who doesn’t want to code in FORTRAN?

Speaking of which, I had ChatGPT write me a couple of little programs: one to write a list of very large random numbers to a file and another to add them all up. Silly, but it’s a reasonable demo of FORTRAN’s large number handling capabilities. I’ll dig up the source code and post it here:

Here’s the program to generate the random numbers:

program generate_large_random_numbers
    implicit none
    integer, parameter :: dp = kind(1.0d0)
    real(dp) :: number
    integer :: i
    intege :: unit, ios
    real(dp) :: scale
    call random_seed()  ! Initialize the random number generator
 
    unit = 10  ! File unit number
    scale = 1.0e10_dp  ! Scale factor to generate large numbers
 
    ! Open the file for writing
    open(unit, file='numbers.txt', status='replace', action='write', iostat=ios)
    if (ios /= 0) then
        print *, 'Error opening file'
        stop
    end if
 
    ! Generate and write 50 large random numbers
    do i = 1, 50
        call random_number(number)  ! Generate a random number between 0 and 1
        number = number * scale  ! Scale it to a larger range
        write(unit, '(F30.10)', iostat=ios) number
        if (ios /= 0) then
            print *, 'Error writing number ', i
            stop
        end if
    end do
 
    ! Close the file
    close(unit)
 
    print *, '50 large random numbers have been written to numbers.txt'
 
end program generate_large_random_numbers

And here’s the one to sum the numbers up:

program sum_large_numbers
    implicit none
    integer, parameter :: dp = kind(1.0d0)
    real(dp) :: sum
    real(dp) :: number
    integer :: i
    integer :: unit, ios
 
    sum = 0.0_dp
    unit = 10  ! File unit number
 
    ! Open the file for reading
    open(unit, file='numbers.txt', status='old', action='read', iostat=ios)
    if (ios /= 0) then
        print *, 'Error opening file'
        stop
    end if
 
    ! Read and sum the numbers
    do i = 1, 50
        read(unit, *, iostat=ios) number
        if (ios /= 0) then
            print *, 'Error reading number ', i
            stop
        end if
        sum = sum + number
    end do
 
    ! Close the file
    close(unit)
 
    ! Print the result
    print *, 'The sum of the 50 large numbers is: ', sum
 
end program sum_large_numbers

Try ‘em out!

Well, then

Here’s today’s good news: I got my 3D printer leveled and working fine again! I hadn’t printed anything on it for months because last time I tried, I just couldn’t level the bed. That pretty much meant I couldn’t print anything. I even thought of declaring my old printer dead and buying a new one. But I gave it just one more chance today and it really wasn’t very hard to level it using my old trusty method of using a piece of paper to set the space between the print head and the bed on all four corners. Of course, I had tried that way back then too, but here we are. At least it’s working now. Pictured above is a tiki drink coaster. It’s the first thing I printed today. Also the only thing. It took a couple hours. My printer is not fast.

I didn’t code for a couple days, and then I did code yesterday but didn’t document anything. There’s not much to document, though, since I have an error somewhere that’s been challenging to find.

The section I worked on was supposed to teach me how to create some graphical elements of the app. It’s pretty slick, but I clearly have a bug somewhere there. Here’s what it’s supposed to look like:

And here’s what my version looks like:

That’s kind of close, I guess, but I definitely missed something somewhere. I hope to figure it out tomorrow and move forward. I’ll report back here.

Nothing more to report. See you tomorrow