Version Française
( Blog - Free stuff)

Google Apps : the go-to email solution for SMEs

Written by Jean-Michel Marcotte | 10 April 2012 | 0

All small and medium businesses should know about and consider using Google Apps for their email management. For up to 10 users, the solution is free and for more e-mail addresses, costs are very reasonable at around $5 per user per month.

What Google Apps is

In short, Google Apps is a cloud-based solution allowing business managers to create and delete email addresses for the company. It is one of many services offered by Google for businesses, after Adwords. It's extends to being an office application suite similar to Microsoft's Office but with emails as its central point.   Companies that want to register need to authenticate their domain name in order to send and receive from it, and eventually use the whole cloud-based application suite under the company's umbrella. It allows all the employees to use Gmail as an email client software without using an @gmail address. The migration process is not very complex and there are many benefits depending on the technological habits of the company switching.

Advantages

- Benefit from Gmail as the email client solution but still be able to use Outlook, Mail by Apple, Thunderbird or any other email client. Google Apps can work with POP or IMAP.  - Accessing the complete Google application suite with a company email: Google Talk, Google Docs, Google Calendar, etc. - Using the calendar is a definitive plus. It works impressively well and integrates with any device in a very simple way. - No need to manage a physical or remote server for emails, as is the case for Microsoft Exchange. 

Disadvantages

- Ads in your email client. As it is the case for the basic Gmail interface, Gmail under Google Apps is also filled with ads. It can still be eliminated by using Outlook or another client.  - The uncertain future for the service. Many signs show that Google will not make it a core component in their future growth strategy mainly since Larry Page stepped in as CEO.  - Data exposure to Google. If your very concerned about the location of your email data and do not trust Google much, the idea of sharing with them and having them hosting your data might not please you so much either. For Canadian companies, it's also worth noting that your customers, partners or perhaps even your company might not be legally comfortable with having sensitive data physically hosted in the US. 

Tags: Cloud, Email client, Google Apps , Logiciel de courriels, Outils, Outlook, PME,

Category: Free stuff

Share:

Calculateur de versements hypothécaires canadien

Written by David Grégoire | 16 November 2010 | 0

Voilà:

function paiements(AnnualIntRate, Period, Amount, PPay){
PrValue = Amount;
IntRate = (Math.pow((1+AnnualIntRate/2),(2/PPay)) - 1)

Pa = (PrValue * IntRate) / (1 - Math.pow (1 + IntRate, - (Period * PPay)))
return Pa;
}

aux deux semaines
console.log(paiements(0.045, 25, 325000, 24));

au mois
console.log(paiements(0.045, 25, 325000, 12));

accéléré deux semaines
console.log(paiements(0.045, 25, 325000, 26));

par semaine
console.log(paiements(0.045, 25, 325000, 52));

Tags: calculatrice hypothécaire, hypothèque, java, versements hypothécaires,

Category: Free stuff

Share:

Typeface has a bug with word boundaries and special caracters(Unicode) - IE

Written by David Grégoire | 23 March 2010 | 8

We use regularly Typeface to apply a particular font to text on websites.

A bug happened: the regex engine splits the word "français" in "franç" and "ais". The split happened when the engine meet an accented caracter, UTF8 or Unicode.

The effect was invisible in many browsers, but in Internet Explorer, a space was inserted because the script created two distinct markups.

There is a solution! You just have to change line #289 of typeface.js to this:

var words = text.split(/\b(?=\X)/);

Et l'affaire est ketchup !

Credits: http://twitter.com/tousdan

Tags: accents, caracteres spéciaux, java, regex, typeface, unicode,

Category: Free stuff

Share:

Files and folders versionning software

Written by David Grégoire | 8 January 2010 | 7

Very often, we edit or replace (or delete!) a file while working.  More often when the file is located on an external drive, shared by multiple users and when, sadly, two or more decide to work on the same file simultaneously.

So I've been looking around and trying a few solutions to this problem.

Subversion (SVN) is a good and reliable versionning software, but it requires a specific architecture to work, and http://sparko.ca is at a too early stage to use this solution.  Everyone would have to work locally and then update/checkout/commit their work when done.

We decided to use AutoVer, a freeware Windows application developped by an australian guy. (http://beanland.net.au/AutoVer/)

The program is easy to install, we can set up as many folders as we want, filter what will be backuped, and decide what to do with older versions.  We can also compare different versions together.

In our case, I set up the program to backup all our projects files (located on a network drive) and save the versions on an external drive.

Every single time a user presses "save" from any program (Notepad++, Photoshop, Office...), a before-save version of the file is created with the same path on the other drive.  Thus, the file

E:\projects\project1\html\hello.php

is saved under

F:\projects\project1\html\hello.php.JJMMAAAAHHMMSS.php

 

So then, each time an individual (i.e. Joel) deletes by mistake a file, we can restore it immediately!

Tags: autoVer, back-up, backup, fichiers, files, freeware, programme, sauvegarde, software, versionning,

Category: Free stuff

Share:

  • Pages :
  • 1
  • 2