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 / 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: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 / Readme.md
Last active October 2, 2020 10:16
Default Layout Offsets in MindNode

Change the spacing of the Layout Engine

Using the commands below you can optimized the spacings in our layout engine. For example in left/right layout you can get a narrower horizontal spacing by changing the MNDefaultsDefaultStyleNodeWidthOffset key. To do this:

  1. Close MindNode
  2. Open Terminal and paste in the commend. e.g. defaults write com.ideasoncanvas.mindnode.macos MNDefaultsDefaultStyleNodeWidthOffset 30
  3. Launch Mindnode again
@aquarius
aquarius / gist:5823110
Last active April 5, 2019 13:10
MindNode URL Schemes

#MindNode URL Schemes

Basic

###Launch MindNode mindnode://

####Examples mindnode://

###Open Document

//
// MNDocumentConflictResolutionViewController.h
// MindNodeTouch
//
// Created by Markus Müller on 15.12.11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
@class MNDocumentReference;
@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
//
// XCTestCase+MNAsynchronousTestCase.h
// MindNodeTouch
//
// Created by Markus Müller-Simhofer on 28.07.13.
// Copyright (c) 2013 IdeasOnCanvas GmbH. All rights reserved.
//
#import <XCTest/XCTest.h>
@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: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: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