←back to thread

1901 points l2silver | 2 comments | | HN request time: 0.455s | source

Maybe you've created your own AR program for wearables that shows the definition of a word when you highlight it IRL, or you've built a personal calendar app for your family to display on a monitor in the kitchen. Whatever it is, I'd love to hear it.
Show context
almog ◴[] No.35746137[source]
I'm currently working on a service that would allow me to place orders using a satellite messenger.

Some background: When I hiked the Pacific Crest Trail few years ago, I used to order items that needed to be replaced or that I lost to the next or town stop using my phone (most towns have a general store or a supermarket, often not an outfitter).

However, it's not uncommon for sections of the trail to be outside cell service for days between town to the next one.

Anyhow, since the next trail that I plan to hike, the Continental Divide Trail, is even more remote than the PCT, I started to play with a prototype of a satellite messenger backed service to let me order items from a predefined list (each can match multiple items of a different priority) and be shipped to a predefined shipping address (post offices of trail towns along the trail).

So, for example, assuming that one of my contacts is a phone number that my service is monitoring, I can text a message like that:

  items: shoes, tape, filter, usb cable, ice axe;
  to: Chama;
  eta: 2023-07-01;
And it should place an order of a predefined pair of shoes, water filter, Leukotape and USB cable and ice axe to Chama, NM. Messages are limited to 160 characters before they get split, and so to keep it simple, I might use shorter abbreviations for some items.

If any item on the list can't be delivered until 2023-07-01 using prime shipping (unfortunately it's the easiest option), it should be dropped from the order. Alternatively, if the guaranteed delivery date is off by 1 day, I might just place it on a separate order, hope for the best and if it doesn't show up on time, it'll get returned individually after not being claimed.

replies(1): >>35746377 #
1. l2silver ◴[] No.35746377[source]
Would this be like an app on your phone, or something else?
replies(1): >>35747137 #
2. almog ◴[] No.35747137[source]
While an app that can sync the predefined items and their code, as well as format the text properly would be ideal, my time constraints might not allow me to build that, and since it's for personal use only, and under the assumption that I'll only have to use it a few times over few months, I think that hand crafted text messages, sent using the Garmin app should be good enough for me.