Skip to content

Instantly share code, notes, and snippets.

@aularon
aularon / m4b_split.sh
Last active September 21, 2023 13:34
Split an m4b into its chapters. No recoding is done, just splitting
#!/bin/bash
# Description: Split an m4b into its chapters. No recoding is done, just splitting
# Usage: m4b_split.sh $input_file $output_dir/
# Requires: ffmpeg, jq
# Author: Hasan Arous
# License: MIT
in="$1"
out="$2"
splits=""
@learnwell
learnwell / sample1.tex
Last active January 24, 2022 21:58
latex cheat sheet index card
%% Setup to use an index card
\documentclass[10pt]{book}
\usepackage[vcentering,dvips]{geometry}
\geometry{papersize={3in,5in},total={2.9in,4.9in}}
%% render a frame marking the margins of a document
% \usepackage{showframe}
%% show landscape view
\usepackage{pdflscape}