Skip to content

Instantly share code, notes, and snippets.

View OlinB's full-sized avatar

Olin OlinB

View GitHub Profile
@calebporzio
calebporzio / composer_versions_cheatsheet.md
Last active September 30, 2024 08:58
Composer version symbol cheatsheet
...
"require": {
    "vendor/package": "1.3.2", // exactly 1.3.2 (exact)

    // >, <, >=, <= | specify upper / lower bounds
    "vendor/package": ">=1.3.2", // anything above or equal to 1.3.2
    "vendor/package": "<1.3.2", // anything below 1.3.2

 // * | wildcard
@nickjshearer
nickjshearer / dialup.js
Last active July 31, 2025 14:51
Dial Up Images
// Dial-up modem image loading using canvas. Relive the glory days of the internet
//
// Usage:
// <canvas class="image-canvas" width="180" height="180" data-image="http://lorempixel.com/180/180/">
// <p>Image alt textc</p>
// </canvas>
//
window.onload = function() {
var elements = document.getElementsByClassName("image-canvas");