Programming is all about getting the code to do what I want, and not what I told it to do.
Life of a Noob Dev Op, as I learn to code and work on getting a job in a new industry
Friday, February 28, 2025
Tuesday, February 18, 2025
Naming conventions are important
People not following naming conventions is going to drive me insane.
Xxxx_xxx_dddd is not the same as Xxxx_xxx-dddd.
Ok, so check if char 8 is... No wait, just get rid if char 8... Xxxx_xxxdddd doesn't care if there used to be a - or a _ there.
Ok, thanks for helping me figure out how to fix this.
Wednesday, February 12, 2025
It runs faster!
I refactored some code, cutting run time by 34%.
The program runs once a day, takes 5 minutes, with 4 minutes of that being 2 rounds of "Wait 120 seconds and make sure we really disconnected". Around 6hrs of writing, testing, and getting approval to save 7 seconds of time per day.
This is the life of a junior.
Sunday, February 9, 2025
Can AI code?
Today for fun I wanted to see how much I could do just using AI code.
Below is the prompts I used:
- Using python, I want to create a todo type app that uses json to store the data
- Based off the code above, add in a due date
- Sort tasks by due date
- Add in a priority rating for task, sort task by due date and then by priority.
- Have option 5 show a list of uncompleted tasks, and a list of completed tasks
- Add in an option to edit existing task, including description, due date & priority
- Rather than using the command line, lets create a html interface
Error code
"Oh, I know this error code! I just need to google it to remember how to fix it." Life of a coder.
-
Today I went to Code & Coffee hoping some of my group would show up so we could discuss our group project. None of them showed, so inste...
-
I spent way too long yesterday failing to spot that I was missing a comma. A combination of never having used Postman before, and the font ...
-
One of the things that has come up when I am helping people is that they don't just need to create a solution, they need a solution th...