Show HN: Wikipedia as a doomscrollable social media feed
11–20 of 151 posts
Re: Show HN: Wikipedia as a doomscrollable social media feed
#12Re: Show HN: Wikipedia as a doomscrollable social media feed
#13Re: Show HN: Wikipedia as a doomscrollable social media feed
#14Man wikipedia is full of trash
Re: Show HN: Wikipedia as a doomscrollable social media feed
#15Please fix the loading issue and I’ll return! I think you don’t need to pull all the data at initialization, you could lazily grab a couple from each category and just keep doing it as people scroll.
I sort of need to pull all the data at the initialization because I need to map out how every post affects every other - the links between posts are what take up majority of the storage, not the text inside the posts. It's also kind of the only way to preserve privacy.
Re: Show HN: Wikipedia as a doomscrollable social media feed
#16An issue I have with these apps that claim to be for doomscrolling is that you don't open apps like Instagram or Facebook to doomscroll, you open them to check messages or stories. The doomscrolling is an afterthought. These things assume you can realize you're doomscrolling and not only break out of it, but choose to hypnotize yourself in their app.
Re: Show HN: Wikipedia as a doomscrollable social media feed
#17Re: Show HN: Wikipedia as a doomscrollable social media feed
#18Re: Show HN: Wikipedia as a doomscrollable social media feed
#19Please fix the loading issue and I’ll return! I think you don’t need to pull all the data at initialization, you could lazily grab a couple from each category and just keep doing it as people scroll.
The loading issue is just a hug of death, the site's currently getting multiple visitors per second, and that requires more than a gigabit of bandwidth to handle. I sort of need to pull all the data at the initialization because I need to map out how every post affects every other - the links between posts are what take up majority of the storage, not the text inside the posts. It's also kind of the only way to prese…
Why are you serving so much data personally instead of just reformatting theirs?
Even if you're serving it locally...I mean a regular 100mbit line should easily support tens or hundreds of text users...
What am I missing?
Re: Show HN: Wikipedia as a doomscrollable social media feed
#20Earlier quoted context omitted.
The loading issue is just a hug of death, the site's currently getting multiple visitors per second, and that requires more than a gigabit of bandwidth to handle. I sort of need to pull all the data at the initialization because I need to map out how every post affects every other - the links between posts are what take up majority of the storage, not the text inside the posts. It's also kind of the only way to prese…
I feel very strongly that you should be able to serve hundreds or thousands of requests at gbps speeds. Why are you serving so much data personally instead of just reformatting theirs? Even if you're serving it locally...I mean a regular 100mbit line should easily support tens or hundreds of text users... What am I missing?
Because then you only need to download 40MB of data and do minimal processing. If you were to take the dumps off of Wikimedia, you would need to download 400MB of data and do processing on that data that would take minutes of time.
And also it's kind of rude to hotlink a half a gig of data on someone else's site.
> What am I missing?
40MB per second is 320mbps, so even 3 visitors per second maxes out a gigabit connection.