Skip to content

Instantly share code, notes, and snippets.

@boidushya
boidushya / tqr.sh
Created February 14, 2025 10:37
Cloudflare Tunnel with QR Code
#!/bin/bash
# Default values
PORT=3000
PROTOCOL="http"
HOST="localhost"
ADDITIONAL_PARAMS=""
# Function to display usage
show_help() {
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active March 15, 2026 09:52
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

@caged
caged / svg-to-png.js
Created January 27, 2013 18:11
Convert SVG's to PNGs. This works OK if the SVG's styles are inline. The SVG element must contain an xmlns attribute. Webkit also requires you specify a font size on `text` elements.
var svg = document.getElementById('graph'),
xml = new XMLSerializer().serializeToString(svg),
data = "data:image/svg+xml;base64," + btoa(xml),
img = new Image()
img.setAttribute('src', data)
document.body.appendChild(img)