To implement this:
- add get_name.scp to the Get Name script in HookMark > Settings > Scripts > FreePlane > Get Name
- update get_address.scp for the Get Address script
- Save
Should work.
Nice to have: FreePlane has a Copy > Copy URI which copies a URI to the current node. It might be nice to copy this which would let you link directly to a particular node (as opposed to just the map).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test "something" do | |
notified = false | |
Honeybadger.stub :notify, Proc.new { |s| notified = true } do | |
something_that_causes_honeybadger_notify_to_be_used | |
end | |
assert notified, "Honeybadger was not notified" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- key change = line 57 instead of $encoded_title just use $title | |
use framework "Foundation" | |
use scripting additions | |
property NSString : a reference to current application's NSString | |
property NSMutableCharacterSet : a reference to current application's NSMutableCharacterSet | |
set sysinfo to system info | |
set osver to system version of sysinfo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "google/apis/calendar_v3" | |
# To add the Google Calendar API to your project, you need to add the following line to your Gemfile: | |
# bundle add google-apis-calendar_v3 | |
# | |
# Google Cloud Console Credential Settings: | |
# Authorized JavaScript origins: http://localhost:3000 | |
# Authorized redirect URIs: http://localhost:3000/users/auth/google_oauth2/callback | |
# Update the above with your staging and production URLs | |
# |
OlderNewer