Skip to content

Instantly share code, notes, and snippets.

View coolcorexix's full-sized avatar
🏠
Working from home

Nemo coolcorexix

🏠
Working from home
View GitHub Profile
@simon360
simon360 / check-packages.js
Created April 20, 2018 11:58
Compare different package.json files in a monorepo to see if dependency versions differ
const chalk = require("chalk");
const packages = [
require("./package.json"),
require("./packages/cec-scripts/package.json"),
require("./packages/generator-cec/package.json"),
require("./packages/utility-cec-simulator/package.json")
];
const compareDeps = p => {
@lukehedger
lukehedger / ffmpeg-compress-mp4
Last active November 28, 2025 12:27
Compress mp4 using FFMPEG
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4