Skip to content

Instantly share code, notes, and snippets.

View wondger's full-sized avatar
😇

wondger wondger

😇
View GitHub Profile
@siannopollo
siannopollo / canvas_marker.js
Created September 4, 2012 19:18
Google map marker using canvas
var canvas = document.createElement("canvas")
document.body.appendChild(canvas)
var c = canvas.getContext("2d")
c.beginPath()
c.strokeStyle = 'darkred'
c.arc(11,11,10,0.8*Math.PI,0.2*Math.PI,false)
c.stroke()
c.lineTo(11,34)
c.stroke()
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active November 16, 2024 16:15
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example