Building a Simple Web Browser in C++ using Qt

This weekend I began working on something called Selenium Factory. Selenium is an application which automates the web browser, usually used for testing purposes. My intent is to build an application which generates Selenium code, enabling a user to type in the website they wish to test, save their various inputs/objects and output the code upon clicking […]

Building a Web Server in Go: Salting Passwords

When building a web server the key features are: serving web pages, databases, user authentication, and cookies. To maintain all of the features of a web server, we must create secure environment, only allowing authorized moderators to edit features and the correct users to access their webpages. There are usually many different layers of security […]

Templating in Go

From Wikipedia: A web template system uses a template processor to combine web templates to form finished web pages, possibly using some data source to customize the pages or present a large amount of content on similar-looking pages. It is a web publishing tool present in content management systems, web application frameworks, and HTML editors. Web templates can be used like the template of a form letter to either […]