iCloud Terminal Notepad
slashie.org
iCloud Terminal Notepad
1–10 of 20 posts
Re: iCloud Terminal Notepad
#2Your link to Ajour at the end of the article is broken. Link should be to: https://github.com/gopatrik/ajour as your link to to your main github page and is missing the "http://" and so it's getting appended on the end of your post URL.
Re: iCloud Terminal Notepad
#3Is this also possible for the regular notes app on iOS/OS X? It does sync with iCloud but I am not able to check if it's available in iCloud Drive.
Re: iCloud Terminal Notepad
#4This is a pretty neat hack! Unfortunately it won't work with my setup of NVAlt [0] (OS X) and Simplenote [1] (iOS). I've got NVAlt hotkey'd so I can bring it up anywhere and use it as a scratch pad all the time that I know will be synced to my phone immediately, the problem being it doesn't use iCloud but rather simplenote's syncing solution, I'd wager to bet that I could do something similar that edits NVAlt's local storage and see if it's auto-synced as well (I bet it is).
Re: iCloud Terminal Notepad
#5Your link to Ajour at the end of the article is broken. Link should be to: https://github.com/gopatrik/ajour as your link to to your main github page and is missing the " http://" and so it's getting appended on the end of your post URL.
Ah, thank you for that! Should be fixed now!
Re: iCloud Terminal Notepad
#6Is this also possible for the regular notes app on iOS/OS X? It does sync with iCloud but I am not able to check if it's available in iCloud Drive.
It could be, there is a directory called com\~apple\~Notes in the Mobile Documents folder that looks promising!
Re: iCloud Terminal Notepad
#7This is lame. The title should also mention that you need to buy the app.
Re: iCloud Terminal Notepad
#8I use todo.txt for this. Works well across my devices. Besides, it's done by Gina Trappani (of ex-lifehacker) so supporting her is good too.
Re: iCloud Terminal Notepad
#9Is this also possible for the regular notes app on iOS/OS X? It does sync with iCloud but I am not able to check if it's available in iCloud Drive.
This works :
#!/usr/bin/env osascript -l JavaScript
function run(argv) { var note = Application('Notes').notes['Terminal Note']; note.body = note.body() + new Date() + ' :
'+argv.join(' ')+'';
}Re: iCloud Terminal Notepad
#10Can someone make a Vim plugin command for this?