Categories
Design Product UI UX Websites What works?

Fun UX Example: Starbucks.com

Today I clicked on a link to a Starbucks.com page, and a popup opened up, for the now ubiquitous cookie/privacy notification. Only this time, the words used were not the dry jargon filled trope we are now so used to seeing everywhere. Instead, the popup made it lighter by saying that this is about cookies, just not the ones you eat.
[This site uses cookies, but not the kind you eat]

Cute, isn’t it? It’s also noteworthy that they describe how they use these cookies in simple terms.

But wait, there’s more!

Why does the fun take on actual cookies work here? Because it’s Starbucks. And they know it.

Which is why, right after you dismiss the popup, up comes another one. Are you annoyed by two consecutive popups? I wasn’t. Because the next popup is this one:

[How about a real cookie?]

Colour me impressed!

This is awesome UX! You have to put up a notification because of regulations, you see an opportunity to connect it with a popular product of yours, and in a cheeky yet cute move, you create an opportunity to induce a sale!

I was so pleased with this experience that I opened the page in another browser just so that I could see the popups again (and take screenshots for this post in the meantime).

Lessons learnt:
Always look for opportunities to make UX of your product fun for the user. And quite often there might be an opportunity in the decisions that you don’t have much control on – you need to be able to spot it and make it work for you.

Categories
Product Technology Websites WordPress

New WordPress Plugin: Playing Card Notations

If you run a WordPress blog or site related to card games, like poker, bridge, rummy and the likes, and have the four suites’ unicode characters pasted away somewhere so that you can paste it whenever you are writing a new article where you need to show hands with cards, you need to take a look at my latest WordPress plugin: Playing Card Notations (PCN).

All you need to do, is install the plugin from WordPress’s repository, activate it, and use the shortcode [pcn] with simple text notations. E.g. Four of a kind, Aces can be represented as [pcn]AhAcAdAs[/pcn] by the shortcode [pcn]AhAcAdAs[/pcn].

You can configure display options like font, colour scheme and standard or reverse from the Appearance > Playing Card Notations Settings page in your WordPress admin panel.

Do install it, use it, and let me know of your feedback or feature requests in the comments below.

Link to the plugin’s page on WordPress.org.

Installation

For an automatic installation through WordPress:

  1. Go to the ‘Add New’ plugins screen in your WordPress admin area
  2. Search for ‘Playing Card Notations’
  3. Click ‘Install Now’ and activate the plugin

For a manual installation via FTP:

  1. Upload the addthis folder to the `/wp-content/plugins/` directory
  2. Activate the plugin through the ‘Plugins’ screen in your WordPress admin area.

To upload the plugin through WordPress, instead of FTP:

  1. Upload the downloaded zip file on the ‘Add New’ plugins screen (see the ‘Upload’ tab) in your WordPress admin area and activate.

Usage

You can use the shortcodes pcards or pcn to display cards and card hands in your blog’s content. The standard card notations of (A-J, 10 or T, 9-2) followed by suite letter (s for spades, c for clubs, h for hearts and d for diamonds) work.

Uninstall

In the Plugins screen of your WordPress admin area, navigate to Playing Card Notations, click on Deactivate. On the refreshed screen, click on Delete.

Categories
Product Technology UI UX What's wrong?

Bad UX: Fixing What Isn’t Broken or Over-Designing

One of the key things UX designers and product managers focus on is how to reduce friction for their users while using their products. If there is any UX pattern in our product which causes confusion in the minds of the user, they have to double guess how to use it, or they have to put more thought than necessary into using it, we have failed.

One such product that bothers me a lot is the tap or faucet. (Don Norman wrote about it in his book The Design of Everyday Things)

You use a tap in a very simple way – you turn a knob that sits on top of the device anticlockwise to start the water flow, clockwise to stop it, the water flows out of a spout in the vicinity of the knob, and the flow of water is governed by how much you have turned the knob.
Like this one: shallow-focus-photography-of-gold-faucets-1021872

This is simple, universal, does the job every time as expected, and there really isn’t any reason to make any changes in the fundamental structure of this device. And if I encountered a tap like this everywhere I went throughout my life, I am not going to complain.

Yet, we see the following variations of the tap at various places, where the variations are not just in scale, shape, texture, material, but in how the tap is used:

We are left confused as to which component to turn to use the tap, or which way to turn it, or whether we are turning it in the right axis even, or whether we have to push on the “knob” instead of turning it! Why have tap designers gone to these lengths to confuse us while using such a simple device? Mind you, I am not even talking about faucets where both hot and cold water comes and there are complex knobs to ensure you get the right temperature by mixing both, or sensor-driven taps, where you don’t need to touch the tap to activate it (they come with their own challenges – where exactly do I place my hand so it works? The tap next to mine seems to be working – why isn’t mine working?).

In Software Design

What are some of such scenarios in software & app design where the interface has been over-engineered to the detriment of user experience?

  1. Synthetic scroll: This was a pattern in vogue on blogs and magazine sites a couple of years back. If you used your mouse wheel or trackpad to scroll the page, the scroll speed would be higher than usual. Why? Either because the designer had found a nifty Javascript trick to make it happen, or … I cannot think of any other reason, least of all a user-centric one.
    Scrolling is something the device & browser handle and they handle it very well, and unless your experience involves things like scrollspy and page section navigation, there is no real reason to tamper with this behaviour.
  2. The sticky mastheads on sites, which would disappear when scrolling down, but would pop up again when you scrolled up a bit. Why do we need this interaction at all? Is the screen space so limited that the content isn’t visible when the masthead is perpetually visible? It is a little bit annoying to scroll up to re-read something you had just seen, only to have it hidden behind the masthead, so that you need to scroll just a little bit more.
  3. Form validations that go ‘above & beyond’:
    1. Some form fields take only specific types of inputs, e.g. numbers. But some designers go beyond just filtering unacceptable characters – there are forms where if you press anything other than the 11 keys (10 numbers and the period), the data you have already entered in the field is simply deleted, and you have to re-enter your data!
    2. There are forms where when the page load completes, a script goes through all the input fields to reset them. How is this a problem? Say the page takes some time to load, and the user has already started to input some data, once the page load ‘completes’ (in today’s times of progressive web apps, this could be an arbitrary point in time), the script just removes your inputs.
    3. Fancy input fields which are broken into multiple input fields one character wide. The most common example is the OTP field in many e-commerce apps. Why is this done? To visually denote how long an input is expected. As you input the OTP, the focus keeps moving to the next field, and thus the experience is completed, except when the backspace isn’t coded for. When you press backspace, the previous field should be emptied and put in focus, but at times the developer forgets to code that and it becomes an issue. Going one step forward, when the user manually goes to the respective field to delete the input, the code checks the existing data length, decides that the input is complete, and thus pushes the focus to the next field, without letting the user delete the wrong data.
      1. The special case of this issue that has bothered me for years can be seen on the IPv4 configuration screen on Windows. An IP address consists of 4 one-to-three digit numbers separated by periods. While other systems let you enter it all in one textbox, and you have to type the periods as well (leaving us in total control), Windows’ designers decided to make it fancier – there are four textboxes and the periods are ornamental pieces between them. It’s nifty, except that if you are typing any number less than 100, you fill only two places in a 3-digit field, and you cannot move to the next field except by clicking it using your mouse or trackpad. The tab key takes you to the next group of fields. Pressing a backspace on an empty field doesn’t take you to the previous field either. I’ve seen this behaviour and been annoyed with it for years now, but nothing seems to have changed here over multiple versions.
        windowsip

As you can see in the examples above, designers at times go overboard in over-designing interactions where it’s not needed, breaking away from the expected pattern, thus leaving the user confused or worse still, frustrated. These mistakes are almost always avoidable, simply by falling back on the most used and easily available pattern. This goes for taps as well 🙂

What are some of the examples of over-designing, in software or other products, that you have come across?

Categories
Product Technology UI UX Websites

Bookmarklet: Add Keyword Search to the Listings on IIMJobs.com

Job hunters from the IIMs and other such colleges often go to this cool site called IIMJobs.com, started by an alumnus of my alma mater. It’s quite a live board, but there is one thing that I sorely miss there – filtering the job listings by keyword. You can select your experience range, your preferred location, and search. You get to see all jobs in your preferred city for your preferred vintage, but you may not be interested in them. And you have to sift through the listings page to find jobs suitable for you.

This got me thinking – what if there was a filter box, where I could type in my preferred phrase and it would filter the listings on the page, keeping only those that you want to see?

So, I spent a Monday morning putting together some code, and here it is – a bookmarklet which, if you save it on your browser’s toolbar and click on it when you are on the IIMJobs listing page, you will get a cool keyword search input box. This will let you filter the listings on the page by keyword – basically it will hide all the listings which do not match your search phrase.

All you have to do is drag the button below to your browser’s toolbar.

<a style="padding: 18px 32px; font-size: 16px; margin-bottom: 40px; background-color: #444; color: #fff;" title="Drag me to your bookmarks/favourites" href='javascript:(function(){$("#searchform").find(".greybtn").closest("div").before("

“),$(“ד).appendTo(“.keywordParent”),$(“.keywordSearch”).keyup(function(e){var%20o=$(“.keywordSearch”).val().toLowerCase();$(“.jobRow”).each(function(e){-1Add Filter @IIMJobs

Do let me know in the comments below if you like it, or if you have any feedback on how to make it better.

Categories
Business Internet News Product UI UX

Can We Make Newspaper Articles Shareable & Trackable

While reading an article in today’s ET Brand Equity, I felt like I had to share it with my friends, maybe put it up on LinkedIn with a comment of my own. The thing is, I was reading it on the paper, not the app or the website. And being the lazy person that I am, I would not usually go looking for this article on either of those two, just for sharing it.

But I did want to share this article with my friends, and I looked for ways to do so.
Can We Make Newspaper Articles Shareable & Trackable

Apart from the author’s email address, I could not find anything to go by.

This puts the physical paper and its reader at a disadvantage compared to the app/site & their reader.

The Obvious Way

One obvious way out is to take a picture of the said article, and WhatsApp it to the relevant people. Or tweet it, or share it on Facebook or LinkedIn.

I would have to overcome the hassles of getting a clear picture, each word being clearly captured, the lighting being right, the paper not flying away due to the fan yada yada. At the same time, there is an obvious opportunity that the newspaper company is missing here – in this method they would not know who all has read this piece of content, or even how many people it has reached.

In this day and age of tracking user attention and retargetting, don’t you think that’s a big piece all physical newspapers and magazines are missing out on?

Go Digital

So, I have a proposal for paper publications, who also have a website and/or an app where the same content is published.

Why not simply print the QR code to the link of the content at the beginning or end of the piece?

I got off my lazy behind, and found out what the online home for this particular article is: https://brandequity.economictimes.indiatimes.com/news/business-of-brands/huls-secret-recipe-of-success/71401983

A simple QR code leading to this article looks like this:
QR to ET article

But this would take some space to print, wouldn’t it?

This is where a URL shortener service like bit.ly comes in handy. Not only can the URL be shortened to something like 20-25 characters, they provide tracking data as well. This is how a bit.ly version of the same link looks:
QR to bit.ly to ET article

And a crude representation of how it could look on the same article:
Can We Make Newspaper Articles Shareable & Trackable
It doesn’t take up a lot of space, and it is scannable – try it out!

I am sure the designers at these papers would find a way to make it look way more attractive than this.

With this small addition to every piece of content in a paper, I am sure sharing and adoption of the online versions would also take off. Meanwhile, knowing that I can share content I would definitely be more open to reading the physical paper, since reading something like Brand Equity is not only driven by updating my knowledge about the industry, but also about finding shareable content for this blog and my LinkedIn feed.

Categories
Business Design Product UI UX

Short Commentary: PineLabs POS UI

I was in Nature’s Basket the other day. When I took out my credit card to pay the bill, I noticed the fancy all-touch-screen POS the cashier pushed towards me. It’s a device with a cradle charger, and frankly looks quite fancy, though I do not have any qualms with the usual all-black push button POS machines we see everywhere else.

Nevertheless, it caught my attention. It looks somewhat like this:
Probable interface when actually using the POS

Except, when my card was inserted and I had to enter the PIN to authenticate, it looked somewhat like this:
Probable interface when actually using the POS

Do you see the difference? Yes the digits are switched around. Possibly some team convinced everyone that it is a high security feature and would reduce fraud/misuse of cards. Here’s my take on why this design decision has gone wrong.

What are we trying to solve here?
  • Negative use case: Someone is carrying a stolen card and has somehow figured out the PIN, though a skimmer, social engineering, maybe overheard the owner somewhere, or looked over their shoulder. Such users remember the PIN’s digits, commit them to memory, and would maybe revise it in their head while the card is being swiped. Does this interface gimmick prevent them from using the keypad? I doubt it. They are anyway going to be looking for the digits on the screen, and pausing after every keypress. There is hardly any change in behaviour for such people.
  • Positive use case: The actual owner of the card. Most of us do not repeat the 4-digit PIN in our heads before punching it. After the initial 5-10 times, we just repeat the keystrokes on the POS. It’s muscle memory for most of us. Because of this design change, we have to punch in the keys like anyone from the negative use case bracket would – punch-pause-punch-pause, and in between try to remember if 2 came before 8 or after and if there really was a 7 in the middle, because the keys aren’t where our brains expect them to be. All this design change does is make the legitimate users look like they have just cracked the PIN to a card they found on the street.
  • Now let’s talk about the other positive use cases: The elderly, disabled, kids carrying the card. Those who do not depend on muscle memory to punch in PINs. These people might anyway be remember one digit at a time, so should it be okay to switch the digits around? These people are not going to touch type, why are we making it difficult for them to look for digits? Nothing is where you expect it to be.

What is the point really of such an interface change, when it a) prevents legitimate users from using the system effectively, and b) does nothing to prevent misuse/fraud, when I’m sure that fraud prevention would have been cited as the reason number one to implement this.

Categories
Literature

Five of Thirty-Five: Best Books I’ve Read in 2018

Build-up to the Thirty Five book challenge here.

Here are the five best books I’ve read in 2018:

To Kill a Mockingbird (Harper Lee)
Boy am I late to this party? My favourite book that I read this year is one that was written fifty eight years ago – the Montgomery bus boycott was only five years ago when this book was published.
I simply loved the characterisation of Scout Finch and her father Atticus, the lives they led, what they stood for – doing what they believe is right despite what others around them think. And I loved the way childhood back then is described. When this book ended, I had mixed feelings – I wanted to immediately start reading Go Set A Watchman, but then I also realised that once I finish that book, there wouldn’t be another Harper Lee book to read. I think I will pick it up in 2019.

The Catcher in the Rye (J.D. Salinger)
What is with me and reading decades old books? This one is even older than the last one. And once again I liked it so much because it depicts a teenager’s life in the fifties – the trials and tribulations that he faces in school and otherwise – the playing truant, the smoking & drinking, the flirting, the fights he picks up, and the way he misses his deceased younger brother. The story has a stream of melancholy running beneath all the bravado and boyish things that Holden Caulfield indulges in.

This time I was even sadder on finishing the book, since there is hardly anything else by J.D. Salinger that I can read to go back to this world.

The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life (Mark Manson)
Fast forward in time, to a book written as if last week. The wife had bought this book (she likes buying and reading more recent books), had read a few chapters and kept it aside. I was looking for a short read, and so I picked it up.

It’s a sort of self-help book, which does not overdo the sugary sweet “believe in yourself”, “you can do it if you believe in it” of others of this category. In fact, it goes nicely against the grain of the self-help book culture, breaks down notions of being special, and most importantly, describes the problem of entitlement that most people of our generation face.

It’s such a must-read in my opinion, that I would call it the bitter gourd-kale smoothie which detoxes you, and should be administered multiple times.

The Great Gatsby (F. Scott Fitzgerald)
One more from more than half a decade ago, this one is a love story. A super-rich, suave, gregarious man who is pining for his first love so much that he moves close to her, befriends her cousin, and tries to win her back. This has all the makings of a highly emotional Bollywood romantic drama. Perhaps so many of the films we have grown up on are in fact inspired by Fitzgerald’s novel.

I loved the passion of Jay Gatsby, the way the twenties’ lifestyle comes across in the party scenes, the car chases, the decadence and revelry. And I loved Daisy Buchanan’s character – because we saw her from the eyes of Jay Gatsby and Nick Carraway, the narrator.

The Bastard of Istanbul (Elif Shafak)
A novel which is from a not too old yet not yesterday times – 2006. Elif Shafak is a popular novelist, and this is her first book that I read.

The book is about two girls, Asya and Armanoush. One of them is Turkish, the other Armenian. One of them lives in Istanbul, the other comes to Istanbul from the USA to find her roots. And it’s about the relationship that exists between the Armenian people and the Turkish people, especially with reference to the 1915 Armanian Genocide in the last years of the Ottoman Empire.

Having grown up listening to the India-Pakistan rivalry, and being exposed to other such rivalries like Palestine-Israel, South & North Korea, this relationship between the Armenians and the Turks intrigued me – the book is the first time I read about this incident. And it’s made me curious to find out more about Turkey, Armenia, and the Ottoman Empire.

Though the book meanders a bit towards the end, it’s a wonderful read. And I look forward to reading more by her – The Forty Rules of Love might be the next?

These were my five favourite books from 2018. I will soon write about the rest in brief. Stay tuned.

Categories
Literature

Thirty Five Books in Twenty Eighteen

The good folks (or the good app, sil vous plait) at Goodreads have duly informed me that I have completed my 2018 Reading Challenge of 35 books this year. Thirty five? How did that happen? When did I?

To tell you how I got to that number, I would have to rewind a bit to the beginning of 2018. Back in the old days of January 2018, the time of wide-eyed resolutions, high spirits, optimistic world views, I made a Keep note, where I wrote five things I wanted to accomplish in the year to come. Three were totally materialistic ones, and two were areas of self-development – one related to fitness, and one related to intellectual improvement. The latter of these was a (looking back now) humble “10 fiction and 6 non-fiction books”. Yes, I thought reading 16 books in a year was a lofty goal, worthy of being written alongside things like regular workouts and a new suit.

Well, it was lofty back then. And I was aware of this goal constantly. It was something I would enjoy doing, and something that would lessen the amount of Tsundoku in my life. So I kept up the streak of reading that had started a few months back. Before then I had enjoyed reading books, felt a minor sense of accomplishment on finishing one, but never kept track, and have been irregular with continuing books that I had started. As a result, I can proudly claim at least a dozen books to be a part of my “currently reading” category.

I kept reading, kept keeping a note in another Keep note (I hadn’t re-discovered Goodreads then). Meanwhile, the good wife gifted me a Kindle for the birthday. And the tinkerer in me got down to getting all types of ebooks in my possession on to that device.

The speed with which I kept finishing books astounded me – I had never managed to complete books this fast. Somewhere around April or May, the figure of sixteen was crossed, and the Keep note kept getting longer and longer. A few months down the line, I realised I have a Goodreads account, and it’s so much better than using Google Books and an Android app I was using called My Library to keep track of books I own. Additionally, I could keep track of my reading status. Without writing the name of the books and authors in Keep.

And there was a reading challenge too! I needed one more number target, and this challenge thingie gave me that. I had finished 20 books by then, and going by that rate, I could have finished a total of maybe 27, maybe 29 books. I could have set the challenge at 30, and coasted nicely to the end. But what fun would that be? So, I decided on a nice round number like thirty five.

Why not thirty six? Because who wants to read an even three books a month? That’s boring.

The challenge stayed in the app. I had 15 days to go, and I realised I am two books short of the target, and didn’t have enough time for two whole books. I could have picked up two thin books and be done with it. But no, I didn’t. Well, I did pick up the 112-page play by Vijay Tendulkar, Khamosh! Adaalat Jaari Hai. But I also picked up William Dalrymple’s In Xanadu, which I managed to finish by Christmas. And the play took another couple of days. In between, I also finished the teeny-tiny The Adventure of the Dying Detective by Arthur Conan Doyle in this period, which can be discounted, lest the count actually reaches thirty six instead. And who would want that?

I have been spending the last few days leafing through some books (A Book of Simple Living by Ruskin Bond amongst others), and not really paying much heed to any need to finish n number of pages in m number of days. And thinking of how to share the list of books I have read with all of you.

Now that you have read through the enthralling story of How I Read Thirty Five Books in Twenty Eighteen, why don’t you go to the next post to read about the best ones I read.

Categories
Branding & Advertising Internet Product Strategy

Zomato, Radhika Apte, Netflix, #Radflix, and Me-too Marketing

If you have been online around the end of August, and you follow the really cool people online, you must have heard about Netflix India’s love for Radhika Apte – how she seems to be a part of every piece of Netflix India original content, be it movies they produce or shows. The public has been creating jokes and memes about the affinity, and it’s gone viral.

How Netflix India’s social media team handled the attention was just brilliant. They joined in the meme fest. Not just did they appreciate the memes that the public made about Radhika Apte & Netflix, they created their own memes, coined the term ‘Radflix’, made a mock trailer of a mock film titled ‘Omnipresent’, starring Radhika Apte, written, directed, shot, and what not, by Radhika Apte, and went full throttle on having fun with it.

In short, they pwned the internet at their own game.

But this post is not about the larger phenomenon that Radflix was. It’s about a simple series of ‘ads’ that appeared in a short period of time, which shows how most Indian brands cannot think beyond “yeh wala cool hai, hum bhi karenge“.

So, while Netflix was enjoying the attention that Radflix was bringing them online, the witty social media team at Zomato made a simple two-column text format of an ad, which simply said ‘And you thought only Radhika is versatile’. The subject of this ad was Paneer, which, as per the ad is present in so many dishes / everywhere, much like Radhika Apte is.

https://platform.twitter.com/widgets.js

Simple, cute, topical.

What happened next was nothing short of a masterstroke by Netflix. In 3 hours time, Netflix India just replied to that ad by editing the creative, finding the letters R-A-D-H-I-K-A in the left column, crossing off Paneer and writing instead the name of their mock movie Omnipresent.

https://platform.twitter.com/widgets.js

Quick, witty, playful, and funny.

The internet imploded! As I’m writing this, both these tweets have generated over 22000 interactions, almost two-thirds of which has come to Netflix’s response. And we don’t even know how many times these tweets were screenshotted and shared on Facebook, LinkedIn, Whatsapp, Telegram etc.

All well so far.

Then, the Indian thing happened. Other brands noticed the buzz. Heads of marketing & CEOs of companies said “This is so cool! I want to join in too!”

So here’s the list of brands which attempted to join the party, and my commentary on each.

Reliance Mutual Funds

https://platform.twitter.com/widgets.js
This is the first me-too tweet I saw that day. Reliance MF replied to both the handles, “Only if you have the wealth to binge watch and eat whenever you feel like!”, which doesn’t fit the context in any way, placed a weird reading sentence in the left part of the ad, where each word exists solely so that the word W-E-A-L-T-H could be spelled out, and the right part simply sports their own tagline.
Talk about butchering the format.

IIFL

I found IIFL’s tweet in a reply thread to the one by Reliance MF above. It’s clear that they didn’t even try beyond copying the two-column text format. Though in terms of content style, they came closest to the Zomato ad, but sadly nobody paid any notice to create a Netflix style reply.

KFC

KFC came up with a follow-up, with the exact same approach as that of Reliance MF. Left side, let’s spell out chicken over a force-fitted longish sentence, and right side, our tagline.

Union Bank of India

A PSU bank also wanted to join in the fun. They had a strange take though, spelling out U-N-I-O-N-B-A-N-K over an insipid and weird sentence on the left, and the entire logo unit and tagline on the right. The graphic work looks like it was quickly put together on Powerpoint only.

Tata Sky

My favorite DTH service provider ;), Tata Sky, didn’t want to be left far behind. So their social media team cooked something up. But brand visibility is paramount, so they just list random keywords along with the words “Tata Sky” on the left, so that they can spell out R-A-D-H-I-K-A (thank god for small mercies!), and their tagline on the right.

Cashify

Cashify, (who are they?) made an ad, where they wrote a sentence which is just copy for what they offer, force-filled with the earlier brands’ names, just so they look like they are also “in”, and a boring “Cashify now” on the right. Wait, what does the sentence spell out? No R-A-D-H-I-K-A, no C-A-S-H-I-F-Y?

Daily Objects

This hashtag laden copy came 2 days late, where they list items that they presumably discuss on the left, only to spell out their own name, and on the right they have their logo. Narcissism much? The only connection to the original story is the tags Radflix and Omnipresent, almost as if this is their half-hearted entry to a contest called Radflix.

Indigo Nation

Indigo Nation listed its sub-brands on the left, its logo on the right, and spelt out C-R-E-A-T-I-V-E, and its tweet read ‘Creativity is where it all started, and after all humaari creativity apt hai!’, again hashtag Radflix hashtag Netflix. Because how else do you show you are creative, if you don’t write creative three times in your creative?

Fullerton India

Fullerton India, created a starkly orange creative, with an insipid tweet ‘your partner in growth’, the list of things they do on the left, but interestingly enough, instead of circling letters to spell out F-U-L-L-E-R-T-O-N, they use the crossword format. They were afraid their audience would have to be spoon fed the word in one straight line. And on the right (this is my favourite!), they cross out Radhika and write Fullerton India. Guys, Radhika was supposed to be spelt out on the left! Stay with the format!

That’s What Sri Said

Some young individual professional who is presumably just starting off also wanted to use the format to get likes & retweets, and some visibility. Let’s just talk about the creative – it’s a list of issues on the left, and the words ‘Problems after college’ on the right. R-A-D-H-I-K-A is spelt out all right, but look at what words were put in so that it could be done – ‘Kam holidays’, ‘Taunts’, ‘Hormones’! The best part of this one is the tweet ‘Radhika Apte being versatile. We found her too.’ Can someone translate this for me please?

Playgard Condoms

The only thing missing from the mix was a condom brand. Playgard copied the format, replaced the left side with types of positions, and quite ‘helpfully’ wrote Positions on the right, because wouldn’t you really want to know what the things on the left are called? No spelling out words, and no crossing out words. But look what else they have written – “the only time Radhika won’t be present”. How presumptuous! Or on second thoughts, it’s just humble on the brand’s part 😉

Buzzinga Digital

An agency called Buzzinga Digital also made an ad, listing out R-A-D-H-I-K-A over a list of things they seem to offer. Nothing on the right. And the tweet content is a slight change to what Netflix had tweeted.

IFW Web Studio

Yet another agency, but this time from Udaipur. Their ad shows the same – the left column lists out a series of places in Udaipur, spelling out R-A-D-H-I-K-A over it, with the right part saying Udaipur – shooting ke liye apt hai! And the tagline to the logo, and the tweet are little more than implorations to Radhika Apte to visit Udaipur.

Hungry Head

This was the most inane one so far. The left half lists food items (with an all-small case nachos), and the right half just says Maggi. I don’t know how the left connects to the right, and what they all have to do with anything we have seen so far. And I don’t even know why the Maggi is in a smaller type than the others even though it’s alone on the right. The tweet says ‘Not only Radhika can fit everywhere. Our Maggi does too!’ Oh and did you notice the innovative hashtag #scaredgames?

What’s common across all these attempts at marketing are a) an attempt to just exploit the trend using the visual structure and the hashtags with no understanding of why the originals worked, b) tagging Radhika Apte, Zomato, and Netflix India’s handle in an attempt to gather attention and hoping for retweets from them, c) usage of the hashtags #omnipresent and #Radflix to appear in searches, and d) a cringeworthy overuse of the word apt (it’s a wordplay on Apte – do you see how clever all these brands are?) everywhere.

Having said all of this, I came across a funny take on the whole thing as well. A kind of subversion, a tongue-in-cheek ad, by a brand called JOOG. Take a look.

JOOG

Let me know in the comments if you have found any more copies of the concept, and I’ll add them to the post.

Categories
Photo Essay Portraits & People Street Photography Travel Travel Photography

Mono Italia

It was a dream. A recurring one.
I am on a cobbled street. I enter a big stone archway, the other side is a little bit darker. There’s a little water body on the “inside”. It’s very quiet, even during the day, no people around, but it feels safe. I feel calm. It’s lovely.
I have had this dream a few times.

I don’t anymore. Because I think I lived the dream. While walking in the alleys of Rome, I felt like I was where the dream used to take me. Deserted lanes lead to deserted lanes lead to lanes where people are shopping, merrymaking, performing, having their aperitif, and generally walking, lead to piazzas where more of the same happens, around a beautiful fountain, or a cathedral, or some statues. At every turn of every lane, I half-expected my dream to turn real, just as I remember it. That didn’t happen, however, the dream stayed at arm’s length throughout my journey in Italy.

Now let’s turn the dream to black and white. Because dreams are black and white? Or because like Vittorio De Sica’s films, I had loved Italy in black and white the most. The idea to go monochrome isn’t really my own though — Master of None did it with their first episode of the second season — which was the starting point of this idea of a post. They in fact paid a tribute to many Italian neorealist films, the most prominent one being the classic Bicycle Thief — they even named the episode The Thief. I didn’t get anything stolen, not at least in Italy. Yet there’s something in the air of Italy that forces me to relook at everything in black and white. Because black and white is pure, it’s romantic, and it goes deeper than just colours. Much like how Italy is.