Does anyone here use Reddit?
Does anyone here use Reddit?
It's a pretty cool website, but can get ugly fast.. I use it a ton. What are your favorite subreddits? I specifically like /r/talesfromtechsupport, /r/tifu, and /r/askscience!
KoiOS: https://github.com/GabrielRRussell/KoiOS
Code: Select all
#define CURRENT_YEAR 2014 // Change this each year!
- jojo
- Member
- Posts: 138
- Joined: Mon Apr 18, 2016 9:50 am
- Libera.chat IRC: jojo
- Location: New York New York
Re: Does anyone here use Reddit?
No. No one has ever heard of Reddit.
For what it's worth, we have a sub over at /r/osdev. It's dead as hell for the most part, though. Even more so than this place.
For what it's worth, we have a sub over at /r/osdev. It's dead as hell for the most part, though. Even more so than this place.
Re: Does anyone here use Reddit?
I've always wondered: how the hell did reddit survive with such awful UI? Of course now I'm used to it, but it looks like a website from 90s.
Re: Does anyone here use Reddit?
What's wrong with Reddit's UI?
It's one of the cleanest interfaces i've seen.
It's one of the cleanest interfaces i've seen.
Re: Does anyone here use Reddit?
Try flushing your internet explorer cache.SWGDev wrote:I've always wondered: how the hell did reddit survive with such awful UI? Of course now I'm used to it, but it looks like a website from 90s.
- jojo
- Member
- Posts: 138
- Joined: Mon Apr 18, 2016 9:50 am
- Libera.chat IRC: jojo
- Location: New York New York
Re: Does anyone here use Reddit?
I'm with you, Artlav. People have said this so much that I think it's just become a stupid meme. Nobody says this **** about, say, hacker news. Or tumblr. Have you seen a tumblog? Good jesus.I've always wondered: how the hell did reddit survive with such awful UI? Of course now I'm used to it, but it looks like a website from 90s.
-
- Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: Does anyone here use Reddit?
I've thought of registering there a few times, but these "big forums" always seem overwhelming to me (how are you ever supposed to keep up with everything that's going on?). I also find it difficult to use with my screenreader - it's difficult to know what's a reply to what, which is why I prefer linear forums.
When you start writing an OS you do the minimum possible to get the x86 processor in a usable state, then you try to get as far away from it as possible.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
- jojo
- Member
- Posts: 138
- Joined: Mon Apr 18, 2016 9:50 am
- Libera.chat IRC: jojo
- Location: New York New York
Re: Does anyone here use Reddit?
You don't, and that's not the intention. You just skim it for the parts you're interested in. No idea how huge comment sections would work on a screenreader though. I mean, how well does it handle nested comment chains in the first place?how are you ever supposed to keep up with everything that's going on?
-
- Member
- Posts: 396
- Joined: Wed Nov 18, 2015 3:04 pm
- Location: San Jose San Francisco Bay Area
- Contact:
Re: Does anyone here use Reddit?
used to hang out there but after several of my posts were heavily moderated (removed) by some hypocrit saying some bs rules, i decided it is waste of time, largely. i do post some btc related posts from time to time, rarely.
key takeaway after spending yrs on sw industry: big issue small because everyone jumps on it and fixes it. small issue is big since everyone ignores and it causes catastrophy later. #devilisinthedetails
-
- Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: Does anyone here use Reddit?
That doesn't work well with my OCDjojo wrote:You don't, and that's not the intention. You just skim it for the parts you're interested in.
It doesn't. I can't hear what's nested inside what unless the developer makes sure that his website is properly accessible (which most developers don't) and that's why sites such as reddit don't work particularly well for screenreader users. The best solution would actually be to have some sort of XML format which describes the comments in a way that a client-side application can present them to the user in an accessible manner (such as allowing the user to easily navigate up/down/in/out the chain, report what nesting level the current comment is at, report the author, date, associated website url, etc.), but that's a long way off.jojo wrote:No idea how huge comment sections would work on a screenreader though. I mean, how well does it handle nested comment chains in the first place?
When you start writing an OS you do the minimum possible to get the x86 processor in a usable state, then you try to get as far away from it as possible.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
- jojo
- Member
- Posts: 138
- Joined: Mon Apr 18, 2016 9:50 am
- Libera.chat IRC: jojo
- Location: New York New York
Re: Does anyone here use Reddit?
That actually might be a super doable application. The reddit website itself is just a frontend that consumes JSON data from the reddit api. Should be pretty trivial to write an application that consumes the JSON in the manner you describe. Sounds like a pretty fun project, actually.
Re: Does anyone here use Reddit?
I guess it's because of my big break in using any forum-like websites. I'm used to phpBB- or vbulletin-powered forums which I've been using in the late 2000s. IMHO - they have clearer structure.jojo wrote:I'm with you, Artlav. People have said this so much that I think it's just become a stupid meme. Nobody says this **** about, say, hacker news. Or tumblr. Have you seen a tumblog? Good jesus.I've always wondered: how the hell did reddit survive with such awful UI? Of course now I'm used to it, but it looks like a website from 90s.
Many major websites have big UI flaws. Facebook, tumblr, native Google services, etc. Once again, it's my opinion - no need to be so sarcastic.
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: Does anyone here use Reddit?
How is it dead? It's a slow forum, but nowhere near dead.jojo wrote:[...] It's dead as hell for the most part, though. Even more so than this place.
-
- Member
- Posts: 1146
- Joined: Sat Mar 01, 2014 2:59 pm
Re: Does anyone here use Reddit?
Of course, I forgot that reddit has so many third-party frontends and an API. I should try it, actually - maybe I could develop a console client, which would be both accessible to blind users and preferred by Linux geeks, and put it on GitHub.jojo wrote:That actually might be a super doable application. The reddit website itself is just a frontend that consumes JSON data from the reddit api. Should be pretty trivial to write an application that consumes the JSON in the manner you describe. Sounds like a pretty fun project, actually.
When you start writing an OS you do the minimum possible to get the x86 processor in a usable state, then you try to get as far away from it as possible.
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
Syntax checkup:
Wrong: OS's, IRQ's, zero'ing
Right: OSes, IRQs, zeroing
-
- Posts: 16
- Joined: Tue Jun 28, 2016 12:16 am
Re: Does anyone here use Reddit?
no i dont use reddit.. poor user experience..