Dialup sucks, everyone knows it, but it is cheap, free in most cases. Recently MichNet cut all its subscribers off of their dial up internet service which Wayne State was part of so we were in the market for a dial up service to connect to the net upnorth. I decided on NetZero mainly because it was free. My review of the software is that it Sucks. I have used dialup for a while now upnorth but this service is the pits, the free one installs a toolbar on IE, for a while I could not get any other application to connect to the net besides IE which is a real bummer if you need to use SSH or an IM client. But eventually like magic applications began to come online, I cannot explain it but it made me happy.
It really put things into perspective for me again on how a lot of people still view the net. It was so slow at some times that I eventually disabled images and then things were flying quite well, but it really showed off which developers have the skill to accommodate this slow pace world. Some things I noticed that really helped were:
Using a background-color approximately the same color as an image background. This way if the image background does not load then the text on top still have a background color to contrast against.
Combining images and use background positioning to put them in place. This dramatically reduces the number of images to load. Like I mentioned before images were the real killer of speed when using dial up. Better yet if you can use background colors instead of images it really speeds things up without loosing design points.
Combining Javascript files and using a compressor. This is a no brainier it take almost no effort and helps with slow and fast connections. JS files can get large and they don’t have to be, I recommend using an automated compression tool called Minify. Really easy to use and
AJAX. It is odd but it really kept me on sites with AJAX for a longer period of time because the site seemed snappier and I didn’t have to wait for the whole page to load over and over again.
If you have image/flash ads on your site really sit back and think if slowing down the information on your site to a portion of internet users is really worth the few cents you may get from them clicking on the ads. Content is king, if a dial up user cannot get to your content because of a large flash or image ad on your site they will more than likely go someplace else that is dial up friendly.
Slowing things down really puts the little things into perspective. And it is the little things that matter in life.
So we have had cable internet for probably 12 years now, it first started out with Excite@Home and which got bought out by Comcast. Well in those 12 years I have only had two IP’s, one for Excite which was pretty much static 24..*. Those were the good old days when there were no limits and they did not try to control everything. And one for Comcast which is essentially dynamic but i have had to reset my router a few times and it has always come up with the same IP 68..*. Well all of a sudden yesterday of all days they decide to change my IP randomly, without me even renewing it from the router. They changed the whole IP even, doesn’t even start with the same A class 69..*.! Now it is more complicated and I have to change all my hosts files on my machines to match :-/ What a hassle, im done venting..
Just keep adding features So after some time working with the current release we noticed some areas where improvement was needed. So what did we do? We improved in all the wonderful ways below:
Added a debug.log file to debug a live site in real time, best used with “tail -f”
Added the ErrorMessages() function to summarize a forms errors, similar to Rails.
Added the SetConditions() function so querying for >, <, <=, LIKE and OR’s are all possible now.
Added a Get and Set Folder name functions in the Folder Class.
DisplayList() now uses the options of a field to display in the list.
Questions or Comments? Feel free to leave them in the PHPSimpl Group. There is always someone to help available. By the way we love feature requests, keep them coming.
Time has been flying. We have under a year now till the wedding and I have really been trying to get alot of things out of the way and on the right track.
First is getting rid of a ton of junk that has been collecting over the years. I threw away all my old computer stuff, just left a few parts which were actually worth some money. And am down to two computers and a laptop.
I have been putting things up on eBay randomly. Right now I have two old phones and a bluetooth adapter. My mindset is if i have not used something in three months to get rid of it. I have really been trying to minimize the clutter in my life.
I have been using Ruby on Rails more and more and it has grown on me, it is simple, straight to the point and a real enjoyable experience.
I have also started jogging every day. I got to a point where my appearance really started to bother me and I needed to do something about it. I really have been enjoying jogging and it actually has given me alot more energy.
I recommend for anyone else who really needs a push into productivity to read both Getting Real and Bit Literacy.
Partial’s are great, i really wish there was something as straight forward in Smarty. With Smarty it would require a loop and an include, but partials roll that all into one. It great when you are displaying a list of items, especially if that list can be used in multiple pages in many contexts.
But Rails on the other hand if you pass a collection to a partial it automatically treats each item in the collection as an individual item and there is no need to create a loop it is done inheritly.
You may be thinking that it is really not much less work but writing loops all day long can get tiring especially when they are look the same and do the same thing. Partials take it to the next level and add a real intuitiveness to the loop because it is not just an array of items you are looping through it is actual objects a template is being rendered with.
Partials can also be used without the collection in just a basic include of a sub template the syntax is below. Useful but I have not found it as much fun.