Live data from Hacker News

Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

github.com

61–70 of 76 posts

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#61

What about something more general and even more text-based, like "Execute Console/Commandline Programs over SMS". Edit: What I mean is sending text commands to a restricted shell, i.e., program launcher, over SMS. Then returning the console text output from the server over SMS to the Android user.

"What about something more general and even more text-based, like "Execute Console/Commandline Programs over SMS"."

I built this a couple months ago. It's fairly straightforward.

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#62

Quick somebody PoC this with SMSGTE over APRS! (So you can browse the web over ham radio. Ridiculously impractical but delicious!) https://smsgte.org/

TCP/IP over HF is already a thing! (And also ridiculously impractical :) ) https://www.isode.com/whitepapers/stanag-5066.html

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#63
On boats (once land is out of sight) the only connection option is satellite data, which is slow and very expensive. Its been a while, but I remember companies existed offering similar 'compression services' (using a data connection, not sms). TxtNet Browser could be an interesting alternative.

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#65

I used to run a small relatively unknown service back in the day when internet on mobile was still unaffordable in India. People could sms to a number that I had procured with any keyword. The service send the user a list of 5 top results' domain names from Google results for that keyword. User would respond with a number (1-5). The service would send the 20 characters of the first h1 tag on the page, and first 140 c…

that reminds me of how my first blackberry used to function. it was mindblowing at the time.

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#66
post #58

This is pretty cool, but I wonder if you came across SMS Without Borders[1] and, if so, how your solution is different/better? On this note, just as an FYI, I'm leading the Awala project[2], which is a new computer network where compatible apps use the Internet when it's available, but can also switch to a fallback medium when it's unavailable. The only fallback medium we have today is a sneakernet, and SMS support[3…

Thanks for your comment. In all my research, somehow I never came across either of those two projects! SMS without borders looks the most similar to what I'm trying to accomplish but their goal is much more focused. I would say the biggest difference is the fact that they are focused on supporting personal 2-way chat services like email and telegram, and because you have to have Internet access when you sign up with their service, they are able to generate encryption keys to obfuscate the communication through relays. Whereas with my project you are never assumed to have Internet access, even if I did implement encryption it would only be transport level, so the gateway could still read all your data. But the concept of being only able to access globally available websites makes it so that unless a government starts decoding messages in transit, you're not going to have any major upsides to encryption if you trust the server host. Another major difference is the fact that setting up your own SMSWB instance requires a lot of technical skill and infrastructure, which isn't the case with TxtNet. Both TxtNet and SMSWB are different enough that I would say they actually complement each other really well. Honestly I'm pretty impressed!

The Awala network is similar to what I was imagining in place of IP over SMS. I think the main problem with that approach is that for the average user, adapting most programs directly to the protocol would be confusing to use. The ping example provided in your demo video is of course only a PoC, but translating that to, say, a web browser could be confusing to users who don't understand why when they request the website, they have to keep the tab open and then come back to it once they've connected a hotspot who happened to request the right websites (possibly much) earlier. But still, I think it's totally possible to adapt programs to make them fit this paradigm better and I'm excited to see what comes next out of the project! It seems like a very promising solution more resilient to intermittent connection failure and just from the looks of it, you've got really brilliant minds working on the project (I'm not an expert, but I did find that some of the encryption concepts mentioned in the SMS spec discussion went over my head!) You've also managed to secure funding from higher profile names, which is awesome.

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#69
post #68

Very cool! Found this from 9 years ago, deprecated now however. https://news.ycombinator.com/item?id=8304409

Thanks for the link. I actually spoke with the lead developer of Cosmos browser earlier and he seemed enthusiastic about my idea of continuing their work in a way. In fact, before I rebased my app the original PoC was a fork of that app with a bunch of patches to work on newer versions of Android!

Re: Show HN: TxtNet Browser – Browse the Web over SMS, No Wi-Fi/Mobile Data Needed

#70

Are you considering any compression algorithm?

If you mean any kind of custom tailored algorithm, not really. Given I'm only dealing with HTML right now, Brotli has been a good solution. If I end up transmitting other binary data like images, I think well established algorithms like gzip should be okay.
Post reply on HN