CENSOR BOARD is OUTDATED
Not in the context of just @Actor_Vijay ‘s #JanaNayagan ‘s censor issues but in an overall manner, it is truly foolish to think that the censor board is still relevant today
It has long outlived it’s purpose, but it’s being kept alive out of laziness to debate it’s relevance now , and it is the film industry as a whole which is mainly responsible for this
We live in a time where a 12-year old with a phone can watch a terrorist execution filmed on a GoPro, a 9-year-old can stumble upon hardcore porn, and a bored retiree can binge extremist propaganda, indulge in conspiracy theories , from anywhere in the world, uncut, uncensored, algorithmically pushed. All of it is available instantly, anonymously, and without a gatekeeper.
At the same time, everybody in every wake of society speak in abusive language from new channels to YouTubers and from other apps ..If you quote that age old belief that cinema is a powerful medium , don’t ignore the fact that the social media has far more reach than cinema .and it is full of political venom, communal poison, character assassinations, live, uncensored shouting matches in the name of debates.
And in this reality, for the honourable censor board to believe that cutting a word in a film, trimming a shot, or blurring a cigarette will “protect society.” is a Joke
The censor board was born in an era of scarcity when images were rare, access was limited, and the state controlled the media . Cinema halls were crowd points. Newspapers had editors. Television had schedules. Control made sense then.
But today, any form of a control is impossible because no one can no longer decide what people should or should not see
In such times as now, censorship doesn’t prevent exposure… it only insults the viewers .
We are supposed to have smartness to decide who should rule us but not what we want to see or hear ???
What the censor board actually does now is not protection, but only theatrics . It’s a ritual of authority in Oscar worthy performances where scissors replace thinking, and moral pretence moves around in a disguise called responsibility.
The same society that freely scrolls through graphic violence on social media suddenly becomes “concerned” when a filmmaker shows something in a theatre
This hypocrisy is dangerous
Censorship assumes people are children forever as if they aren’t even aware what all things children have access to?
Cinema is not meant to be a classroom where lessons are taught . They are mirrors , view points , expressions and opinions meant to entertain
The job of the authorities is not to edit or cut them out, but to trust citizens enough to decide for themselves ,which is the main point of freedom of speech and expression, guaranteed under the constitution
If the argument is “think of the children or adults who are like children “it takes very less intelligence to understand that they cannot be protected by blunt scissors wielded by committees ,whose own personal tastes pass off as public morality also not to forget their bias and agendas .
Age classification makes sense. Warnings of the content makes sense. Censorship does not.
Continuing to defend the relevance of the censor board today is like insisting on a watchman for a building whose walls have already been broken and everyone can see what’s inside
The world has already moved on to so many platforms which are unfiltered and unsupervised and so the painful question is whether the authorities have the courage to admit that they are obsolete, and more than that, whether we as a film industry collectively have the will to question them on the same
So instead of raising this topic once in a while over a particular film , the fight should be with that particular system of thinking which created the censor board
Day 32 of #100DaysOfCode: Mastered the basics of Searching Algorithms in C.🔍 Implemented Linear Search and Binary Search to efficiently find elements in arrays. Linear Search is simple but can be slow, while Binary Search is lightning-fast in sorted arrays. #CProgramming
Day 31 of #100DaysOfCode: Dived into advanced sorting algorithms in C! Implemented Quick Sort for efficient data sorting. Learning how divide-and-conquer can optimize performance. #CProgramming#SortingAlgorithms#CodingJourney 🚀
Solution in GitHub:
https://t.co/CCPOHaCOL5
Day 30 of #100DaysOfCode: Focused on sorting algorithms like Bubble Sort, Selection Sort, and Insertion Sort. 🛠️ These basic algorithms may be simple, but they're the building blocks for understanding more complex sorts! 🧠 #coding#C#algorithms#sorting#LearnToCode
Solution:
Day 29 of #100DaysOfCode: Wrapped up with a mini-project! 🎉 Created a console-based BST Visualizer in C, complete with insertion, deletion, and tree visualization. This was a fantastic way to review trees and bring it all together! 🌳🚀 #coding#programming#C#LearnToCode
🚨 Announcement 🚨 I'm hosting a Q&A session on all things computers! 🖥️ Join me on to discuss hardware, software, programming, AI, cybersecurity, and more. Get your questions ready! Let's trend this! #computers#technology#programming#AI#cybersecurity#QandA
Day 28 of #100DaysOfCode: Advanced Trees in C! 🌲 Implemented a binary search tree with node insertion, deletion, searching, and traversal methods. Excited about mastering these data structures! 🚀 #coding#programming#C#LearnToCode
Solution in GitHub:
https://t.co/RvMGvpoz49
Day 27 of #100DaysOfCode: Delved into Trees in C! 🌳 Implemented a basic binary tree with insertion and different traversal methods (in-order, pre-order, post-order). Loving the journey through data structures! 🚀 #coding#programming#C#LearnToCode
Solution in GitHub:
Day 26 of #100DaysOfCode: Advanced Stacks and Queues in C! 🔥 Implemented dynamic resizing for both stacks and queues, making them more efficient and flexible. Loving these data structures! 🚀 #coding#programming#C#LearnToCode
Solution in GitHub:
https://t.co/2ipaTrz4ZK
Day 25 of #100DaysOfCode: Explored Stacks and Queues in C! 📚 Implemented basic operations like push, pop for stacks, and enqueue, dequeue for queues. Loving the data structure journey! 🚀 #coding#programming#C#LearnToCode
Solution in GitHub:
https://t.co/MNFkSvveIR
@clcoding def pattern(n):
for i in range(n):
for j in range(n):
if i == 0 or i == n-1 or j == 0 or j == n-1 or i == j or i + j == n - 1:
print('*', end=' ')
else:
print(' ', end=' ')
print()
size = 7
pattern(size)
Day 23-24 of #100DaysOfCode: Advanced Linked Lists in C! 🌟 Implemented insertion at both ends, deletion, and search functions for a robust singly linked list. Feeling accomplished! 💪 #coding#programming#C#LearnToCode
Solution in GitHub:
https://t.co/qxGblhsJIn