Category: webpages

General Web Development Helpers 0

General Web Development Helpers

Style and Design Find a Good Google Font I like looking at the font selected by Typewolf : https://www.typewolf.com/google-fonts Otherwise you can browse the whole archive at : https://fonts.google.com/

Draw an animated ARC vector in HTML / CSS / SVG 0

Draw an animated ARC vector in HTML / CSS / SVG

Bibliography / Sites Consulted / Example https://www.w3.org/TR/SVG/paths.html https://stackoverflow.com/questions/51932434/d3js-animate-a-2-arc-donut Nice blog post. How does he do all those arc sections? https://swizec.com/blog/silky-smooth-piechart-transitions-react-d3js/swizec/8258 https://codepen.io/anthonydugois/pen/mewdyZ An continuously animated arc component in React, simply written, although I didn't use...

Supporting IE 8 0

Supporting IE 8

Why would anyone care about IE8 ? Well sometime we have to if our clients is still on it, and yes in 2015, there are groups in the federal business that still only use...

Create your own Chrome Extension 0

Create your own Chrome Extension

How to test your extension during development 1. Navigate to chrome://extensions 2. Click on "Load unpacked extension..." Troubleshooting Problem There were warnings when trying to install this extension: Permission '://.google.com' is unknown or URL...

Gulp usage with sass watch, minify and r.js compressor 0

Gulp usage with sass watch, minify and r.js compressor

This is what I use for Gulp in my HTML5 boilerplate Installation : npm install gulp-concat --save-dev npm install gulp-autoprefixer --save-dev npm install gulp-minify-css --save-dev npm install gulp-usemin --save-dev npm install gulp-shell --save-dev npm install gulp-sass --save-dev...