-
GUI Showdown
Friday, February 11, 2022 in Blog
Andy’s GUI Showdown - The same application, implemented in various ways - which is better, cleaner, more understandable etc? Like the TodoMVC “Rosetta Stone” project, but uses a different example application, and includes Python as …
-
History of this Blog
Friday, January 21, 2022 in Blog
These blog posts are often based on presentations that I have given to live audiences at various programmer enthusiast user groups or conferences. Talks given but unfortunately no website presentation materials 2007 July - Object Role Modeling - What …
-
tables
Friday, October 09, 2020 in Markdown Experiments
Text can be bold, italic, or strikethrough. Links should be blue with no underlines (unless hovered over). What Follows A table22 A header A table A header A table A header column 1 column 2 value value 1value 2 value value 1value 2 column 1 column 2 …
-
rm table
Friday, October 09, 2020 in Markdown Experiments
Look up the scenario you need to implement on the left, then use the template implementation on the right in your code. Relationship Scenario Example Python Implementation Implementing one to one relationships between class X and Y #1. 1 → 1, …
-
Andy 1
Wednesday, September 16, 2020 in News
this is a post Hey THERE this is a standalone page. this is a standalone page. this is a standalone page. this is a standalone page. this is a standalone page. this is a standalone page. Name Age Bob 27 Alice 23 another table asdasdasd bbbbb xxxxx …
-
TodoMVC implemented using traditional OO, Controllers and Events
Monday, May 18, 2020 in Blog
TodoMVC implemented in a classic Object Oriented way. TodoMVC is a long standing web project showing how a ToDo app can be built in numerous frameworks. The classic Javascript TodoMVC app implemented without a framework, using plain Object Oriented …
-
TodoMVC implemented using a game architecture — ECS
Monday, May 18, 2020 in Blog
Building traditional GUIs with the Entity Component System. Is the Entity Component System any good for building traditional GUIs? It turns out that the answer is yes! Whilst ECS is most commonly used in building games, it can also be used for …
-
Django View logging is back-the-front
Wednesday, September 04, 2019 in Blog
Have you ever looked through your Django log files and console messages, felt something was out of order and didn’t make sense, but couldn’t quite put your finger on it? Here is an example of what I mean. Here is some view code: def …