Earlier quoted context omitted.
What do you mean by base32 hostnames? ips? If you mean ips, then, especially on a phone, wont the ip change often. If you mean some actual hostname (presumably not the reverse lookup) then who translates that hostname? If it is provided by nightlyweb servers, then if that server gets taken down, you have no more network, right?
I mean the hostnames used by I2P itself. They behave like normal hostnames, but they don't require any DNS-style resolution because they contain your public keys inside the hostname itself. They are equivalent to .onion addresses in Tor, except a lot longer.
Show HN: An anonymous P2P social network for Android, written in Clojure
101–110 of 141 posts
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#102Earlier quoted context omitted.
I mean the hostnames used by I2P itself. They behave like normal hostnames, but they don't require any DNS-style resolution because they contain your public keys inside the hostname itself. They are equivalent to .onion addresses in Tor, except a lot longer.
I understand that, you are saying that you have an id of who you want to talk to. The problem is, where do you start looking? Even with .onion you need an entry point to the tor network. It can be a DNS server, a web server, or whatever; but it must be hard coded (unless you start broadcasting on the local network looking for an entry, which I havent seen an example of). That is the problem. The first entry point can…
There are a few possible solutions to this. First, allow users to add new bootstrap nodes to the app. Second, provide "meshnet" functionality to the app. I am considering both. The latter is much more complex to implement, but Android provides an API called Wi-Fi Direct which I could conceivably use to connect Nightweb nodes together if they are in close proximity. I'm open to other ideas.
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#103Earlier quoted context omitted.
Exactly, I've been both wanting to learn Clojure and develop for Android (but no Java thanks) for a while. So here's mine http://nightweb.net/#type=user&userhash=dtvjjjuk7eai42xx...
Here's mine, for science: http://nightweb.net/#type=user&userhash=tnaohxmxj2eg3fsf...
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#104>How does it avoid spam? For me a good solution would be to use machine learning, the same way spam filtering works for email. A decentralized version of Reddit could actually be pretty simple, with a flooding P2P network coupled to some machine learning on each of the nodes. The beauty is that anyone would be free to implement the content filtering measures the way they like it.
How would you discern what is popular and what is not(that is, the "upvotes" of reddit/HN)? Or did you mean only machine learning?
That would actually be a lot richer than the current "one vote is one vote" systems, since you could learn which people you tend to agree with.
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#105Earlier quoted context omitted.
Exactly, I've been both wanting to learn Clojure and develop for Android (but no Java thanks) for a while. So here's mine http://nightweb.net/#type=user&userhash=dtvjjjuk7eai42xx...
Here's mine, for science: http://nightweb.net/#type=user&userhash=tnaohxmxj2eg3fsf...
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#106Earlier quoted context omitted.
Exactly, I've been both wanting to learn Clojure and develop for Android (but no Java thanks) for a while. So here's mine http://nightweb.net/#type=user&userhash=dtvjjjuk7eai42xx...
Here's mine, for science: http://nightweb.net/#type=user&userhash=tnaohxmxj2eg3fsf...
Although tying these identities to our hacker news IDs basically means throwing anonymity out the window.
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#107Does this have a particularly adverse effect on phone battery life, when compared to a well-written app for a centralized social network (aka, not the Facebook Android app; perhaps the G+ app)? I can imagine that a lot of uploading of social network content to your peers would take place. Also, what is the bandwidth utilization like compared to an app for a centralized network? With a lot of us on tiered data plans n…
I ran the app for most of this morning on my Nexus 4, after adding most of the links in this HN post as favorites. Between 9 and 11 my battery lost 40% of its charge. Ordinary usage tends to yield 14 to 17 hours of battery life from a charge. This kind of impact on battery life will be a deal breaker for most people until resolved.
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#108Does this have a particularly adverse effect on phone battery life, when compared to a well-written app for a centralized social network (aka, not the Facebook Android app; perhaps the G+ app)? I can imagine that a lot of uploading of social network content to your peers would take place. Also, what is the bandwidth utilization like compared to an app for a centralized network? With a lot of us on tiered data plans n…
I ran the app for most of this morning on my Nexus 4, after adding most of the links in this HN post as favorites. Between 9 and 11 my battery lost 40% of its charge. Ordinary usage tends to yield 14 to 17 hours of battery life from a charge. This kind of impact on battery life will be a deal breaker for most people until resolved.
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#109This is so cool. It makes me want to switch to Android just to use it. Any thoughts on a desktop client?
Re: Show HN: An anonymous P2P social network for Android, written in Clojure
#110Earlier quoted context omitted.
But it would undermine the "distributedness". Maybe Nightweb could serve a website on the device itself and one could use pagekite or a dynamic dns to serve it.
There's no reason a third party couldn't host a read-only view into Nightweb, performing something similar to tor2web.org. The third party would be running their own Nightweb client, then visitors to the website would trigger content downloads on the client, rendered out as a webpage. This would provide the "public view" without sacrificing the decentralized nature.
In fact, this type of functionality is hopefuly becoming an Internet Standard: http://www.internetsociety.org/articles/moving-toward-censor...
However, Bittorrent is not up to the task, due to NAT issues. UDP NAT puncturing is not present in this stack, right? Thus how is it going through carrier-grade NATs which block all these smartphones?
Disclaimer: working on a similar thing for years Tribler Mobile.