End Of May Update

In which you learn about my month of May...

JMN

4 minute read

Computers More fun python this month with lil projects in Django and Flask. Currently working on a simple dashboard for displaying the data collected by a solar array, cleaning up my own portfolio, and starting work on a lil web app to output nicely formatted ‘set lists’ of your Spotify playlists. That should be fun little introduction to the Spotify API and give me an idea of what might be possible.

Django Models and Deployment

In which we learn about Django object models and deploy our work to the WORLD WIDE WEB...

JMN

4 minute read

Finally had some free time to come back to my prepared Django environment and mess around with a starter project. You can follow the same walkthrough I did. I’ll just highlight some of the interesting things learned. Object Models and Django Objects - a way to describe real things in code with properties and actions object properties == property of a thing methods == actions of a thing Applying object model to Django blog posts properties: title, text, author, created_date, published_date methods: publish Applications and Django Create separate apps within prject to keep things organized Create app with manage.

JMN

5 minute read

Django is a web framework that runs on python. Now that I’ve gotten well acquainted with the python syntax exploring Django has become much more intriguing. In this post I work through the DjangoGirls intro to Django tutorial which was presented in Seattle in April 2017. One of my classmates attended (Margarita) and passed on the tutorial to me. You can find the walkthrough here: https://tutorial.djangogirls.org/en/ In this post I’ll just summarize the setup through the point at which Django serves its default project page.

1 minute read

I’ve been exploring Hugo for a bit and decided that I’d like to deploy my fresh blog site to the /blog/ subdirectory of my https://jmnofziger.github.io base url. However, my attempts to do that locally resulted in resources not being linked correctly. CSS stylesheets couldn’t be found, JS scripts couldn’t be found; all my resources were return 404. An inspection with the browser console showed that resource URL’s weren’t being updated to reflect https://jmnofziger.