A minimalistic site to vent and see others doing the same in realtime
31–40 of 148 posts
Re: A minimalistic site to vent and see others doing the same in realtime
#32Re: A minimalistic site to vent and see others doing the same in realtime
#33Re: A minimalistic site to vent and see others doing the same in realtime
#34Re: A minimalistic site to vent and see others doing the same in realtime
#35Reminds me of Secret. I miss Secret. Why did it have to die? Once the apps were built, I can't imagine it was that expensive to keep the servers up.
This on the other hand feels like early internet, overly personal in a charming way.
Re: A minimalistic site to vent and see others doing the same in realtime
#36Earlier quoted context omitted.
Did you catch the part about Maddie? It started some hours ago, I think. 1. Someone said something about "Maddie" 2. Somehow someone else started saying things about "Maddie" 3. Next thing that happens is either people ask who Maddie is, and others keep saying various things about "Maddie" 4. Someone made /r/MaddieFans after that Not really something useful, but it's some silly fun. I'd like it if the project evolves…
I made r/MaddieFans - wanted to see how long it keeps going. Trying to keep it wholesome. It IS pretty incredible that this thread is going after 12+ hours. I think initially a guy talked about his ex-girlfriend Maddie, that he missed her. Imagine there's a real Maddie out there who has no idea?
Re: A minimalistic site to vent and see others doing the same in realtime
#37This 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…
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.
Re: A minimalistic site to vent and see others doing the same in realtime
#38 const messageText = inputTextBox.value.replace(/]+(>|$)/g, "");
var $newdiv = $('' + messageText + '').css({
'opacity': '0.95'
});
Re: A minimalistic site to vent and see others doing the same in realtime
#39Re: A minimalistic site to vent and see others doing the same in realtime
#40You're warned: const messageText = inputTextBox.value.replace(/ ]+(>|$)/g, ""); var $newdiv = $(' ' + messageText + ' ').css({ 'opacity': '0.95' });
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';