Developing Thoughts - my online experience

Fading PNGs in Internet Explorer 7 and 8

One issue I recently came across was the desire to use PNGs as the background of a tooltip, and to fade the tooltip in and out of view (you can see the functionality here by hovering over ‘details’ or clicking on ‘buy now’).
read more

Setting Up a Local Code Igniter Dev Environment (OSX)

I recently downloaded the latest version of CI and began setting it up – when I realized the setup may be helpful to describe to newcomers to the PHP framework.

While this tutorial is geared towards Mac users, most of the steps should be similar for Windows users.

read more

A Quick Code Igniter and JQuery Ajax Tutorial

This tutorial assumes a basic working knowledge of Code Igniter. If you have never used CI before, please refer to the framework documentation

In the old days (2 years ago), working the Javascript magic to create a cool AJAX based event took a fairly decent working knowledge of the mechanisms behind the process.
read more

Optimizing This Site, Part II: Use a CDN

The second recommendation yahoo makes is to use a CDN – or Content Delivery Network. The idea of a CDN is to take the uploaded files, and distribute them to servers around the world, so when a file is requested it is served from the nearest/lowest latency server. The secondary benefit is that this also offloads some of the processing power from your server, to an entire network of servers – whose whole purpose is to serve your files as quickly as possible.
read more

Optimizing This Site, Part I: Reducing HTTP requests

According to YSlow, I received an F for the number of http requests made by my homepage. This page currently has 23 http requests, including 12 javascript files and 5 css files. This is way too many, and we need to bring this number down. Here is a link to what Yahoo has to say about reducing HTTP requests. I’ll list my updates in the same order.
read more

Optimizing This Site, Prelude

As I was redesigning this site, and preparing to redirect my domain to it – I decided that I would hold off on performing the optimization that is important to every website. Instead, I thought I would create a series of posts about the process – step by step so we can all witness how the site improves which each optimization performed. I’m going to try to go in the order presented by Yahoo and their YSlow firefox plugin, in order to present actual numbers related to the changes.

read more

The New mrforbes.com

So, you may not even know what the OLD mrforbes.com was. It was the last iteration of my online persona presentation website and blog, which actually had one post on it about using code ignitor and and jquery to make ajax things happen which garnered a little bit of traffic.
read more