Are College Degrees Worth the Cost?

This is a question that has been raging in our culture for the past several decades. Many of use are told, yes universities are worth the money by parents, teachers, T.V. programs, etc. However, we also are often told that the prices are simply outrageous or you’ll be in debt for the rest of your life! It’s true, […]

Building a Web Server in Go: Authentication Cookies

What is a Cookie? Web cookies, also called HTTP or browser cookies are small pieces of data sent from the web server to the users browser, the users web browser then sends that data back to the web server every time the user loads a page (on the cookies website). In this article we will […]

Building a Web Server in Go: Handling User Input

I have previously written an article related to Building a Web Server in Go: Handling Page Requests, and I recommend that it is read in conjunction with this article (though it is not necessary to properly understand this post). In Go, pretty much every webpage is “handled” or served via a “http.HandleFunc(“Page”, HandlerName),” there are […]