What you need to know about me!

About Me

I hold a certificate of college education in “web technology (frontend)”, college diploma in “computer application programming” and a professional diploma in computer graphic design (Infographie).
I have developed a good experience in the field of IT. I have more than 10 years experiences especially in programming, as a Front-end developer and UI/UX developer in the financial services, e-commerce and the government.
Since 2010, I work as a web developer, Front-end developer, UI/UX developer, Web designer or Full-stack developer.
Some projects I worked on are Yellow Pages, Desjardins, Le Directeur général des élections du Québec (DGEQ), CGI, Air Canada, etc.

Here you can find the latest articles I read about

Latest Blog posts

How to use the JavaScript Fetch API

const requestInit = { method: ‘GET’, headers: {‘Content-Type’: ‘application/json’}, mode: ‘cors’, cache: ‘default’ }; let theRequest = new Request(“TheURL”, requestInit); fetch(theRequest) .then( (res) => {return res.json(); }) .then( (data) => …

Add opacity to hex color code

Best practice to use hex color in opacity colors instead of rgba. $the-color: #E1B4C0; background-color: transparentize( $the-color, 0.25); Now don’t need to find the rgb of $the-colorbefore: background-color: rgba(225, 180, …