Saturday, April 5, 2025

Never Unpickle Unknown Data

Title is from a recent lecture.  But a good piece of advice when learning anything programming/technology.  Implicit trust of objects and code is an even scarier proposition with all the garbage auto-complete code that is out there right now.  

Saturday, March 29, 2025

Let's go to Rio

Came across a saved medium article that talked about a framework called Rio.  It's all python, giving the ability to write full web apps in python.  Unlike Flask, no HTML/CSS or JavaScript needed.  I'm thinking of trying it out to develop more python skills without needing to detour for the html/css stuff.  

Saturday, March 22, 2025

Ideation Abounds

Found an interesting book I had saved.  140 simple python programs.  Gave me an idea for my portfolio site. Might make it a randomizer button that loads one of the simple programs side by side within the code. 

Saturday, March 15, 2025

Group Projects

One of my favorite things we've done in my Intro to CS classes is having code reviews with small groups over a few assignments.  I've found them to be incredibly interesting and helpful.  Getting to see others approach things like doc strings and class inheritance helps contextualize a lot of what the instructors teach.  

Saturday, March 8, 2025

Reading over and over

Because I've taken a lot of personal steps to learning programming and coding over the years, I've also had the same concepts presented to me in a wide variety of ways.  

It's easy enough to follow along with writing your own scripts from a video tutorial or book, but for me, I think it's limited my lateral thinking for code.

Never Unpickle Unknown Data

Title is from a recent lecture.  But a good piece of advice when learning anything programming/technology.  Implicit trust of objects and co...