Web Users Statistics and Trends

Mario Laflamme July 3rd, 2006 Add comment

Before conceiving and developing a website, it’s important to know the most used technologies on Internet. Therefore, I regularly consult the statistics of W3 Schools which indicate the monthly evolution concerning the use of the browsers, operating systems, resolutions and other technologies.

But, be aware…

[…] Global averages may not always be relevant to your web site. Different sites attract different audiences. Some web sites attract professional developers using professional hardware, other sites attract hobbyists using older low spec computers […]

ActionScript Search and Replace

Mario Laflamme June 6th, 2006 Add comment

ActionScript doesn’t provide a built in String.replace() function to search and replace text in a string. Then, here is a small function (but very effective) which is a good alternative.

function replace(search, replace, subject) {
    return subject.split(search).join(replace);
}

Create your Ajax Indicator

Marc-Antoine Ross June 3rd, 2006 1 comment

I was searching for a nice loading/processing indicator while adding a few Ajax improvements into the CMS I developed and found this: AjaxLoad, a site to generate indicators with your foreground and background colors. Let’s see if the developer will add new and original indicators!

Free Icon Sets

Marc-Antoine Ross May 29th, 2006 Add comment

Here is a list of cool and free icon sets.

Easy FTP Scripting in Linux

Rico Nagtalon May 14th, 2006 Add comment

Ever had the need to transfer files through a cron job in a Linux system? Maybe you need to download some rotated logs for archiving? Or upload some files at a given point in time?

Making a Linux shell script do FTP can actually be quite painless. And it works even if the remote host isn’t *nix (Windows, for example). (more…)

Some Water Powder huh?

Marc-Antoine Ross May 11th, 2006 Add comment

www.water-powder.com… Do I really have to write more about it?

The Multipage Validator as an official Google button

Marc-Antoine Ross April 25th, 2006 Add comment

Mario and I are very happy to announce that the Multipage Validator button has been added to the Google Toolbar button gallery. This button works with our Multipage Validator which is a very powerful tool to validate your website’s HTML or xHTML code.

How to Schedule Tasks in crontab

Marc-Antoine Ross April 12th, 2006 Add comment

Another simple post, more a reminder again. First, login to the Unix server through SSH.
Here are a few usefull commands:

crontab -l     list the tasks
crontab -e     edit the tasks
crontab -r     delete the crontab file

(more…)

How to Backup a Website on Unix

Marc-Antoine Ross March 30th, 2006 Add comment

I am always searching and searching for the same shell commands. I don’t use them often enough to remember them. Here’s one to backup your whole site directory into one archive file:

tar -cvzf ~/$(date ’+%F_%H%I%S%P’).tgz ~/domain.com/

This will backup the whole folder “domain.com” into an archive. The filename will include a timestamp, which is quite useful!

What should I bring you back?

Marc-Antoine Ross March 23rd, 2006 5 comments

You want me to bring you something back from my current or next trip? Just leave a comment with your request and I will try to get it for you!

Cheers!

Previous Posts Next Posts