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
The Ethical Promise Of Social Media
For our purposes, social media is the idea of an online place where people can communicate with one another through chat, online forums, comments, etc. This can be online forums such as Reddit, Comment Sections in YouTube, Instagram, Facebook, and X. We are not looking at a specific platform, but the concept in general. We…
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…
Simple Pseudocode Statements
The best way to learn how to write pseudocode is to simply start to write it. Luckily it is very simple to do. Now with pseudocode, some people like to write a start/end or begin/end, just like with a flowchart. This isn’t required, however, it can make things more clear, and you can see an…
Intro to Java Threads
Threads, in general, allow a program to behave more efficiently by passing off parts of a process so that multiple items can be done simultaneously. With the advent and growth of multi-core processors which allow for many natural threads, this has been increased. Why do we need threads? Well simply put, there is always something…
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…
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…