-
Well, I came up with a Python idea that got my 6-year-old daughter pretty hooked. Mad Libs! It's basically just a series of text prompts that feeds into a story. The f-string in Python was very intuitive for her to learn and she quickly was able to help me troubleshoot. It's a great way for her to entertain herself by …
Read More -
Some scratch notes on setting up a Hugo theme as a Git Submodule... Go to your Hugo site's themes directory and git clone the theme. Then go to the root of your Hugo site and add the submodule: 1git submodule add https://github.com/xxx/xxx.git themes/<name_of_theme> Update the submodule with latest pushes with: …
Read More -
This is an h1 header This is an h2 header This is an h3 header This is an h4 header This is an h5 header This is an h6 header This is normal text.
Read More -
Here’s a super concise workflow for contributing to an existing Github project. In this guide, you will learn how to fork a project, branch a new feature or big fix, and contribute to the original project. Initial Steps: Fork, Clone, and Add Upstream Head over to the Github page you want to contribute to and click the …
Read More