A Hundred Days of Code, Day 011

Ok the weather app is done. Er, only it’s not the weather app anymore, it’s just a temperature app. The program was meant to pull all sorts of details from Wunderground and apparently the site has changed into a different, more complicated (to me) web page. I did not want to spend all my time, futzing with CSS. So I figured out how to just pull out the place name and the temperature and display it. ...

April 24, 2020 · Mario Jason Braganza

A Hundred Days of Code, Day 010

Working on the get tempature / mini weather app. Learnt about type hints.(I intuitively needed this feature as I kept dotting in my editor waiting for stuff to pop up :P glad to know such a thing exists and Python supports it.) Learnt about named tuples. I love anything that will let me name things the way I want. Learnt about sanitising text that we extract from a web page; stripping white space and new lines and crazy characters and what not. Grateful for the batteries included nature of Python. Well, not necessarily batteries included as much as batteries available on demand. Batteries of all shapes and sizes at that. I can only imagine what writing such a program from scratch must involve. To all the generous people, making modules and libraries available to use freely, and to the infrastructure that delivers it, you folk have my undying gratitude.

April 23, 2020 · Mario Jason Braganza

A Hundred Days of Code, Day 009

Cooking along on the weather project. Managed to pull down a web page, put it into a object, return in and then create some ‘soup’ out of it. It handily lets me inspect a lot of stuff, but finding what I want seems to be confusing. Brains are mush right now. Will give it another go, tomorrow.

April 22, 2020 · Mario Jason Braganza

A Hundred Days of Code, Day 008

No work done today. Mom’s area got quarantined in a total lockdown, so was busy there most of the day. Hundred and one, turns to a hundred and two.

April 21, 2020 · Mario Jason Braganza

A Hundred Days of Code, Day 007

Started up with a weather app today. It is supposed to scrape the weather from Weather Underground, parse it a bit and then give you the weather. Made the template of the app. For some reason requests does not seem to be recognised in VSCode. Will do more tomorrow.

April 20, 2020 · Mario Jason Braganza

A Hundred Days of Code, Day 006

Journal progam done! Yay! Find the code over at Gitlab or Github. The program is a lot more basic than I expected. It does not let me keep multiple journals :) But I’m happy with what I learnt. How to put together a program How to use modules Found a little extension in VSCode, called VSCode autoDocstring, that makes typing in docstrings a breeze. Oh, I learnt about docstrings, to help document what I am doing. And brushed up on the basics, loops, conditionals, etc. Here’s to more happy programming. ...

April 19, 2020 · Mario Jason Braganza