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
Client Side Programming on your Webpage
There used to be several client side languages, however, now almost all client side programming is done with JavaScript. JavaScript is a scripting language which directly interacts with the web browser. All of the interaction is done on the client’s side. It is most often used for simple things like form validation and moving items…
Nested Lists
While it is not encountered all the time, any web developer who has worked very long will encounter a need for nested lists – that is a list within a list, or what is sometimes called a sub-list. Nested lists allow for you to better organize groups of related items. Consider a packing list for…
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…
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…
What’s in a Website Review
One thing that web designer’s often need to do review other people’s work. You may need to do this for numerous reasons including: Review a potential client’s site, and let them know what should be changed Review the work of a coworker to ensure it is correct/good Review a 3rd party vendor, who did work…
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…