Is there any way to get the live chat replay log/history for YouTube streaming video?

Chat Downloader is a tool I developed to retrieve chat messages from livestreams, videos, clips and past broadcasts. No authentication needed! The recommended way to install is from PyPI using pip: pip install chat-downloader The program can then be accessed from the command line or using the Python module: Command line chat_downloader https://www.youtube.com/watch?v=5qap5aO4i9A For advanced … Read more

How does in-browser chat work?

There are some push technologies, such as Comet, but they’re not widely implemented. Most of the time this is accomplished via polling at some small interval with AJAX and downloading any new messages that are available since the last downloaded message.

React native flatlist initial scroll to bottom

I had similar issue. If you want to have you chat messages start at the bottom, you could set “inverted” to true and display your messages and time tag in an opposite direction. Check here for “inverted” property for FlatList. https://facebook.github.io/react-native/docs/flatlist#inverted If you want to have you chat messages start at the top, which is … Read more

How is GMail Chat able to make AJAX requests without client interaction?

That tech is known as “comet”, but also as “server push”, “reverse ajax”, etc. It’s about pushing data from the server to the browser, keeping an http connection alive. Find more info on it on the wikipedia article (English version). Also here’s a pretty good presentation with Joe Walker from DWR, where he talks about … Read more

tech