Skip to content

Instantly share code, notes, and snippets.

@tkuriyama
tkuriyama / Emacspeak_OSX_installation_instructions.sh
Created May 30, 2022 18:41 — forked from AmandaKLacy/Emacspeak_OSX_installation_instructions.sh
Instructions for setting up Emacspeak on the Mac.
### Step-by-step terminal instructions to install emacspeak on OS X.
### Note by Amanda Lacy
### This file is based on the set of instructions at this link:
### https://gist.github.com/izahn/cd784303663083ee2c95
### Also, thanks to Haden Pike, Tyler Littlefield, David Tseng and others on the Program-L list for their extra tips on Emacspeak settup.
### Those extra steps are at the botom of this file.
### End note
### If you are feeling lucky you can copy and paste this whole file into
@tkuriyama
tkuriyama / midi2mp3
Last active August 15, 2020 14:49 — forked from kroger/midi2mp3
Convert MIDI files to MP3 using fluidsynth. See
#!/usr/bin/env bash
SOUNDFONT=/Library/Audio/Sounds/Banks/FluidR3_GM.sf2
TMPDIR=.
if [[ ! -f $SOUNDFONT ]]
then
echo "Couldn't find the soundfont: $SOUNDFONT"
exit 1
@tkuriyama
tkuriyama / Emacspeak_OSX_installation_instructions.sh
Created August 12, 2020 13:29 — forked from izahn/Emacspeak_OSX_installation_instructions.sh
Emacspeak Mac OS X installation instructions
### Step-by-step terminal instructions to install emacspeak on OS X.
### Copy-paste each step (one step at a time!) into the terminal.
### Much of the information presented here was copied from
### http://e-mac-speak.googlecode.com/svn/trunk/e-mac-speak-howto.org
### More useful settings may be found at https://github.com/ragb/emacs-ragb/blob/master/init.el
## WARNING: These steps worked for me, but they may not work for you. In fact they may break things, turn your computer into
## a paperweight, and/or eat your kittens. These instructions are provided in the hope that they may be useful,
## but you are responsible for running them and for any damange doing so may cause.
@tkuriyama
tkuriyama / useful_pandas_snippets.md
Created January 30, 2019 12:18 — forked from bsweger/useful_pandas_snippets.md
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)