Skip to content

Instantly share code, notes, and snippets.

@aquarius
aquarius / gist:b9921dccb15ae7f554ba766f2688f85b
Created April 19, 2016 15:49
User 3 ATX Header Levels during Markdown export
defaults write com.ideasoncanvas.MindNodeMac MNCDefaultsMarkdownExportHeaderLevels 2
@dixson3
dixson3 / workspace.sh
Created January 10, 2014 19:11
Create and manage a case-sensitive disk-image on OSX. This is great when you have a need to work with case-sensitive repos on a mac.
#!/bin/bash
# where to store the sparse-image
WORKSPACE=~/Documents/workspace.dmg.sparseimage
create() {
hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 60g -volname workspace ${WORKSPACE}
}
detach() {