Three proffessionals collaboration on single sheet of paper

How to Use Tiptap's Collaboration Feature with Rails Action Cable

In this post, we’ll walk through setting up Tiptap’s collaboration feature with Rails Action Cable and ReactJs. Tiptap is a powerful headless editor built on ProseMirror, and when combined with Y.js, it allows for real-time collaborative editing. We’ll use Mantine component library, but it’s not mandatory for this setup. If you prefer to dive directly into the code, check out the example on Github Prerequisites Ensure you have the following installed:...

June 18, 2024 · 4 min · Vikas Kumar

Build a Simple WhatsApp bot in Python using Selenium

Selenium is a web automation package available for all popular languages. To know more about selenium you can refer to official Selenium docs. Here, we will be making a simple WhatsApp bot using Python and Selenium which will reply the current time for every message. Installing Selenium So, first of all, we need to install Selenium for Python by running following command in terminal. pip install selenium Selenium also requires a driver to interface with the chosen browser. For Firefox, we need to install geckodriver. Without proper driver, you will get WebDriverException. Download latest geckodriver from Mozilla’s GitHub Repo and add to the path. ...

October 20, 2017 · 3 min · Vikas Kumar