Live data from Hacker News

Show HN: Camp Fire – chat with people within a radius

campfire.rest

61–70 of 81 posts

Re: Show HN: Camp Fire – chat with people within a radius

#61

I also got a geolocation error even though I allowed location access. Could benefit from allowing the user to set a location as a fallback (or override). FF 72 (Ubuntu)

> Could benefit from allowing the user to set a location

VPN users need this.

Re: Show HN: Camp Fire – chat with people within a radius

#62
post #2

Just thought I'd share something I've been working on. Basically it's a message relay that sends messages to others around you (given GPS coordinates from browser). Can choose range from "Range" pull down near top left (hover over options for approximate distances). Back end is written in Rust.

Cool! It seems to work well, and respects with no hassle my IP-based location.

Re: Show HN: Camp Fire – chat with people within a radius

#63
This reminds me of the Twinkle iOS app by Tapulous. It worked a lot like Twitter, except you only saw posts from within a certain radius. There's now an unrelated dating app of the same name; I can only find this about the original https://www.youtube.com/watch?v=Dd4u-E5qmxE

Re: Show HN: Camp Fire – chat with people within a radius

#65
It's very easy to impersonate another user right now by just using the same name. It would be great if the first 5 chars of a hashed IP fingerprint (or something similar) could be shown next to the name as a kind of ID to prevent that kinda thing from happening.

Re: Show HN: Camp Fire – chat with people within a radius

#68

It's very easy to impersonate another user right now by just using the same name. It would be great if the first 5 chars of a hashed IP fingerprint (or something similar) could be shown next to the name as a kind of ID to prevent that kinda thing from happening.

Yeah I'll probably add something like a unique number at the end of username.

Re: Show HN: Camp Fire – chat with people within a radius

#70

This is cool! I had been thinking about creating something similar but I couldn't solve this problem: Given a radius of 5 miles and three users in a geographic straight line, each 4 miles from each other. User 1 and user 2 are in the same radius, user 2 and three are in the same radius but user 1 and 3 are not in the same radius. Therefor user 1 and 3 will only see "half" the conversation (which would obviously be co…

You could divide the country into segments, and a person gets to talk to everyone in their segment.

Obviously, you'd want smaller segments in areas with a high user density, and larger segments in areas with low user density.

You could generate segments with something like EM clustering. You probably wouldn't want continuous segment recalculation, or two people could be split mid-conversation when neither of them had moved.

Post reply on HN