Skip to content

Instantly share code, notes, and snippets.

@retrography
Created May 31, 2016 04:49
Show Gist options
  • Save retrography/6d727c1e018ce7b38d546bed9ff129ba to your computer and use it in GitHub Desktop.
Save retrography/6d727c1e018ce7b38d546bed9ff129ba to your computer and use it in GitHub Desktop.
Exports notes from LetterSpace and imports them into SimpleNote using SimpleNote CLI (sncli)
#!/usr/bin/env ruby
require 'json'
Dir.glob(ARGV).each do |fname|
note = {}
note['createdate']=File.ctime(fname).to_f
note['modifydate']=File.mtime(fname).to_f
f=File.read(fname)
note['content']=f.gsub(/(#|@)([0-9a-zA-Z_\-]+)/,'\2')
note['tags']=f.scan(/(#|@)([0-9a-zA-Z_\-]+)/).map{|t| t.last.downcase}
note['systemtags']=['markdown']
title=fname.gsub(/\.[^.]+$/,'')
File.write(title+".json", note.to_json)
puts title
%x( cat "#{title+".json"}" | sncli import - )
sleep 15
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment