Skip to main content

Suheldev - Analyzing the change in Amish Tripathi's writing


I have always been a fan of Amish Tripathi's books. All of them. Over the years, a lot has changed, which also includes his writing style. Well, that's just one man's perspective.

Here are the key distinctions of Suheldev from Amish Tripathi's other books:

Cinematic

I have been noticing a gradual change in Amish's writing which is eventually inclining to a cinematic perspective. And Suheldev justifies it the most. Certain sequences in the book are written in such a way that when you read them, it'll seem as if you're watching a movie. They could be fight sequences, or conspiracy sequences, anything. When we read, we form a picture. And that picture may seem relatable to the countless movies we have watched that have action and politics as their genres. To be honest and fair, if I look back at the first novels of Amish, The Shiva Trilogy, it wasn't cinematic, wasn't like watching any movie. It was a completely different world! Reading those novels felt like getting teleported into another body in a different place. So did Ram - Scion of Ikshvaku and Sita - Warrior of Mithila. I felt a bit of cinematic writing evident in the book Raavan - Enemy of Aryavarta, but the story was too impeccable to relate it with the established cinematic storylines or sequences. Mind you, I'm not saying that Suheldev's storyline or sequences are bad. They are amazing, the flow of Amish's writing is still there where you're not reading his book, you're watching it. But I just didn't feel as gripped or sucked into the world of Suheldev or the Turk-tormented Indians as I have with his earlier novels. Overall though, still an amazing book.

Least modified storyline

This time, Amish has picked up a historic character that very, very few people know about. As a student who has always loved history classes during his school days (yeah, I'm kind of a nerd), I can personally verify that we had never even heard, let alone were taught about these characters and wars. All we were taught about were the annexations by the Turks, the names of the rulers and certain names of the kingdoms that were rich at the time. So yes, making Indians aware of their own history is one extremely important credit that must be given to this novel. It's one thing to better your novel with edgy storylines and another to make people aware of the true legend. And Amish took the responsibility for both the tasks and finished them up respectfully. So the commendable act is to first pick a historic character who was not that known to Indians in the first place and write a fantasy fiction novel on his biography without hardly changing the storyline. Yes, he did modify the Maqsud-Masud character existence, but compare that to the modifications to the widely established and narrated stories of Lord Shiva and Lord Ram, his novel stories seem very humanly and amazingly legendary at the same time.

In conclusion, I would say that I enjoyed reading Suheldev, and I'm happy that it was a different book, a deviation from his Ram Chandra Series. Now all I'm waiting for is the war between Ram and Raavan and how Amish makes the role of Sita much more important in his novel!
Jai Maa Bhaarati!

Comments

Popular posts from this blog

Namaste JavaScript Quick Notes

Note:  Akshay Saini's Namaste JavaScript is probably the best course for JavaScript developers out there. These are my personal notes that I made while watching the course; they serve more of as an online quick reference for my understanding and revision, and I hope it benefits anyone reading it too! Everything in JS happens inside an Execution Context. Before a JS code is run, memory is allocated and variables are set as undefined   , and functions are set as their exact code in the scope within the Execution Context. The global execution context hosts all the global variables and function definitions. An Execution Context has 2 components: Memory, that stores variables and functions; and Code, that reads and executes the code. Call Stack maintains the order of execution contexts. Since JS is single threaded and asynchronous, at one point of time, only one function is executed which is at the top of the call stack. For each function, an execution context is created before ex...

How Kafka replaced Zookeeper with the (K)Raft algorithm?

Back in 2021, when I first came across Kafka, I remember the DevOps engineer in my team using terms like Zookeeper, broker configs, etc on our team standup calls. I remember not caring about those terms, and simply focusing on learning about the producer, partitions, topics and consumer groups, and how they could be used in the product my team was developing. While platforms like Kafka were built to abstract certain aspects of distributed computing (replication, consistency) while storing & processing logs, it's a pity how so many of us miss out on knowing the amazing engineering that went behind to build the different parts of a platform such as this one. 4 years later, I'm hungry enough to reverse engineer one of my favourite distributed platforms - Kafka! What did the Zookeeper do? To quote the 1st  Kafka paper from 2011, Kafka uses Zookeeper for the following tasks:  (1) detecting the addition and the removal of brokers and consumers,  (2) triggering a rebalance ...

"Hey Google" get me a new T-shirt

Everyone loves Google for its amazing technology and creative workspaces! Guess what? Google loves its developers as much as the world loves it too! And yeah, you don't need to be an amazing programmer to be a developer in Google's community. All you need to do is to spare 30 minutes, just once, and maybe have some creativity! That's it! Oh, and you should be really checking your mails periodically, although if you don't currently have this habit, your excitement would develop that for you. What do we want? So you arrived here to know about getting a T-shirt. Would you also like having a Google Home ? Yup, that is also something you could get through this. And of course, as I mentioned earlier, an entry to Google's Developers Community Program! There're a lot of perks for it but let's first talk business. What do we have to do? In a nutshell: Make an Action for Google Assistant .  But what's an Action ? Action is a feature, or a sub-applicat...