Live data from Hacker News

I'm not addicted to the internet or my smartphone. I'm addicted to information

explorator.dev

41–50 of 83 posts

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#41
post #18

I don't think I've seen a less accessible *font* in my life, including all the dark grey on black and yellow on white ones. Those are hard to read, but this one makes my eyes hurt, they actually started to hurt after I tried reading it despite discomfort. How come? Reading random text for 10 seconds can cause people physical pain? I wear glasses for near-sightedness and slight astigmatism, I wonder if it's related, a…

this font is the stupidest thing ive seen in ages

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#42
post #6

I think I'm similar. But why didn't people talk about newspaper addiction back then? Sometimes I wonder—even before smartphones, people spent that time reading books, looking up information, and reading newspapers. That kind of addiction was seen as "positive." But in reality, it was probably disrupting daily life too, in its own way. When I see things like this, it sometimes occurs to me that the people who create "…

[deleted]

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#44
post #36
post #32

Earlier quoted context omitted.

You guys are saying this on a website which puts light grey text on light grey background.

My site shows black with yellow background and white text boxes. Highly visible. Maybe you're referring to dead comments? There are options to hide those.

I'm sorry, what is your username again? I can't read it, because it's tiny light grey text on a light grey background.

Controversy shouldn't give me cataracts either.

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#45

My grandma always had the morning paper delivered. When I stayed with her during the summer I’d start in the top left corner of the first page and read all the way to the bottom right corner of the last and everything in between. What a 10 year old kid got out of the grain report? I’m not sure. But I was amped up on her homemade cinnamon rolls and multiple glasses of orange juice. It was wonderful. These days I’m mor…

I remember reading the newspaper in the break room and at lunch. About 2013 or so. That's all their was. Well, for me, because I was a late smartphone adopter.

I kind of lump in "internet" (late 90s) with "internet in everyone's pockets at all times". But there was a fairly large gap there. Especially when you consider the limits of 3 and even 4g.

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#46
post #18

I don't think I've seen a less accessible *font* in my life, including all the dark grey on black and yellow on white ones. Those are hard to read, but this one makes my eyes hurt, they actually started to hurt after I tried reading it despite discomfort. How come? Reading random text for 10 seconds can cause people physical pain? I wear glasses for near-sightedness and slight astigmatism, I wonder if it's related, a…

I have 20/20 vision and this presentation hurt my eyes. I'm glad my browser has "reader mode" to normalize things like this. I'm not trying to yuck someone else's yum. I simply appreciate the technical ability to read someone else's post in a way that doesn't cause discomfort.

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#47
post #32

Earlier quoted context omitted.

I thought it was me, I literally think there are things that should no longer be acceptable and this font is one of them. It serves no purpose and I would like to ask medical professionals if it is potentially harmful. Edit: While fuzzy or blurry text itself is highly unlikely to trigger an epileptic seizure it is a major cause of optical strain, headaches, and reading barriers across various accessibility needs. Giv…

You guys are saying this on a website which puts light grey text on light grey background.

and tiny buttons

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#48
post #6

I think I'm similar. But why didn't people talk about newspaper addiction back then? Sometimes I wonder—even before smartphones, people spent that time reading books, looking up information, and reading newspapers. That kind of addiction was seen as "positive." But in reality, it was probably disrupting daily life too, in its own way. When I see things like this, it sometimes occurs to me that the people who create "…

Well... https://aeon.co/essays/contagion-poison-trigger-books-have-a...

and: https://archive.org/details/americannervousn00bearuoft/page/... - one note on this, Beard blamed nervous exhaustion on steam power, the periodical press, the telegraph, the sciences, and uh... the mental activity of women... This excerpt for a tl;dr: https://english.web.ox.ac.uk/sites/default/files/english/doc...

For how addiction is defined, google ICD-11, it's: Impaired control over the behavior, the behavior taking increasing priority over other interests and daily activities, and continuation or escalation despite negative consequences, plus distress or functional impairment.. (I'm an alcoholic, 5 years sober)

Re: I'm not addicted to the internet or my smartphone. I'm addicted to information

#49
post #18

I don't think I've seen a less accessible *font* in my life, including all the dark grey on black and yellow on white ones. Those are hard to read, but this one makes my eyes hurt, they actually started to hurt after I tried reading it despite discomfort. How come? Reading random text for 10 seconds can cause people physical pain? I wear glasses for near-sightedness and slight astigmatism, I wonder if it's related, a…

Not a font. The VHS line striping is just a repeating gradient applied over the whole page:

    main::before { 
        background: 
            linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
            linear-gradient( 90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06) );
    }
The red glow is a red text shadow applied to every element on the page:

    :root { 
        --text-shadow: 2px 0px red, -2px 0px var(--glitch-color-2);
    }
Surprisingly, the glitchy logo is also done with CSS, with animations over two different versions of the text overlain atop one another:

        explorator.dev        
        єӿƿłøгⱥʈøг.ᑻ
I know this because the first thing I did when I got to the page was hit F12 to bring up the debugging tools and turn these styles off so I could read it. :)
Post reply on HN