Posts

  • 5-3 Free friday

    I worked on a card-flipping animation in swift on Xcode to try and put that into the card match-making game I was pervious working on.

  • 5-17 Free Friday

    SOLAR SYSTEM/ PLANET SIMULATOR PROJECT I was scrolling through my YouTube feed and came across a planet simulator tutorial video for Python. Before starting the project I had to install a few things, being Pygame and PyMunk. I can’t exactly remember what I did on the first day. This is all the code from day…

  • 2023-2024 School year evaluation

    This school year was quite a bit, and I definitely bit off more than I could chew. My downfall came with my college classes not only that I started to go into hibernation around the end of March and the beginning of December. Also getting a job could have contributed to that. I was very…

  • Work day

    I was working on a swiftui interface that would have a glowing screen that pulses. But I soon went on to take my python certification and passed with a 57 out of 70.

  • 2-9-24 Free Friday

    For this weeks free friday ill be continuing my memory game where I left off from last week. I added an on tap gesture that flips the card from a question mark to a image. I also looked into the SwiftUI scholarship. One of the things you had to do for it was to make…

  • 2-2-24 Free Friday

    For this weeks free Friday I’m going to look for interesting projects that are going to help me with my memory game project. I can’t code along to today since I forgot my laptop at home. I’ll post updates on my project either later tonight or tomorrow evening. Learning @Stateobject and @ObserveableObjective. Stateobject and ObserveableObject…

  • What is Threading?

    Threading is a built in module in python that allows multiple threads of execution to take place. This is useful because only one thread can be used at a time which is enforced by python’s global interpreter lock (GIL). The GIL is a mechanism used by the CPython interpreter to assure that only one thread…