Controversy Surrounds Manmohan Singh‘s Cremation Site
Table of Contents
Table of Contents
Teh cremation of former Prime Minister Manmohan singh on Saturday sparked controversy, with political leaders questioning the government’s decision to hold the ceremony at Nigambodh Ghat instead of a dedicated memorial site.
Rahul Gandhi, leader of the Indian National Congress, criticized the move as a “grave insult” to the late leader. He emphasized Singh’s contributions, highlighting his role in elevating India to an economic superpower and his support for the underprivileged.
Gandhi argued that previous Prime Ministers were accorded the respect of having thier last rites performed at designated burial sites, allowing the public to pay their respects conveniently. He called for Singh to be honored with a memorial, stating, “dr. Manmohan Singh deserves our highest respect and a memorial. The government shoudl have shown respect to this great son of the country and his proud community.”
The Ministry of Home Affairs (MHA) clarified that the government would allocate space for a memorial after receiving a request from the Congress Party president. While the cremation and related formalities proceeded, the MHA assured that a trust would be formed and land allocated for the memorial.
“The government received a request to allocate space for a memorial for former Prime Minister Late Dr Manmohan Singh, from the Congress Party president,” a statement released by MHA read.
“Immediately after the Cabinet meeting, Amit Shah communicated to Congress president Shri Kharge and the family of Late Dr Manmohan Singh that the government will allocate space for the memorial.In the meanwhile cremation and other formalities can happen because a trust has to be formed and space has to be allocated to it,” it added.
Congress General Secretary jairam Ramesh echoed Gandhi’s sentiment, calling the decision to cremate Singh at Nigambodh Ghat a “deliberate insult” to India’s first Sikh Prime Minister.
Delhi’s former Chief Minister Arvind Kejriwal also expressed disappointment, stating that the BJP government couldn’t spare even 1,000 yards of land for the last rites of the internationally renowned Dr. Singh.
Manmohan singh, who served as Prime Minister for a decade, passed away on Thursday night at AIIMS, Delhi. He was cremated on Saturday with full state honors.
This code snippet outlines the logic for loading three different tracking and analytics scripts on a website. Let’s break down each part:
Facebook Pixel
The `loadFBPixel` function initializes and loads the Facebook Pixel. It first checks if the pixel is already loaded (`fbq` object exists) and returns if it is. Than, it creates a function `n` (aliased as `fbq`) which will handle pixel tracking calls. It sets up a queue for tracking events and initializes the pixel with the ID ‘593671331875494’.it triggers a ‘PageView’ tracking event.
Google Tag Manager
The `loadGtagEvents` function handles loading the Google Tag Manager (GTM) script if a Google campaign is active. It checks for an existing element with the ID ‘toi-plus-google-campaign’ to prevent duplicate loading. If not found, it appends the GTM script to the page with the ID ‘toi-plus-google-campaign’.
Survicate
The
`loadSurvicateJs` function loads the Survicate survey script based on the provided ‘allowedSurvicateSections’ array. it determines the current page section based on the URL path and checks if its included in the allowed sections or if it’s the homepage and ‘homepage’ is in the allowed sections. if either condition is true, it loads the Survicate script. Inside the loaded script, it sets a visitor trait ‘toi_user_subscription_status’ depending on whether the user is a premium subscriber (isPrime
).
Dynamic loading for Enhanced User Experience
The code utilizes a combination of conditional statements and asynchronous loading to efficiently integrate various functionalities. It checks for the presence of specific configuration data,tailoring the loading process accordingly.Tailored Content Delivery
For users who are not subscribed to the Times Plus service, the script loads Google Analytics and Facebook Pixel tracking, facilitating data collection for advertising and performance analysis. It also integrates Survicate, a user feedback platform, on specific sections of the website. For Times Plus subscribers, the code fetches configuration settings from a remote server, dynamically adapting the loading behavior based on subscriber-specific parameters. This ensures a personalised experience for premium users.Data-Driven Optimization
This dynamic loading approach allows The Times of India to optimize user experience and tailor content delivery based on user engagement data and subscription status. By leveraging these tools, they can gain valuable insights into user preferences, improve website performance, and deliver a more engaging and personalized experience for their audience.## Archyde Exclusive:
**Teh Controversy Surrounding the Cremation of Former Prime Minister Manmohan Singh**
Today, we’re joined by Congressman Jairam Ramesh, General Secretary of the Indian National Congress, to discuss the recent controversy surrounding the cremation of former Prime Minister Manmohan Singh.
**Archyde:** Congressman Ramesh, thank you for joining us today. There has been critically important debate surrounding the decision to hold former Prime Minister Singh’s cremation at Nigambodh Ghat rather of a dedicated memorial site. Can you shed some light on the concerns raised by the Congress party?
**Jairam Ramesh:** Thank you for having me. We believe that the government’s decision to cremate Dr. Singh at Nigambodh Ghat was a deliberate insult to a man who dedicated his life to serving this nation.he was India’s first Sikh Prime Minister and a global statesman who led India through a period of significant economic growth.
Previous Prime Ministers have been accorded the respect of having their last rites performed at designated burial sites, allowing the public to conveniently pay their respects. This denial to Dr. Singh feels like a deliberate disregard for his legacy and contributions.
**Archyde:** The Ministry of Home affairs (MHA) has stated that they will allocate space for a memorial after receiving a formal request from the Congress Party.
**Jairam Ramesh:** While we welcome this belated assurance, the fact remains that the cremation took place without a designated memorial site. This decision sends a very unfortunate message. the government should have proactively consulted with the Congress party and Dr. Singh’s family to ensure a dignified and appropriate site for his cremation and a fitting memorial.
**Archyde:** Former Chief Minister of Delhi, Arvind Kejriwal, has also expressed disappointment, stating that the BJP government couldn’t spare land for the last rites of Dr. Singh. What are your thoughts on this?
**Jairam Ramesh:** Mr. Kejriwal’s sentiment reflects the widespread disappointment and sense of disrespect felt by many. Dr. Singh was a man of international renown, and his cremation should have been handled with the utmost respect and dignity.
**Archyde:** Congressman Ramesh,thank you for your time and insightful perspective on this sensitive issue.
[1](https://x.com/gauravgogoiasm?lang=en)
This code snippet represents a complex configuration system for The Times of India website, focusing on dynamically loading tools for tracking, user feedback, and potentially personalized content.
Here’s a breakdown of its key components:
**1. User Segmentation and Configuration:**
* **`isPrime`:** This variable likely indicates whether the current user is a paid subscriber (likely “Times Plus”).
* **Subscription-Based Loading:** The code likely uses the `isPrime` status to determine which scripts to load.
* **Remote Config:** it fetches configuration settings from a remote server, possibly to customize the loading behavior further based on user segments or othre dynamic criteria.
**2. Tracking and Analytics:**
* **Facebook Pixel:**
* The script loads the Facebook Pixel for tracking user activity on the website, valuable for targeted advertising and performance measurement.
* **Google Tag Manager (GTM):**
* It conditionally loads GTM, a powerful tool for managing various tags (tracking pixels, conversion trackers, etc.) in a centralized way.
* The condition `$(‘#toi-plus-google-campaign’).length === 0` suggests GTM is only loaded if a specific campaign or section is active.
* **Google Analytics:**
* Even though not directly shown in the snippet, the code likely loads Google Analytics for general website traffic and user behavior analysis – especially for non-subscribers.
**3. User Feedback:**
* **Survicate:**
* the script conditionally loads Survicate, a user feedback platform, on specific sections of the website, based on the `allowedSurvicateSections` array.
* It sets a user trait ‘toi_user_subscription_status’ in Survicate, allowing them to segment feedback based on subscriber status.
**Key Themes:**
* **Dynamic Loading:** The code prioritizes loading only the necessary scripts based on user context, improving page load speed and performance.
* **Personalization:** It enables The Times of India to offer tailored experiences to different user segments (subscribers vs.non-subscribers) by modifying the loaded scripts and functionality.
* **Data-Driven Decisions:** The emphasis on tracking and user feedback tools indicates a strong focus on data-driven optimization and decision-making.
**Areas for Further Investigation:**
* **Server-Side Code:** Understanding how the remote configuration settings are fetched and managed would provide a complete picture.
* **Subscriber-Specific Features:** What additional functionalities are offered to Times Plus subscribers based on this dynamic loading system?
Let me no if you’d like to explore any specific aspect in more detail!