Skip to content

Instantly share code, notes, and snippets.

View seandenigris's full-sized avatar

Sean DeNigris seandenigris

View GitHub Profile
@markushuber
markushuber / eml2mbox.py
Created January 24, 2024 10:06
Simple Python 3 script to convert eml Email files to mbox files.
"""
Simple Python 3 script to convert eml Email files to mbox files.
Convert script requires only The Python Standard Libraries.
This script is useful to convert eml files exported from
E-Mail Accounts to mbox files. Mbox files can be imported
in common email clients such as Outlook, Thunderbird, or
Gnome Evolution.
Placing eml files to be converted to mbox files:
@mistic100
mistic100 / vimeo-downloader.js
Created September 15, 2018 09:01
Download video from Vimeo (chopped m4s files)
// 1. Open the browser developper console on the network tab
// 2. Start the video
// 3. In the dev tab, locate the load of the "master.json" file, copy its full URL
// 4. Run: node vimeo-downloader.js "<URL>"
// 5. Combine the m4v and m4a files with mkvmerge
const fs = require('fs');
const url = require('url');
const https = require('https');