Skip to content

Instantly share code, notes, and snippets.

View bikcrum's full-sized avatar
💭
I will respond anyway.

Bikram Pandit bikcrum

💭
I will respond anyway.
View GitHub Profile
@bikcrum
bikcrum / hello_world.js
Created October 16, 2021 20:01
Hello World Examples is now patched!
conosle.log('Hello World');
@Kazuki-Naruse
Kazuki-Naruse / SortAlgorithm1.js
Last active October 19, 2021 06:35
SortAlgorithm1
// SortAlgorithm1
const { Tracer, Array1DTracer, Randomize, Layout, VerticalLayout } = require('algorithm-visualizer');
const tracer = new Array1DTracer();
Layout.setRoot(new VerticalLayout([tracer]));
const Arr = Randomize.Array1D({ N: 10 });
tracer.set(Arr);
Tracer.delay();
@marlosirapuan
marlosirapuan / gist:778d6beda5f8ab95695748011c864b19
Last active May 23, 2024 08:26
Download .m3u8 files on MacOS

Install ffmpeg

brew install ffmpeg

Download file through url, like this:

ffmpeg -protocol_whitelist file,http,https,tcp,tls,crypto -i "http://url-file.domain.m3u8" -c copy video.mp4