Skip to content

Instantly share code, notes, and snippets.

View thebugcatcher's full-sized avatar
Turbo mode!

Adi Iyengar thebugcatcher

Turbo mode!
View GitHub Profile
@oneamtu
oneamtu / mysql_docker.sh
Last active September 18, 2020 16:43
set up docker persistent database instance for development
# Install docker
# This sets a percona-5.6 container to run continuously
# set ROOT_MYSQL_PASSWORD
export ROOT_MYSQL_PASSWORD="blah" #CHANGEME
sudo docker pull percona:5.6
# This folder houses the server data
sudo mkdir /data/
@justincbagley
justincbagley / How_to_Convert_Markdown_to_PDF.md
Last active June 14, 2024 22:42
How To Convert Markdown to PDF

How to convert markdown to PDF:

This post reviews several methods for converting a Markdown (.md) formatted file to PDF, from UNIX or Linux machines.

Using Pandoc:

$ pandoc How_I_got_svg-resizer_working_on_Mac_OSX.md -s -o test1.pdf