My learning curve over the last ten years of doing development was not only about success. Most of the time, I was failing (hard). But if you never fail, you will never experience growth! So I’m a happy failure in
Category: Code
How to create a MySQL connection and run queries with Python3
We will use pymysql to connect to MySQL in Python3. First, you have to install the module using pip or pip3:
pip install -U pymysql
pip3 install -U pymysql
Then you can use this code to connect to your …
GitHub Pages and JavaScript and Putting Everything to Use
GitHub Pages and JavaScript
A long time ago I blogged about GitHubPages and getting started with setting up a webpage.
The static web pages are nice and they can help you make your project or documentation look good, but for …