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
Antivirus Software: What It Is, Isn’t, and Why It Still Matters
You’ve probably heard the term antivirus software your whole life. Maybe you’ve even seen your computer flash warnings from programs like Norton, McAfee, or Windows Defender. But what exactly does antivirus software do and do you still need it? The answer is yes; but probably not in the way you expect. In this section, we’ll…
Common Coding Problems
Over my 25-30+ years of coding (including hobby stuff as a teenager), I’ve made my fair share of coding mistakes. In fact, everyone who has ever written code before has written lots of errors. That’s why we test so much. Even today, I still make mistakes, many of them the same as you. The difference…
Effects of Plugins on WordPress Websites – Part 2
In my previous post, I was talking about the effects of WordPress Plugins. Some plugins will have little to no effect. Others while have a large effect. I was in a recent online forum discussion a particular plugin, Learn Dash. I used the P3 plugin to see the performance of my theme and plugins. Then…
Linked Lists
Since arrays must be made of a contiguous section of memory, large arrays become harder to allocate memory for them, especially as the application becomes more complex. Therefore, developers will often look to using something like a linked list. A linked list incorporates a custom data type. One of the data types which makes it…
Project Management – People
People are the primary driving factor in any project, but especially software development. Managers will often say this, but their actions will sometimes prove otherwise. There are different roles that people will have, and they need to know what is expected of them, and be able to perform that task with the skill required. Unfortunately,…
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…