I want to preface this post by saying that these Javascript "Fundamentals" posts really aren't about the fundamentals, but really about the intricacies and under-the-hood principles that make Javascript such a powerful language. Specifically, these are topics that I found interesting that changes my perspective on JavaScript programming and why it is such a cool … Continue reading JavaScript Fundamentals #3
Tech Posts
Posts explaining anything I have recently learned software related!
JavaScript Fundamentals #2
Today I watched a bit more of JavaScript: Understanding the Weird Parts on Udemy. I learned a lot more about functions than I had known previously and it is actually really useful. First of all, it is important to note that functions are objects. This means that functions can be treated as objects and can … Continue reading JavaScript Fundamentals #2
Javascript Fundamentals #1
This is a little post after watching the second section of JavaScript: Understanding the Weird Parts by Anthony Alicea. I want to preface this by saying that before going into the course, I didn't think I was going to learn much about JavaScript since I've used it a bunch on various projects. It was true … Continue reading Javascript Fundamentals #1
What is a Web Service?
“A web service is any piece of software that makes itself available over the internet, sometimes through HTTP, and uses a standardized XML messaging system.” What is HTTP? HTTP means Hypertext Transfer Protocol. It is a stateless internet protocol meaning that there is no memory of any previous page actions or commands. Basically, nothing can … Continue reading What is a Web Service?