Sync your Palm devices with your Mac apps.
WARNING: DON'T USE YET! IT'S NOT DOING ANYTHING MEANINGFUL YET!
brew install libusb
mix local.hex
(if you don't have hex installed)mix deps.get
mix deps.compile
mix ash_sqlite.create
mix ash_sqlite.migrate
mix compile
pushd ports && swift build -c release ; popd
iex -S mix
Sometimes this might be needed to get new dependencies right:
- mix deps.clean --install
- mix deps.get
- mix deps.compile
{:ok, data} = PalmSync4Mac.EventKit.CalendarHandler.get_events(0, "Calendar")
Enum.each(data["events"], fn cal_date -> PalmSync4Mac.Entity.CalendarEvent |> Ash.Changeset.for_create(:create_or_update, cal_date) |> Ash.create! end)