I created an ephemeral group chat app for strangers
21–30 of 39 posts
Re: I created an ephemeral group chat app for strangers
#22Re: I created an ephemeral group chat app for strangers
#23Beyond broken and unsuitable for public release. Take it down and fix it.
Re: I created an ephemeral group chat app for strangers
#24Re: I created an ephemeral group chat app for strangers
#252 observations: I couldn't figure out what my username was, I had to ask in the chat. It's possible to embed recursive iframes, so I can see that being exploited for bad things. Otherwise I like the idea. People in the chat were nice, but I can't help but think that soon chat rooms will be full of chatGPT bots and nobody will be any the wiser!
Thank you for the feedback! So far from users I've heard they want: 1) username visibility fix making sure all colors are visible 2) removal of xss 3) ability to see your own username (its just "you" rn) 4) dark mode open to any and all suggestions :) my first full stack app. its cool seeing it being used
Re: I created an ephemeral group chat app for strangers
#26Beyond broken and unsuitable for public release. Take it down and fix it.
Wow. It was working great at the start before people started spamming nsfw content and injecting html and css into the page. Will be taking down the site in the morning and working on version 2. I guess from this I can say there’s some demand?
const chatMessage = document.createElement("div");
chatMessage.classList.add("chat-message");
chatMessage.innerHTML = `${username}: `;
const userMessage = document.createElement('span');
span.innerText = message;
chatMessage.appendChild(userMessage);
chatContainer.appendChild(chatMessage);
chatContainer.scrollTop = chatContainer.scrollHeight;Re: I created an ephemeral group chat app for strangers
#27Re: I created an ephemeral group chat app for strangers
#28Re: I created an ephemeral group chat app for strangers
#29Earlier quoted context omitted.
Thank you for the feedback! So far from users I've heard they want: 1) username visibility fix making sure all colors are visible 2) removal of xss 3) ability to see your own username (its just "you" rn) 4) dark mode open to any and all suggestions :) my first full stack app. its cool seeing it being used
Don't show people entering and leaving. It clutters the chat, and you don't need to be notified of people leaving as the ephemerality of this is pretty explicit. Larger group sizes to maintain coherence. sanitize your inputs because this is REALLY NSFW now
Re: I created an ephemeral group chat app for strangers
#30Earlier quoted context omitted.
Don't show people entering and leaving. It clutters the chat, and you don't need to be notified of people leaving as the ephemerality of this is pretty explicit. Larger group sizes to maintain coherence. sanitize your inputs because this is REALLY NSFW now
This is a great comment. Will be implementing this in the next push.