Skip to main content

Why I am switching from Whatsapp to Signal, and you should too.

Image for post
Signal

Whatsapp is part of my daily life and probably many of others globally. Recently on 04-Jan-2021 Whatsapp updated its privacy policy which now focuses more on sharing the data with it’s parent company Facebook.

Also the Tesla CEO Elon Musk twitted to Use Signal app for messaging.

This surges the downloads of Signal app in playstore and currently topping the chart.

You may have heard about this app for the first time and must be asking what is this Signal app. It’s a messaging app but unlike whatsapp it’s primary focus is on providing privacy and security to it’s users.

Signal is not a new app that got recently launced infact this app is around for quite sometime. It was first released in 2014.

  • It’s a cross-platform app which means its availabel on both Android and iOS.
  • It’s end-to-end encrypted similar to whatsapp but Signal doesn’t share your data to Facebook.
  • Users can use Signal to send messages, images, videos.
  • Users can make audio and video calls.
  • You can also make group video calls (150 members).
  • Signal also has a disappearing messages feature.

So the Signal has all the features that I needed and were using in Whatsapp. But the best thing about it is it’s focus on providing users the end-to-end encryption and also collecting minimal user data from the user, plus it has all the feature.

So far so good but there are few disadvantages also

Whatsapp lets you backup you data (chats, images etc) to Google drive and you can restore them in case if you reinstall or change your device.

But with Signal, its store all the data locally in your phone, so if you change your device or lost it or cleared data you will not be able to restore your data.

Thanks for reading. If you have some feedback, please provide your response or reach out to me on Twitter or Github.

Comments

Popular posts from this blog

Track stock market information right in your Terminal.

     Introduction: As a developer, I love working with the terminal. The plain, simple, and in my opinion the best way to interact with the computer (also it makes you look geeky). I spent most of my time in the terminal. By now you must have guessed I am a huge fan of the terminal and terminal-based applications. Recently I developed an interest in stock markets and started tracking the stock markets. Since I love working with the terminal I decided to build a terminal oriented application that can help me to track the stock market. Inspir e d by  wttr.in  I build  terminal-stocks  which can provide the stock's current prices, historical prices, and global market summary. How to use terminal-stocks terminal-stocks  is available and can be used without installation. Get the current price of the stock. curl terminal-stocks.dev/ITC.NS Current price of stocks You need to provide the ticker of the stock and terminal-stocks will give you the price inf...

PrivateGPT: A Step-by-Step Guide to Installation and Use

In this blog post, we will explore the ins and outs of PrivateGPT, from installation steps to its versatile use cases and best practices for unleashing its full potential. What is PrivateGPT? PrivateGPT is a cutting-edge program that utilizes a pre-trained GPT (Generative Pre-trained Transformer) model to generate high-quality and customizable text. Built on OpenAI's GPT architecture, PrivateGPT introduces additional privacy measures by enabling you to use your own hardware and data. This ensures that your content creation process remains secure and private. Installation Steps Before we dive into the powerful features of PrivateGPT, let's go through the quick installation process. PrivateGPT is a command line tool that requires familiarity with terminal commands. Let's get started: 1. Clone the Repository: Begin by cloning the PrivateGPT repository from GitHub using the following command: ``` git clone https://github.com/imartinez/privateGPT.git ``` 2.Navigate to the Direc...

Visualising Your Google Location History

Step 1: Download Your Google Location History First, you need to download your location history data from Google. Follow these steps to get started: Go to Google Takeout : Visit Google Takeout to begin the process. Select Location History (Timeline) : Make sure to select the “Location History (Timeline)” option. 3. Export Your Data : Google will compile your data, which might take some time. You will receive an email once your data is ready to be downloaded. 4. Download the Data : Follow the instructions in the email to download your data. Step 2: Extract the Downloaded File Once you’ve downloaded your data, locate the file and extract it. The location data will be in a JSON file at the following path: takeout-202XXXXXTXXXXXXZ-001/Takout/Location History (Timeline)/Records.json Step 3: Convert JSON to CSV To make the location data usable, we need to convert it from JSON to CSV format. Although you can convert it to KML or geoJSON formats, we’ll focus on CSV for this post. 1.  Clon...