Skip to main content

You can finally DISLIKE a tweet (and make it count)

(If you don't feel like reading you can watch this video instead)

How many times have you wished there was a "dislike" button in Twitter? (and probably also in any other social network, but I will focus on Twitter in this post).


And I am not referring to this dislike button which is not what you want, since it is just a way to tell Twitter (and no one else) that you would not like to see similar tweets on your feed in the future.

So until Twitter decides to add this highly demanded feature (i.e., a real dislike button), I have come up with a way to dislike a tweet and make it count, so you can share your dislikeness with everybody and your dislikes can be aggregated with other Twitter users' dislikes.

All you need to do in order to dislike a tweet is to use the hashtag #dislike or just #dl for short, when replying to the tweet which you dislike. That's it, so simple!

For example, this is the image of a tweet which has two dislikes:

But it would be very annoying if you had to manually go through all the "#dislike" or "#dl" hashtags replied to a tweet in order to know how many people dislikes it and who they are, so this is where my small and simple dislike.devaction.net web app comes into play.  

First, you need to obtain the URL of the tweet by clicking on the "Copy link to tweet" button:



Then, you open dislike.devaction.net on a new tab in your browser. If it is the first time you visit it, it will ask you to open a link in order to obtain an authorization PIN from Twitter, do not worry, it is totally safe:



Then you will see a page from Twitter and it may ask you to login to your account if you are not logged in already:



https://twitter.com/David09167866/status/918681629605863424
Please note that we just need this in order to obtain a PIN to be able to look for dislikes in Twitter, it will not authorize the app to post tweets on your behalf and it will not even read your tweets.

Then Twitter will show you a PIN, please copy that PIN (please note that 6115815 is just an example, you will get a different PIN):






Then return to the previous tab were you have dislike.devaction.net open, paste the PIN and click "Submit":





In the next page, you will be able to paste the Tweet URL/link which you copied to your clipboard on the first step and then click "Show dislikes":






Finally, you will get the number of Twitter users which disliked the tweet (just two in this example), and also who they are! 






That's all, happy disliking!!!












Comments

  1. BetRivers Casino: Sportsbook app, online sportsbook and poker
    BetRivers Casino app, online 여주 출장마사지 sportsbook and poker. Play 경상남도 출장샵 casino 원주 출장마사지 games, poker, blackjack, 포천 출장안마 roulette, slots, poker. 충청남도 출장마사지

    ReplyDelete

Post a Comment

Popular posts from this blog

Kafka + WebSockets + Angular: event-driven microservices all the way to the frontend

In the the initial post of the  Event-driven microservices with Kafka series (see here  or  here ), I talked about the advantages of using event-driven communication and Kafka to implement stateful microservices instead of the standard stateless RESTful ones. I also presented the architecture and the source code of a related proof of concept application. In this post, I would like to show how to extend the asynchronous event-driven communication all the way from Kafka to the Web frontend passing through the Java backend. Hence, in the first post of this series, we got rid of HTTP as the communication protocol among microservices in the backend, and now we are also replacing it (with WebSockets) as the communication protocol between the frontend and the backend. Ok, but why would you do that? Because it provides a better experience to the end user!. Using WebSockets you can build legit  real-time user interfaces, the updates are pushed immediately from the server to the client

A Java dev journey to full-stack: first chapter

The Motivation I am an experienced Java developer and (surprise!) I like Java. I know it is not perfect but it works just fine for me (I enjoy type-safety and I do not consider verbosity a disadvantage, quite the opposite). I also know that some people dislike Java, which is also fine. But recently I decided to step out of my confort zone as developer, my goal isn't to be one of the "cool kids" neither trying to monetize a new skill in the job market. I have a quite practical motivation: I want to be able to build more (different) stuff. That's exactly the same reason why I learnt Android development by myself a couple of years ago. Web applications are ubiquitous, even more than native mobile apps, and thanks to cloud computing, one can easily and inexpensively release their idea/app to the World Wide Web. I already did some Web development in the past, in the bad old days of JSP and JSF, but the process was slow and painful. Nowadays the Web landscape h

Using Apache Kafka to implement event-driven microservices

When talking about microservices architecture, most people think of a network of stateless services which communicate through HTTP (one may call it RESTful or not, depending on how much of a nitpicker one is). But there is another way, which may be more suitable depending on the use case at hand. I am talking about event-driven microservices, where in addition to the classic request-response pattern, services publish messages which represent events (facts) and subscribe to topics (or queues depending on the terminology used) to receive events/messages. To fully understand and embrace this new software design paradigm is not straight-forward but it is totally worth it (at least looking into it). There are several interconnected concepts which need to be explored in order to discover the advantages of event-driven design and the evolutionary path which led to it, for example: Log (including log-structured storage engine and write-ahead log) Materialized View Event Sourcing C o