Category results for: Development

Posted on , Development

How I made my beefy VPS

How I configured my LAMP stack.

Building a VPS is a lot like planning the foundation to your home, you need to have everything done correctly before you can start building up. I chose a base install of Ubuntu Server 12.10, and knew that I needed at a minimum a LAMP server. But there are a number of other tools that are needed…

Posted on , Development

Adding SASS & SCSS to Sublime Text 2

Lately at work, we have been using SASS for our new web app Inkdit. Sass has been a blessing as well as a curse. Aside from the benefits of SASS, we have been using another extension of SASS called SCSS, Read more on the benefits of SASS here. But the one thing that Sublime Text…

Posted on , Development

Sequel Pro on Dreamhost

If you are doing any work with a database you probably have used phpMyAdmin. It is an excellent tool, and for a lot of tasks, I prefer to use it. But when it comes down to QA or debugging of data on an established database I like to use an application. For the Mac, I…

Posted on , Development

Php User Login With Sessions

This is a tutorial more or less on principles for sessions with PHP. It’s more about the big picture and meant as a stepping stone for further exploration. The principal behind a user login is simple, Don’t show private or secured information to non-members. By using sessions you can: Secure content from others. Show custom…