I hear you, but you should add the implications from...
SN = controlled by humans
...then reflect.
Users should always come first, before anything else.
I guess we'll have to disagree here. I think customers should come first. Lots of other places online pander to users, but really serve the customers - eg. advertisers.
In my mind...
  • SN == Shopify
  • Territory Owner == E-commerce store owner
Make a platform for other people to make money, and SN will do just fine.
Edit: To be clear; I'm not saying don't care about users, I'm saying take care of the territory owners, and the territory owners will take care of the users. There is a tiny asterisk, that SN needs to empower the territory owners to do a good job.
Stacker.news is a centralized platform controlled by two guys (i think?) - @k00b and @ekzyis.
While the people in charge are trustworthy, there's always a risk. Your content is stored on their servers, you can't self-host the frontend, they have access to the logs and all your wallet activity behind the scenes, including DMs. So you have to trust them completely.
On top of that, this whole thing could shut down or face censorship in the future if it gets too big. It already blocks IPs from certain countrys. This is not the Bitcoiner way of doing things.
The future lies in Nostr, hopefuly the team understands that. Right now, SN seems to be trying to compete with both Reddit and Nostr, at the same time. It's unclear to me why this whole thing can't just be a Nostr client instead.
reply
369 sats \ 14 replies \ @ek 4 Feb
It's unclear to me why this whole thing can't just be a Nostr client instead.
SN contains a ranking algorithm which is based on a web of trust model. To make this work efficiently, all items would need to be stored in the same database. Sorting and ranking content in a decentralized manner is not trivial. To sort something efficiently, you need access to all the content in one place. So just to have personalized/algorithmic feeds, we would need to build a "mega-relay". Additionally, relays on nostr don't federate anyway. So in the end, it doesn't make sense to build on top of nostr if you end up as a centralized database anyway.
Yes, there is "trending" on nostr, but that's something different. Afaik, that isn't personalized. This is just fetching event metrics. To have personalized feeds on nostr, you need to follow people. That's not the case on SN. We use your zaps to rank the content that other people zapped before you higher (the aforementioned web of trust model).
Other reasons:
  • nostr has edits only for NIP-23 which doesn't seem to show on clients like Primal and Snort
  • nostr has no reliable deletes so events must be kept in the "SN relay" to make deletes reliable -> centralized database required
  • SN has a custodial wallet to make onboarding very easy -> centralized database required to store user balances.
  • daily rewards go to top SN users -> centralized database required to keep track of users
  • daily rewards include post and zap fees -> centralized database required to keep track of fees
  • we don't have time to discuss our ideas for SN in NIPs like here so we wouldn't be spec compliant anyway
Also, as mentioned by @supertestnet here: What even is the definition of a "nostr client"?
We can read and write notes. So maybe SN already counts as a nostr client?
reply
I think I can summarize the issues in the way of SN becoming a "full" nostr client:
  1. web of trust
  2. edits
  3. deletes
  4. wallets
  5. rewards
  6. fees
  7. specs
#1 seems like something that can be done client side. You say you need a big database of all content in order to sort it properly, but I don't think it's true. Each user's web of trust can be based on their own follow lists and the people their follows follow. They don't have to all be identical. You don't need a "mega relay" for this -- just follow lists, which are already very popular on nostr.
#2 and #3 have nostr specs and your client could implement them. Other people might view deleted notes and "pre-edit" notes in a separate app but I don't think you're saying "that's" a problem. (Are you?) Because they can do that on stacker news already and there's not really anything you can do to stop it. I hope you guys aren't operating under the assumption that anything you delete from your site is gone forever.
#4 seems like you have a roadmap for this. If SN is serious about moving toward full self custody then this won't be an issue once you do. Any wallet that can be connected to or built into stacker news can be connected to or built into a full nostr client too.
#5 seems combined with #6. If you had a way to collect fees, do you think it would be easy or hard to distribute rewards to the most engaging nostr users via zaps? It sounds easy but maybe I'm missing something.
#6 is something I've talked with Keyan about. I think he he knows how to collect fees on lightning using "wrapped invoices" in a similar manner to how Geyser does it. It does require users to "opt in" to sending some money toward the reward distributor, but people "opt in" to using Stacker News too so it sounds doable.
#7 is a strange objection to me, part of the point of nostr is that all specs other than #1 are optional. If you want to do something that isn't in the specs, or violates a nip (other than #1), just do it, and maybe it will become a spec if other people want to do it too and ask you how you did it. (That's how zaps started btw. I implemented tipping in anigma before there was a spec for it, and then Will wanted to do the same thing so he just copied what I did, and then he added receipts and renamed tips as zaps.)
In summary, I think all of the issues you identify as standing in the way of SN becoming a full fledged nostr client are solvable. I hope it continues to progress in the direction of full nostr integration.
reply
0 sats \ 3 replies \ @ek 4 Feb
#1 seems like something that can be done client side. You say you need a big database of all content in order to sort it properly, but I don't think it's true. Each user's web of trust can be based on their own follow lists and the people their follows follow. They don't have to all be identical. You don't need a "mega relay" for this -- just follow lists, which are already very popular on nostr.
We don't want follow lists for this to work though. We use zaps and trust to rank content. The ranking we use is something that is created while you use the product by the product and not something you maintain yourself. So this zap data must be stored somewhere, no?
Algorithmic feeds in general seem to require a lot of content and a dedicated source of truth to work properly at some point. For example, @k00b mentioned "oldest events first" or "search" in the ticket:
I agree with the fat client ideal. However, one of the most naive algorithms I listed is technically infeasible to perform on a client as is, e.g. oldest events first. A case can be made for not needing many of those algorithms and that perhaps many of the algorithms people actually want can, in fact, be conveniently provided by clients.
But, to steelman myself, some algorithms people want do require a relay-sized (or even network-sized) amount of data, e.g. search. Assuming clients don't want to download a relay's worth of data, what should we do instead?
I thought running search on relays using a standardized search algo which clients "combine" or "reduce" was the next best decentralizing thing. If I haven't misunderstood this thread, the more experienced nostratis disagree:
  1. standardization on relays (more than that which already exists) is centralizing
  2. "mega-relays," relays that attempt to store and index all of the network's data, will fail or otherwise be neutral in their centralizing effect
  3. relay diversity on things like search once it emerges (or gains more adoption if it has already emerged) will be maximally decentralizing

#2 and #3 have nostr specs and your client could implement them. Other people might view deleted notes and "pre-edit" notes in a separate app but I don't think you're saying "that's" a problem. (Are you?) Because they can do that on stacker news already and there's not really anything you can do to stop it. I hope you guys aren't operating under the assumption that anything you delete from your site is gone forever.
It's not a problem that we can solve 100% ("the internet never forgets") but it's a different mode of operation.1
Imo, it's a difference if you have to delete something in one place to make sure that it's deleted in "most cases" or if distribution of content is built into the protocol that is used to create content. We can argue about web crawlers indexing content, malicious actors saving all content for their own purposes and if that happens in most cases or not but maybe it boils down to this:
If I post something on nostr, some clients don't even allow me to attempt to delete the note.2 It's not very transparent how it works. On SN, it's transparent: You click "delete", we delete it in our centralized database. Everything else is subject to how the internet works. On nostr, there are more layers to this problem. More layers, less control.
However, "no reliable deletes on nostr" is definitely not a good argument to not be a nostr client, I agree.3 But imo, it's still an argument one could make together with other arguments.

#4 seems like you have a roadmap for this. If SN is serious about moving toward full self custody then this won't be an issue once you do. Any wallet that can be connected to or built into stacker news can be connected to or built into a full nostr client too.
#5 seems combined with #6. If you had a way to collect fees, do you think it would be easy or hard to distribute rewards to the most engaging nostr users via zaps? It sounds easy but maybe I'm missing something.
#6 is something I've talked with Keyan about. I think he he knows how to collect fees on lightning using "wrapped invoices" in a similar manner to how Geyser does it. It does require users to "opt in" to sending some money toward the reward distributor, but people "opt in" to using Stacker News too so it sounds doable.
You're right, #4, #5 and #6 are most likely solvable and we're actively working on solving them in a way that is more compatible with something like nostr. They fall into the category of me not explaining myself well in my initial reply. It's mostly about it being a lot easier at our stage to do it the centralized way first (like we did and are doing) than building SN on nostr (like we tried) while we're still figuring things out as we go.

#7 is a strange objection to me, part of the point of nostr is that all specs other than #1 are optional. If you want to do something that isn't in the specs, or violates a nip (other than #1), just do it, and maybe it will become a spec if other people want to do it too and ask you how you did it. (That's how zaps started btw. I implemented tipping in anigma before there was a spec for it, and then Will wanted to do the same thing so he just copied what I did, and then he added receipts and renamed tips as zaps.)
With #7, I wanted to say that we would probably not focus on spec compliance so if someone expects that we make sure that we don't build something that will never be a NIP when they talk about "SN as a nostr client", they would be disappointed.
So maybe it comes down to the question of what is meant exactly with "nostr client" or "full fledged nostr client"?
If SN being a "nostr client" means that it's actually a fat client built on top of a fat relay that people can't just spin up themselves, is it still what people mean with "SN as a nostr client"? I don't think so. There would still be a centralized database due to SN prioritizing UX over "being a nostr client".4
In summary, I think all of the issues you identify as standing in the way of SN becoming a full fledged nostr client are solvable.
I hope it continues to progress in the direction of full nostr integration.
I could ask again what "full nostr integration" is but I will leave it there :)
We will continue to integrate nostr where it makes sense. And I think there is much to gain from the nostr ecosystem since I am a big fan of open protocols.
However, it's probably more important to know exactly what users want. Maybe we won't need nostr for that, maybe we will.

Footnotes
  1. There is discussion regarding this topic all over SN. Here is one example: #361063
  2. Maybe I am just ignorant and dumb and it's only supposed to work for some event kinds (if so, why?).
  3. For example, I just quoted your content to format my reply and now it's already out of your control. Or on nostr, you could just only write to relays that you trust to respect deletes.
  4. UX is our main selling point imo.
reply
Nostr already has clients for long-form content (Habla.news and Yakihonne), but their UI/UX sucks ass compared to SN.
Someone just needs to slap a SN skin on them, improve the comments feature, add ezy zapping icons like on SN, and a proper home page to find new posts.
Stacker.news can and MUST become a nostr client. Decentralization is the only path for the future. Centralized servers that have to obey laws and IP ban users based on their country are not the way forward. I'm not hating on SN btw, I love this platform!
reply
0 sats \ 1 reply \ @k00b 5 Feb
To be clear, we only geofenced the custodial wallet. When we aren't custodians anymore we'll remove the geofence.
reply
704 sats \ 0 replies \ @k00b 5 Feb
Also I think nostr has as much promise to be the decentralized thing as anyone, but people acting like it’s inevitable isn’t doing nostr any favors.
It has a lot of unsolved problems and anointing it a solution to every centralized problem before it is will make the community complacent and miss real opportunities to improve.
reply
Just to help establish the current facts ...
They don't have to all be identical
They don't and ours aren't.
just follow lists, which are already very popular on nostr.
That's not the way we build our web of trust. We look at a person's entire zap history and compare it to everyone else's. A web of trust based on follow lists can be called a web of trust, but the resulting web is not the same as ours.

The problem with #1 isn't that it's impossible. It's that it takes a long time to gather and compute scores for events and to gather relevant events and re-order events.
This kind of thing will be remedied somewhat by clients storing more historical data in clientside relays or things like nostrdb but Primal is still going to serve the current version of your feed faster (because they built it while you were offline) and Nostr Band is going to perform thorough searches more quickly (because they gathered all the data while you were offline).

I'll be more optimistic that this is remotely as easy to do as all The Sayers say it is when clients stops using megarelays to provide algorithms and search.
reply
Solvable and affordable are different things.
You'll need to add hosting cost, and development costs.
reply
Sorting and ranking content in a decentralized manner is not trivial.
correct, why not just running a relay instead of maintaining a db?
reply
Running a relay is maintaining a db
reply
different kind of db
reply
0 sats \ 3 replies \ @ek 5 Feb
Would you mind to elaborate what kind of difference you are talking about?
reply
maybe is just my believe, am not technical enough to dive into details. my current behavior is that one (SN is using) is centralized. nostr relays are decentralized. True is that a single relay could be run on a c entrilized manner too and being disconnected form the netwrok. would it make sense? probably not, or not for me at least.
However, I trust that the SN ranking engine/algorithm (whatever you want to call it) could be run on over a SN relay somehow, notes got zaps too
reply
0 sats \ 1 reply \ @ek 5 Feb
nostr relays are decentralized
No, they are not. There is no federation between relays dictated by the protocol, if that's what you mean. Relays are just servers maintaining a database. Just like SN. The only major difference might be that they use websockets instead of HTTP for communication.1
What makes nostr decentralized is that there are many relays and clients can choose to which relays they want to connect.
However, I trust that the SN ranking engine/algorithm (whatever you want to call it) could be run on over a SN relay somehow, notes got zaps too
I tried to explain in the post you quoted and here in more detail how I don't think that's as simple as you might think
Footnotes
It's unclear to me why you keep coming back to talk about how SN sucks and the vision is misguided and it's an inferior solution to these other products.
I mean, you're free to spend your time however you want. But increasingly feels like a lady doth protest too much kind of deal.
reply
452 sats \ 0 replies \ @anon 5 Feb
Not sure where that came from. I never said that SN sucks. Disagreeing with the team on certain topics (like the Territories feature) or giving negative feedback doesn't mean I hate this platform. I've been a member here for a long time, longer than you have, and I've always loved SN and will continue to support it, even though I don't use it as much anymore.
reply
104 sats \ 0 replies \ @jeff OP 4 Feb
I don't think it can be a nostr client because of the economics required to build it.
It takes material time, and resources, and risk, to build something like SN.
If it was "just a nostr client", their moat would be lower, their cost of capital would be higher, and therefore wouldn't be able to hire the talent required to build it in the first place.
reply