A History of Modern Programming Languages was originally found on Access 2 Learn
Assistant Professor
Walter Wimberly is an Assistant Professor at a regional college in Tennessee, teaching Computer Science in the Software Engineering track. He works as a student advisor, oversees curriculum changes, develops new courses, and manages the advisory panel.
Walter taught full time for about 7 years, before going back into “industry” as a full stack Software Developer for a dozen years. There he focused on web based projects coding in JavaScript/jQuery and utilizing the Bootstrap CSS Framework on the front-end, and coding in PHP, ASP/ASP.Net, SQL on the back-end.
Since he loves teaching, he taught as an adjunct web and digital media classes for eight (8) years, while working in industry, and has since returned to teaching full time.
He has been married for over 25 years, and is father to several special needs boys. As such, he is working on some projects to help others who have special needs to be self-sufficient, and support the care givers of those with special needs. Check out his Autism blog for more info.
Similar Posts
Playing Audio in Flutter
Audio requires use of a plugin, luckily there are several, which should make it easier. We are going to start by creating a basic Flutter app, the way we’ve done before. Then removing the comments. We’re going to play a small clip each time someone clicks on the increment button. Installing the Plugin Next we…
Overriding the output stream operator
We’ve seen how to overload an operator in C++. The stream operators are similar in nature, however, they can be a bit more involved. In many languages, there is a default toString() method for your classes, which lets the language know how to connect to the string. However, there isn’t one in C++, so we…
Improving Visual Communication through Simple Design Principles
If you go through Amazon, or a book store and find their art and design section, you can find lots of books on design. Some may have 6, 8, or even a dozen different design principles. Most of those books are designed for designers, who are looking to making something look nice. I want to…
Adding a JList Box
Now that we’ve added JComboBoxes, and Buttons to Create New and Save Data, lets work on loading data from our data source. We have our existing Student Data Access Class which we can use. Now we need to focus on getting a list of students, and displaying them. To do so, we’re going to start…
Using an OS – Part 2
In part 1 of Using an OS, we looked at user management, basic security, and file explorer. While Windows has made it easier to store files logically, it is still up to the user. Too often I’ve seen people with hundreds of files on their desktop. Often there, just “temporarily” until they no longer need…
Introduction to Arrays as a Datatype
An array is not really a datatype, but a collection of variables, (usually) of the same type. However, arrays are handled differently in different languages. Sometimes they act as an object, and thus there is an Array Class, sometimes it is a pointer to memory, usually their size is static, but not always. Each language…