Skip to content

Instantly share code, notes, and snippets.

View git-ashish's full-sized avatar
🏠
Freelancing – Open to exciting opportunities

Ashish Singh git-ashish

🏠
Freelancing – Open to exciting opportunities
View GitHub Profile
@pbeshai
pbeshai / .block
Last active March 21, 2025 08:55
Animate thousands of points with canvas and D3
license: mit
height: 620
border: no
@mrcslws
mrcslws / .block
Last active May 7, 2019 15:03 — forked from mbostock/.block
Pan & Zoom Axes
license: gpl-3.0
@veltman
veltman / README.md
Last active July 24, 2022 18:42
Flocking boids
@bambooom
bambooom / puppeteer-gif.js
Last active March 3, 2025 23:33
use puppeteer to generate gif
const fs = require('fs');
const puppeteer = require('puppeteer');
const GIFEncoder = require('gifencoder');
const PNG = require('png-js');
function decode(png) {
return new Promise(r => {png.decode(pixels => r(pixels))});
}