Skip to content

Instantly share code, notes, and snippets.

@evertontrindade
evertontrindade / post-install-ubuntu-2004.sh
Last active March 7, 2022 14:26
Things to do after install Ubuntu 20.04 ( minimal - With flatpak)
#!/bin/bash
cd ~/Downloads
#####################################################################
# Update System
#####################################################################
sudo apt-get update -y && sudo apt-get upgrade -y
#####################################################################
@zxbodya
zxbodya / source-map-unpacker.js
Created June 8, 2015 23:28
script to extract sources, from sourcesContent field in sourcemap
'use strict';
var fs = require('fs');
var maps = [
fs.readFileSync('./main.xxxx.js.map'),
fs.readFileSync('./1.chunk.xxxx.js.map'),
fs.readFileSync('./2.chunk.xxxx.js.map'),
fs.readFileSync('./3.chunk.xxxx.js.map')
];