Blog
Thoughts about programming, design, and life in general.
-
How do I kindly tell my users to upgrade from IE6?
It’s almost impossible to get every site working properly on IE6 and with the way it renders HTML & CSS what developer in their right mind would even want to try? I wrote a little HTML & CSS to target users on IE6, in hopes that some of them will upgrade to something a bit more current.
Read more... -
Self Control App for Mac OSX
Are you a Facebook Junkie? Well, good news… the first step to recovery is admitting that you have a problem. Next step is to download Self Control App by Steve Lambert.
Read more... -
Productivity vs. Social Networks
If you work at a computer for a living you need Rescue Time.
Read more... -
How do I create a new database and import .SQL file?
Open Terminal & Login.
Read more... -
Fix for ERROR 1049 (42000): Unknown database…
I was trying to import a new database but kept getting this error ERROR 1049 (42000): Unknown database ‘MYDATABASE’, finally got it fixed… the error wasn’t with the syntax it was how I exported my database.
Read more... -
How do I delete a MySQL database?
To delete a database, open terminal and login to your MySQL, if you don’t have a password leave it blank. If your default user isn’t ROOT you’ll want to change that to your id =]
Read more... -
Today is My Birthday
It got me thinking about how lucky I am to have so many friends who love me no matter what. I believe that a good part of me is a summary of everyone I’ve ever met and so I’m especially grateful to have so many wonderful people in my life. Thank you for having faith in me and teaching me new things, I’m looking forward to so much more.
Read more... -
How do I style a horizontal rule HR tag with CSS?
Here’s how you can style the Horizontal Rule tag with CSS. Just a note, the default of an HR tag is 100% wide, 2px high (1px for line the and 1px for a border to give the line a 3D effect).
Read more... -
Why do linked images display white space in between with IE7?
If you ever tried to display a row of linked images in a row, you may notice some white space in between them when viewing in Internet Explorer 7, this is because IE7 adds a default line-height of 16px which, in the case of seeing whitespace isn’t what you need.
Read more... -
What is the proper format of a JSON Array file?
Well let’s start off by understanding what JSON is, JavaScript Object Notation. It’s a derivative of JavaScript that allows data to be passed between a server & a website in the form of objects. It’s similar to XML, except the JSON syntax is less invasive than XML and so it ends up having a bit of a smaller file size.
Read more...