Earlier quoted context omitted.
The safe, proper way to do this is both shorter and more readable! Both with jQuery: const $newdiv = $(' ') .addClass(messageDivClass) .text(inputTextBox.value) .css({'opacity': '0.95'}); and without: const newdiv = document.createElement('div'); newdiv.classList.add(messageDivClass); newdiv.innerText = inputTextBox.value; newdiv.style.opacity = '0.95';
Hey, creator of the site here, thank you so much for the tip! Unfortunately I'm quite new to full stack. ~1.5 months ago I didn't know a lick of HTML (let alone CSS, JS, any backend framework, AWS, etc), and I'm making lots of mistakes along the way. Currently trying to figure out how to improve my DB performance as Spring's default pagination seems to be quite slow and my site is getting hugged to death at the momen…
A minimalistic site to vent and see others doing the same in realtime
91–100 of 148 posts
Re: A minimalistic site to vent and see others doing the same in realtime
#92Re: A minimalistic site to vent and see others doing the same in realtime
#93Earlier quoted context omitted.
> without the longevity of Twitter/FB posts, people just wouldn't think twice about what they're saying You clearly have not yet witnessed the bad parts of Facebook and Twitter. I've seen people calling for genocide on Facebook under their real name and that's not even remotely the worst. Facebook's content moderation teams are basically getting PTSD[0] by default as they enforce rules that specify under what circums…
I mean, I didn’t sleep through 2016 onwards but people threatening violence still get banned, people with bigoted views still get called out or damage their real-world offline relationships, and it’s possible that there’d be even less people who’d be mindful of what they say without those feedback mechanisms.
The only real solution I see is to keep such online platforms small or segmented enough that they can be effectively moderated. Troublemakers will not go away no matter what rules are in place; but if those rules are properly enforced they can be kicked out before causing too much damage.
Re: A minimalistic site to vent and see others doing the same in realtime
#94Earlier quoted context omitted.
> This is great. It fills the same role as Twitter, but people's posts disappear after a few seconds, making it better than Twitter. Also like Jodel it is anonymous[1], which is a good thing whenever possible as has become obvious lately. [1]: wrt other users. Random nutjobs of all shapes cannot easily find you and nobody can verify if Jodel have really banned someone so they can to a larger degree do what they think…
Somehow similar to HN isn’t it?
Re: A minimalistic site to vent and see others doing the same in realtime
#95Earlier quoted context omitted.
My direct experience with Twitter is I have one dude's account bookmarked and I check it almost daily because he's a great source of local news. I have a profile but I haven't logged in or used it for a long time. My experience is fine. There sure seem to be a lot of people, though, who have the cesspool experience I mentioned. It's great that you and I don't have this experience with Twitter. It's also anecdotal and…
I really think that people need to have an AI shield or body guard that monitors and controls ones access to media, to protect them from harmful concepts and behaviors. This might sound fantastical, and I understand the vastness of implications, but it will be viewed as no different than wearing sunglasses or mittens. We wear clothing and protect ourselves from the environment, the mental environment out there is unl…
Re: A minimalistic site to vent and see others doing the same in realtime
#96This is great. It fills the same role as Twitter, but people's posts disappear after a few seconds, making it better than Twitter. I'm serious here. Twitter's a cesspool filled with people venting about random crap. So is Ventscape. We all need to vent sometimes, there's nothing inherently wrong with that. But the problem with Twitter is that it preserves and amplifies your venting until the end of time, which is the…
It's mined by the same agencies that monitor everything. So your venting is deleted for yourself, but preserved eternally for the people with power over you. I rather like it.
I love the phrasing. It instantly made me imagine those words being spoken by Lord Demiurge [0] (as voiced by Jeff Johnson [1]).
[0] https://overlordmaruyama.fandom.com/wiki/Demiurge
[1] https://www.behindthevoiceactors.com/tv-shows/Overlord/Demiu....
Re: A minimalistic site to vent and see others doing the same in realtime
#97Earlier quoted context omitted.
Doesn't the fact that Twitter posts (mostly) stay incentivize conscientiousness, precisely because it doesn't take away the reality that words have consequences? It's still not an excellent representation of how forgiveness and personal development exists in the real world (i.e. we can forget about the details of what's been done in the past, but what we post stays in some database), but without the longevity of Twit…
> without the longevity of Twitter/FB posts, people just wouldn't think twice about what they're saying You clearly have not yet witnessed the bad parts of Facebook and Twitter. I've seen people calling for genocide on Facebook under their real name and that's not even remotely the worst. Facebook's content moderation teams are basically getting PTSD[0] by default as they enforce rules that specify under what circums…
The us government literally drops bombs on people's homes.
Humanity is full of all kinds of bullshit. I wish people would stop trying to make everything online a fucking safe space.
Re: A minimalistic site to vent and see others doing the same in realtime
#98Re: A minimalistic site to vent and see others doing the same in realtime
#99Earlier quoted context omitted.
Somehow similar to HN isn’t it?
Was gonna say that's what I use HN for, I got disenfranchised with the industry and everyone in it a few years ago, now I just troll and call it how it is. If I don't get downvotes I something is wrong.
Re: A minimalistic site to vent and see others doing the same in realtime
#100Earlier quoted context omitted.
Reduce the refresh rate drastically, augment the number of messages fetched at once (let's say 200), and display them slowly. Should reduce 20 times the load on DB while making no sensible difference for end users anyway.
Ok interesting idea. My one fret here would be that it would decrease interactivity on the site. Sometimes people send messages in response to each other, right? But nonetheless I'll experiment with increasing the refresh rate and maybe strike a nicer balance