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 […]

What I Look For In An Interview

Back Story The past year I applied to nearly every internship opening I could find related to computer science, such as application developer, software engineer, etc. At one point I had over fifty open applications on the career website I was using and I easily applied to over a hundred over a two month period (I tried […]

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 […]