An introduction to the Contact Manager project.
Category: Projects
Date Created: 06/23/2023 19:37:18
Date Updated: 12/04/2023 16:54:05
Posted by David Bellerose
This Contact Manager is an ASP.NET MVC C# full stack web application that keeps track of your contacts. It includes two main models, which are the Contact and Category classes. There is a many-to-many...
The clever way the balance bracket algorithm works.
Category: Algorithms
Date Created: 12/04/2023 16:35:23
Date Updated: 12/04/2023 16:38:46
Posted by David Bellerose
Introduction Bracketolgy is an application I developed to demonstrate how to balance brackets in a string with JavaScript. What this does is make sure each opening bracket has a matchi...
My transition from aircraft inspector to web developer.
Category: General
Date Created: 06/22/2023 16:58:03
Date Updated: 11/18/2023 17:34:12
Posted by David Bellerose
I consider myself lucky to have had an eclectic experience in my working lifetime as far as the industries I was fortunate enough to have worked in. Some have included fundraising in the non-profit se...
Find out how this image mapping tool is still useful.
Category: Helpful Tools
Date Created: 06/22/2023 20:12:51
Date Updated: 11/16/2023 23:33:22
Posted by David Bellerose
Building websites many years ago was a challenge. We didn't have the powerful tools we use today. I am talking about when we would use tables for layouts, images for buttons, and flash for video and a...
How to get the previously visited page and redirect to that page after an Edit, Create or Delete action in ASP.NET.
Category: Snippets
Date Created: 06/22/2023 23:24:03
Date Updated: 11/16/2023 23:32:42
Posted by David Bellerose
There may be a time when you would want to return to the previously visited page when performing action on data. One simple method is to use a helper or extension class. To maintain separation of conc...
A description of the design principal of MVC.
Category: Code Corner
Date Created: 06/22/2023 15:45:59
Date Updated: 11/16/2023 23:31:48
Posted by David Bellerose
MVC is a design pattern that helps organize your code to make it more manageable and easier to maintain. The MVC acronym stands for Model, View, Controller. These are the three categories that your co...
A palindrome checker written in both JavaScript and C#.
Category: Algorithms
Date Created: 06/21/2023 20:36:57
Date Updated: 11/16/2023 23:31:09
Posted by David Bellerose
This C# version uses the MVC model. The Model The model represents the database. It defines the database table as well as t...
A javascript algorithm that reverses a string.
Category: Algorithms
Date Created: 06/21/2023 20:17:55
Date Updated: 11/16/2023 23:30:37
Posted by David Bellerose
This code is structured in three functions.The first thing done was to add an event listener to the button so the code will fire when the button is pressed.The next getValue function gets the value ...
A javascript algorithm that counts down from a number.
Category: Algorithms
Date Created: 06/21/2023 19:46:04
Date Updated: 11/16/2023 23:30:14
Posted by David Bellerose
This code is structured in three functions.The first thing done was to add an event listener to the button so the code will fire when the button is pressed.The next getValues function gets the value...