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 July 17, 2023 09:40
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 May 15, 2024 00:44
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))});
}