Skip to content

Instantly share code, notes, and snippets.

View blvd20's full-sized avatar
🎯
Focusing

Vincent J blvd20

🎯
Focusing
View GitHub Profile
  • git blame
  • git history
  • guide (to show intendent)
  • vscodevim
  • eslint
  • colorpicker
  • Quokka (test a piece of code and get instant feedback)
<svg height="400px" width="100%">
<rect x="10" width="100" height="100" transform="matrix( 2 0 0 2 50 50)"></rect>
<rect x="10" width="100" height="100" fill="red" transform="matrix( 1 0 0 1 50 50)"></rect>
</svg>
<svg height="400px" width="100%" style="background:blue">
<rect x="10" width="100" height="100" transform="scale(2) translate(50 50)"></rect>
<rect x="10" width="100" height="100" fill="red" transform="translate(50 50)"></rect>
</svg>
<svg height="400px" width="100%" style="background:green">
<rect x="10" width="100" height="100" transform="translate(50 50) scale(2) "></rect>