Skip to content

Instantly share code, notes, and snippets.

View aquarius's full-sized avatar

Markus Müller-Simhofer aquarius

View GitHub Profile
@aquarius
aquarius / gist:b45bbd8c14d4fedbe55681836f842d59
Last active January 31, 2017 09:45
Always Show Open Panel on App Launch when iCloud Drive is disabled
defaults write com.ideasoncanvas.MindNodeMac NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool true
@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
@aquarius
aquarius / gist:5d58f8d0f91865cf8d41
Created January 26, 2016 20:09
Show Open Panel instead of creating a new file on launch
defaults write com.ideasoncanvas.MindNodeMac NSShowAppCentricOpenPanelInsteadOfUntitledFile -bool yes
@aquarius
aquarius / OPML2PDF.scpt
Last active February 5, 2023 19:07
Export OPML as PDF in MindNode
set folderPath to choose folder
set fileExtension to "opml"
tell application "Finder"
try
set the fileList to files of folderPath whose name extension is fileExtension
end try
end tell
tell application "/Applications/MindNode.app"
repeat with mindNodeFile in fileList
open (mindNodeFile as alias)
@aquarius
aquarius / gist:7638525e740346f6e179
Created June 22, 2015 18:39
Change Smart Layout Offsets
defaults write com.ideasoncanvas.MindNodeMac MNTDefaultsDefaultStyleNodeHeightOffset 10.0f
defaults write com.ideasoncanvas.MindNodeMac MNTDefaultsDefaultStyleNodeWidthOffset 60.0f
@aquarius
aquarius / gist:5c33a3cfad6fb07dc40f
Created June 3, 2015 14:39
MindNode Add-On Pack
The MindNode for Mac Add-On Pack can be enabled by all MindNode Pro customers. Normaly a new menu item called "Activate Additional Content" should appear under the MindNode Pro main menu item. This menu item is enabled after MindNode Pro checks our server to see if it's allowed to show this menu item (this allowed us to better time our MindNode for Mac release) or if MindNode Pro is unable to establish a conneciton it will always show the menu item after June 7th.
Some steps that might help debug an issue related to the menu item not appearing:
1. Ensure you are using MindNode Pro 1.11.2 or later.
2. Ensure "Check for important announcements" is enabled in the MindNode Pro settings.
3. Launch MindNode Pro, wait a minute, launch again.
4. Check if you have an app like little Snitch installed that prevents network connections.
5. Try to manually set the system clock to June 8th, launch MindNode Pro and set back the clock.
If this doesn't help, please send use a support email: https://mindnode.com/support
@aquarius
aquarius / gist:ff2328a0dad34cbcfc6a
Created April 17, 2015 10:15
Workaround to fix a iCloud bug related to adding .folder extension to packages
1. In Finder access the Preferences.
2. On the "Advanced" tab enabled "Show all filename extensions"
3. Go back to the iCloud Drive folder. You will notice that all documents have a .mindnode.folder extension.
4. Remove the .folder extension to fix the document.
@aquarius
aquarius / gist:e96cc37e9cdae9ca5f1e
Created December 12, 2014 16:21
Markdown Export
# First Main Node
## Subnode Level 1
# Second Main Node
## Subnode Level 1
## Subnode Level 1
@interface NSScrollView (Yosemite)
@property () NSEdgeInsets contentInsets;
@property () BOOL automaticallyAdjustsContentInsets;
@end
@aquarius
aquarius / gist:9132550
Created February 21, 2014 11:09
Clear Preferences plist on Mavericks
defaults delete com.mindnode.MindNodePro