Skip to content

Instantly share code, notes, and snippets.

View angyK-dev's full-sized avatar
😎
JavaScript rocks!

Ange Kouakou angyK-dev

😎
JavaScript rocks!
  • Nouvelle Compagnie Africaine de Réassurance (NCA Ré)
  • Abidjan - Côte d'Ivoire
View GitHub Profile
@bradtraversy
bradtraversy / npmcrashcourse.txt
Last active September 29, 2024 21:04
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)
@florianboudot
florianboudot / CSS-transform-blurry-fix.css
Created April 13, 2017 15:26
CSS transform blurry fix
/* translateZ + scale = fix font blurry */
-webkit-font-smoothing: subpixel-antialiased;
transform: translate3d(-50%, -50%, 0) scale(2, 2);
zoom: 0.5;