Mario Laflamme July 3rd, 2006
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 […]
Mario Laflamme June 6th, 2006
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);
}
Marc-Antoine Ross June 3rd, 2006
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!
Marc-Antoine Ross May 29th, 2006
Here is a list of cool and free icon sets.
Rico Nagtalon May 14th, 2006
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…)
Marc-Antoine Ross May 11th, 2006
www.water-powder.com… Do I really have to write more about it?
Marc-Antoine Ross April 25th, 2006
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.
Marc-Antoine Ross April 12th, 2006
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…)
Marc-Antoine Ross March 30th, 2006
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!
Marc-Antoine Ross March 23rd, 2006
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