This 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.
A minimalistic site to vent and see others doing the same in realtime
71–80 of 148 posts
Re: A minimalistic site to vent and see others doing the same in realtime
#72Earlier 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…
Re: A minimalistic site to vent and see others doing the same in realtime
#73This 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…
Re: A minimalistic site to vent and see others doing the same in realtime
#74Re: A minimalistic site to vent and see others doing the same in realtime
#75Earlier quoted context omitted.
Is that your only experience with Twitter? Twitter fills about a million more roles than venting. I don’t see any “cesspool” on my feed in fact.
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…
At some point, the weatherman will tell us about rates of state sponsored AI powered psyops campaigns across social media sites for the day.
Re: A minimalistic site to vent and see others doing the same in realtime
#76Upvote if you're pro-humanity after witnessing this bramble.
Re: A minimalistic site to vent and see others doing the same in realtime
#77Earlier quoted context omitted.
I'm brand new to full stack so I have no idea what I'm doing. Kind of figuring it out as I go along. Decided to start with short polling since I was having trouble getting websockets working and just wanted to get a v1.0 out in the wild. Switching over to websockets eventually is 100% on my mind, but I have a near infinite amount of work to do on all fronts so we'll see when I have time!
Good on you. Learning about DB structure is far more important than websockets when starting out full-stack. You’d need to run your own websocket server anyway or pay through the nose for a service like Pusher (or stay on the free tier and not learn a single thing about either). You choose well! Nice job, keep at it :)
Re: A minimalistic site to vent and see others doing the same in realtime
#78This 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…
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 is correct instead of what the mob demands. Threaten someone however and police will have your adress shortly, - Jodel is not an alternative to Signal or Matrix.
Re: A minimalistic site to vent and see others doing the same in realtime
#79This 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…
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…
Re: A minimalistic site to vent and see others doing the same in realtime
#80You're warned: const messageText = inputTextBox.value.replace(/ ]+(>|$)/g, ""); var $newdiv = $(' ' + messageText + ' ').css({ 'opacity': '0.95' });
What prevents me from just calling "postMessage" directly myself, which does nothing to prevent the "sanitation" that the replace function call there is supposed to do?
Please sanitize messages on the server instead.