Soon after retiring, I found myself sitting around, devoid of deadlines and, quite frankly bored. Programming is what I love; it’s what I’m good at.
When I was teaching computer science at a university, a constant goal was to provide assignments which were not just rigorous, but were also fun. Before I would assign them, I would write them myself. I really enjoyed this.
Now I have a plethora of unrestricted time. No boss, no deadlines., no hassle. So I think of a project and I chip away at it.
Here is a sampling:
-
React TreeView Redesigned component

Link to Demo… Purpose: Create customizable TreeView control Implement previous shortcomings (particularly data update rendering) Description: Flexible, Customizable, Powerful Technical Details: ReactJS NodeJS Javascript HTML/CSS Github
-
Scrapr – Online Scraping Tool

Link to Demo… Purpose: Online tool to assist in scraping web pages. Description: * Alert: Scraping can encroach on established copyrights. Please use responsibly. Interprets web page into easy-to-navigate tree structure. Uses a command queue system to apply commands to html (remove/store) Exports scraped data as HTML or JSON formats. Produces NodeJS code for replicated…
-
Wordle Solver v.1.2

Link to Demo… Purpose: A dictionary reference to assist Wordle players. Description: A two part application: Assist in analyzing first guess words. Filter dictionary words by Wordle results Analysis is a mix of commonality of each dictionary word and word shape (positional conformity) Technical Details: ReactJS NodeJS Javascript ECMAScript TypeScript HTML/CSS