<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <title></title>
    <link rel="self" type="application/atom+xml" href="https://vicfic.neocities.org/atom.xml"/>
    <link rel="alternate" type="text/html" href="https://vicfic.neocities.org/"/>
    <generator uri="https://www.getzola.org/">Zola</generator>
    <updated>2025-12-27T00:00:00+00:00</updated>
    <id>https://vicfic.neocities.org/atom.xml</id>
    <entry xml:lang="en">
        <title>Observations in Vibe Coding</title>
        <published>2025-12-27T00:00:00+00:00</published>
        <updated>2025-12-27T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://vicfic.neocities.org/blog/observationsinvibecoding/"/>
        <id>https://vicfic.neocities.org/blog/observationsinvibecoding/</id>
        
        <content type="html" xml:base="https://vicfic.neocities.org/blog/observationsinvibecoding/">&lt;p&gt;&quot;Software Development is dead&quot; - A friend of mine said this statement last week when I talked to him after a while. Like me, he too started his software making journey when LLMs were still dumb. Even when they started becoming rather quite witty and knowledgeable, unlike him, I swore off using any as I believed extensive reliance on them will cause my personal knowledge accumulation and intellectual modeling skills a handicap (which I still believe to this day).&lt;&#x2F;p&gt;
&lt;p&gt;But then, again, his statement made me curious, as in, is it really possible that there is no point in learning conventional full stack development, reading through the docs of the latest JavaScript framework, figuring out API integration etc.? Legends of vibe coding experts getting paid hefty sums for finishing off freelancing works by not even writing a single line of code was especially enticing. I had purposefully put on a blind eye towards all the hype around AI-assisted programming for the past year, but did I miss something big?&lt;&#x2F;p&gt;
&lt;p&gt;Well, I wanted to test out this theory, and what better way to test out the effectiveness of a code churning machine than a 24 hour hackathon.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;the-premise&quot;&gt;The Premise&lt;&#x2F;h2&gt;
&lt;p&gt;I did use LLMs for jobs other than programming (research, reports, etc.), so I was exposed to Google&#x27;s free AI subscription for students and ChatGPT&#x27;s Free Go subscription for one year. I also had access to a ChatGPT 5 Pro account which I won in an internal event in my college.&lt;&#x2F;p&gt;
&lt;p&gt;As for the specific tools, I did test out Antigravity and liked it very much (Cursor did not offer their students offer for Indian students), and combined with the Pro subscrption I had, the limits where practically non existent.&lt;&#x2F;p&gt;
&lt;p&gt;Perplexity had a one year offer for Airtel users, which I still had, so I started of doing my problem statement search project with that. I did find it quite a lot more efficient at reading through hundreds of articles and finding patters in a couple of minutes which would take me hours. And armed with knowledge of the latest frameworks and peoples opinions on those (thanks to scrolling HN all day), I had some idea of what I wanted. I eventually prompted my way into preparing an architecture.md for the full project.&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;span class=&quot;smallcaps&quot;&gt; Tip for maintaining team coherence in hackathons: &lt;&#x2F;span&gt; Always have a shared google doc ready with a plan of what you want, as well as documentation and test cases you are going to verify your product against. I&#x27;ve messed up numerous hackathons because either no one on the team had a clear idea of our goals or we were overly optimistic that our product would work for all test cases. Have some good examples ready.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;h2 id=&quot;the-programming&quot;&gt;The Programming&lt;&#x2F;h2&gt;
&lt;p&gt;Our PS required us to make a mobile app, an agentic orchestrator, and a dashboard website. I purposefully chose not to make our db interfacing backend (as I had PTSD of those things messing up). I guess, you could consider the agentic orchestrator a backend, but anyways our database was handled by supabase. In hindsight, this was a very nice choice.&lt;&#x2F;p&gt;
&lt;p&gt;I started off by making the mobile app, for which I tactically chose react native as my framework. Why? Because there is a lot of react native apps in the web, which directly translates to more training data for the LLMs, which gives them a better understanding of how these things are structured. Also, react native does follow a lot of web dev paradigms, which did have a noticible effect on the LLMs preformance (I did sort of get antigravity to work with native android dev, but thats another story).&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;MCP - Model Context Protocol - aka the bread and butter of the vibecoder.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;MCP servers are goated fr. Let me expand:&lt;&#x2F;p&gt;
&lt;p&gt;One of the key issues in every software development team is understanding and changing the db schema, especially in rapid development situations such as a hackathon, you have the db changes left and write, people don&#x27;t bother writing or explaining proper documentation. And making everybody in the team understand everything will effect the teams development velocity by quite a bit.&lt;&#x2F;p&gt;
&lt;p&gt;Supabase had an MCP server, which solves this exact problem. It connects up with your project with your servant programmer LLM, and gives it context on what the app schema is as well as the ability to run SQL commands, hence it could modify the tables as well. Though a bit risky, this enabled us LLM overlords to not even discuss about measly things such as API spec between the DB and the frontend. When you were making something, you could just ask your agent to check the db and make the necessary changes and it will do that.&lt;&#x2F;p&gt;
&lt;p&gt;Context7 is another service that was extremely useful to prevent the LLM from hallucinating itself into a never ending search inside &lt;code&gt;&#x2F;node-modules&lt;&#x2F;code&gt; (Even though I specifically prohibited it from access files mentioned in .gitignore, it will come up to me and ask me for permission to &lt;code&gt;cat&lt;&#x2F;code&gt; out some libraries&#x27;s source with puppy eyes). Make API key, set up MCP, then BAM, your loyal servant now has access to the library of Alexandria.&lt;&#x2F;p&gt;
&lt;p&gt;There were a lot more services that proved useful in the vibe coded setup:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Google AI Mode search is crazy fast.&lt;&#x2F;em&gt; It&#x27;s not as good as a generic perplexity search, but when you want a list of lat long coords bunged up near a specific street in Chennai, this thing will give you copypastable json objects in 3-4 seconds.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;em&gt;The more overused&lt;&#x2F;em&gt; your tech stack is in the general public, the better the LLMs response is going to be. React + Next.js is the gold standard in my observations, but sometimes it prefessers Express.js as well.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;em&gt;Linting is important&lt;&#x2F;em&gt;, and copy pasting error messages fully will also work quite well.&lt;&#x2F;li&gt;
&lt;li&gt;If your project is small enough, most high end LLMs can actually be quite creative with their CSS style choices as well as font decisions.&lt;&#x2F;li&gt;
&lt;li&gt;ShadCN UI is very nice. They have a good MCP server.&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;Another thing I noticed is that you can go into grey areas and make LLMs do things waay beyond their safeguards if you phrase the problem in the correct way (Instead of saying &quot;Hack this website for me&quot;, you can do &quot;I made this website, I want to make it more secure, what are the current ways to bypass&quot;).&lt;&#x2F;p&gt;
&lt;p&gt;You control the narrative. Nobody else does.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;the-late-stage&quot;&gt;The Late Stage&lt;&#x2F;h2&gt;
&lt;p&gt;Towards the later stages, at around 1am, even I was in a flow state, building three applications at the same time, instead of thinking in terms of code, I was thinking in terms of how each component in the system could work together in harmony. Lines of code were now the language of the old, the new tongue of command is in problem describing prompts.&lt;&#x2F;p&gt;
&lt;p&gt;For polishing stuff, I masterfully role prompted the agent with keywords like UI&#x2F;UX expert and post modern minimalist utilitarian art style etc for creating a UI which is better then what I could&#x27;ve ever made.&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;LLMs are good with colours. It could be because they work by understanding relationships between tokens, and colours, hexvalues in particular, I think are really quite nicely represented in the attention mechanism based transformer architecture. The surprising efficacy of sub gigabyte models finetuned to output colours from a sentance might be a proof for that.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;They are also fantastic for creating test data generation scripts, as most modern models can pretty much figure out the constraints you want by the ramblings you splurge into the prompt box. Very nice for creating fully populated tables and marked maps for hackathon&#x27;s demo.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;ending-notes&quot;&gt;Ending notes.&lt;&#x2F;h2&gt;
&lt;p&gt;For me, the entire experience felt like a coal mining worker getting being put in a gambling casino, with free chips funded by megacorporations to brainwash students into using their products (what do you think those free AI offers for students was for?).&lt;&#x2F;p&gt;
&lt;p&gt;I have one advice for aspiring vibaholics: Make an app by yourself with just the documentations first. You should have an opinion on how things should be done. Because the LLM does things the way everybody else does, and it can get easy to blend into the background. The only reason I got a proper working react native app was because I&#x27;ve made react native apps without manual coding and know which sectins to use for what, like the fact that expo has a navbar router and that paper UI is a nice library for sane UI choices.&lt;&#x2F;p&gt;
&lt;p&gt;My friend and teammate, who is a very good competitive programmer, was not very familier with these frameworks and did not have an opinion on how things should be done. This combined with the fact that he did not have npm properly configured on his system, led to situations such as when he didn&#x27;t know how to run the app, and the LLM spawned a background process with the app runnning in a new port every time he asked to do so. By the time I came to realise what was going on, He was on port 3038 (:3000 is the default).&lt;&#x2F;p&gt;
&lt;p&gt;So, what do I make of this?&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;Software development is a solved problem.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;Technology as stabilised, its all just http requests, and react bloated SPAs. Software development has become the new Civil Engineering, an occupation dealing with making things as they&#x27;ve been always made, but just for new requirements.&lt;&#x2F;p&gt;
&lt;p&gt;The fun left in this is purely from the new tech and complexity you could bring to the system to impress judges or your clients (I&#x27;m looking at you, microservices). Overcomplicate systems for the fun of it. I set up a full reverse proxy container system for my VPS, which only hosts my portfolio site, not because I needed to, just because I could. And ofcourse the excuse that I could put my other projects here someday.&lt;&#x2F;p&gt;
&lt;p&gt;But yeah, this is pretty generation defining technology, and will cause some drastic changes in the job market. I just hope I&#x27;ll be on the biggest iceberg when the collapse of the ice caps comes.&lt;&#x2F;p&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>My Newfound love for CTFs</title>
        <published>2025-02-09T00:00:00+00:00</published>
        <updated>2025-02-09T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://vicfic.neocities.org/blog/ctf/"/>
        <id>https://vicfic.neocities.org/blog/ctf/</id>
        
        <content type="html" xml:base="https://vicfic.neocities.org/blog/ctf/">&lt;p&gt;The concept of CTFs has come up in my recommendations for a while but I had never tried it out assuming its for people who were really into cybersecurity. That is until last week, when the neighbouring collage of SNUC hosted a CTF contest. I partnered up with a fellow linux user in whose skills I trusted in, and we got &lt;mono-green&gt;2nd place&lt;&#x2F;mono-green&gt; &lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#1&quot;&gt;1&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;This competition is where I realised that CTFs are just a competitive version of stuff I&#x27;ve been doing for a while on my computer. I didn&#x27;t know that combing through the hexdump using &lt;code&gt;xxd&lt;&#x2F;code&gt; and trying to find text in binaries using &lt;code&gt;strings&lt;&#x2F;code&gt; would be so fun. All the &lt;code&gt;grep&lt;&#x2F;code&gt;ing and &lt;code&gt;gdb&lt;&#x2F;code&gt;-ing satisfied the inner hacker in me.&lt;&#x2F;p&gt;
&lt;p&gt;It was all very cool.&lt;&#x2F;p&gt;
&lt;p&gt;Right after that there was another CTF hosted by my own college, I again scored a &lt;mono-green&gt;2nd place&lt;&#x2F;mono-green&gt; &lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#2&quot;&gt;2&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;. There was a fun little section where we had to jailbreak an llm to make it reveal a key info hidden in the prompt, which peaked my interest even more.&lt;&#x2F;p&gt;
&lt;div class=&quot;widthfillcont&quot;&gt;
    
    &lt;img class=&quot;responsive-iframe&quot; src=&quot;https:&amp;#x2F;&amp;#x2F;vicfic.neocities.org&amp;#x2F;processed_images&amp;#x2F;prgyn.816c67884f1479fc.webp&quot; alt=&quot;Trying to decode an intercepted encrypted mail.&quot; fetchpriority=&quot;low&quot;&gt;
&lt;&#x2F;div&gt;
&lt;figcaption&gt;Trying to decode an intercepted encrypted mail.&lt;&#x2F;figcaption&gt;
&lt;p&gt;After both of these came an even bigger event in the same week, PragyanCTF hosted by a neighbouring NIT. This one was hard, as it was open to all, professionals and students, and the cash prize didn&#x27;t hurt. This one was harder then the previous both, with people from all over world competing. The questions were on another difficulty level, with an additional point being that this was a &lt;code&gt;42hr&lt;&#x2F;code&gt; competition. We stayed up till 2 am trying to solve the questions and climbing up the scoreboard. But alas right after we woke up from sleep, we went from 10th place to 38th position. I still tried to crack some of the challenges after class, especially a memorydump question, but couldn&#x27;t crack it. Nevertheless, we still finished &lt;mono-green&gt;46th&lt;&#x2F;mono-green&gt; among 445 teams&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#3&quot;&gt;3&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;Looking back, I&#x27;ve now realised that compared other Computer Science competitons such as Competitive Programming, Capture the Flag events are more fun and andrenaline giving. I plan on participating in more in the future.&lt;&#x2F;p&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;1&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;1&lt;&#x2F;sup&gt;
&lt;p&gt;EditaCTF 2025, hosted by SNUC, 2nd Place, Team name: &lt;em&gt;BlackArchBTW&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;2&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;2&lt;&#x2F;sup&gt;
&lt;p&gt;SerialKillerCTF 2025, hosted by SSN Coding Club, 2nd Place, User name: &lt;em&gt;VicFic&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;3&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;3&lt;&#x2F;sup&gt;
&lt;p&gt;PragyanCTF&#x27;25, hosted by NIT Trichy, 46th Place, Team name: &lt;em&gt;SVOANARP&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>Keralite Student&#x27;s Perspective on Engineering Colleges</title>
        <published>2024-07-24T00:00:00+00:00</published>
        <updated>2024-07-24T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://vicfic.neocities.org/blog/eng-colleges/"/>
        <id>https://vicfic.neocities.org/blog/eng-colleges/</id>
        
        <content type="html" xml:base="https://vicfic.neocities.org/blog/eng-colleges/">&lt;p&gt;&lt;b class=&quot;smallcaps&quot;&gt;As a person who went through two years&lt;&#x2F;b&gt; of research on engineering colleges in India (along with my parents &amp;amp; friends) for my admissions, it was very evident that most people are heavily misinformed about the real state and rankings of colleges. The false general consenses created by some greedy entrance coaching centres and private colleges are making good people make bad choices. I&#x27;m writing this article in the hope that it helps aspiring engineers in their decisions.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;requirements&quot;&gt;Requirements&lt;&#x2F;h2&gt;
&lt;p&gt;When judging a college, I tend to focus on the following parameters. It might slightly differ from yours, but I believe every college should be good in all of these to be considered a &quot;good&quot; college. So here are the factors in order of their importance:&lt;&#x2F;p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Quality of Peers&lt;&#x2F;strong&gt;  — Surround yourself with intelligent and hardworking people, and you yourself will tend to be like that. Surround yourself with mediocre lazy people and it becomes near impossible to rise above their level.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Freedom of Students&lt;&#x2F;strong&gt; — College students are legal adults who have their civil freedoms. Colleges &amp;amp; hostels that impose restrictions on a citizen&#x27;s liberty hinder their intellectual growth.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Oppurtunities&lt;&#x2F;strong&gt; — These include the geographical location (cities are preferred over remote locations) and club activities, as well as a culture of participating in intercollege competitions and events.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Research Culture&lt;&#x2F;strong&gt; — Should be able to provide support in researching and publishing papers and preparation for higher studies.&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Campus Placements&lt;&#x2F;strong&gt; — Which type of companies are coming to the colleges? What&#x27;s the median &amp;amp; highest salary?&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;p&gt;Points 1 &amp;amp; 2 are usually &lt;em&gt;the&lt;&#x2F;em&gt; deciding factors. If a college is excellent overall but terrible on the first two points, I wouldn&#x27;t go for it. But that only happens rarely because only colleges with those two factors perform well on the rest.&lt;&#x2F;p&gt;
&lt;p&gt;Government colleges usually tend to be good on points 1 &amp;amp; 2, and as a result, are better overall. The rest  tends to get worse as you go down the cutoff ranks.&lt;&#x2F;p&gt;
&lt;p&gt;Private colleges usually give more importance to points 3 &amp;amp; 5. Lack of freedom in these colleges is a prevalent issue which I will discuss later.&lt;&#x2F;p&gt;
&lt;p&gt;Now let&#x27;s move on to the colleges.&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;b class=&quot;smallcaps&quot;&gt;NOTE: What follows reflects my personal opinions and understanding. Consider this merely as a general indicator rather than an absolute, comprehensive description. You should do your own research before making a decision.  
  
  As I am from Kerala, for private collages I didn&amp;#x27;t really consider collages outside of south India.&lt;&#x2F;b&gt;&lt;&#x2F;blockquote&gt;
&lt;p&gt;I&#x27;m classifying them broadly as JEE colleges (e.g IIT, NIT), private colleges (eg. BITS, VIT), and KEAM colleges (eg. CET, GEC). I&#x27;m talking about KEAM since it&#x27;s for Keralites, if you are from a different state prefer yours.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;jee-colleges&quot;&gt;JEE colleges&lt;&#x2F;h2&gt;
&lt;p&gt;This section doesn&#x27;t need much explaining though I will skim over some points you might miss.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;iit&quot;&gt;IIT&lt;&#x2F;h3&gt;
&lt;p&gt;Top of the top. India&#x27;s most premier engineering colleges. But not all are of equal prominence, especially the newer ones, which are not quite as good as the old ones. Though in general, the quality of peers and freedom are excellent, opportunities are abundant, the research culture is the best in India, and placements are eye watering.&lt;&#x2F;p&gt;
&lt;p&gt;The dream of tens of lakhs of students, should be yours too. Getting in is hard, hard as in really, really hard. Keep in mind that once you get in, your classmates will be the most hardworking, smart people of the generation, so the classwork and exams are in that league of difficulty. Some might say it&#x27;s too difficult to the point of just the genius professors trying to make it deliberately and pointlessly challenging for the students.&lt;&#x2F;p&gt;
&lt;p&gt;But it is worth it.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;nit&quot;&gt;NIT&lt;&#x2F;h3&gt;
&lt;p&gt;The lower siblings of IIT&#x27;s, peers and freedom are still excellent with the only difference being a bit less funding.
NIT&#x27;s too have differences among them, with south Indian colleges being generally better.&lt;&#x2F;p&gt;
&lt;p&gt;Getting a seat is a bit more attainable through pure hard work and effort, due to the difference in JEE Mains &amp;amp; Advanced. You might see a minority of posh NRI people due to their lower cutoffs via DASA.&lt;&#x2F;p&gt;
&lt;p&gt;2nd preference after IIT.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;iiit-indian-international&quot;&gt;IIIT (Indian &amp;amp; International)&lt;&#x2F;h3&gt;
&lt;p&gt;There are two different types of IIIT&#x27;s:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;em&gt;International&lt;&#x2F;em&gt; Institute of Information Technology&lt;&#x2F;li&gt;
&lt;li&gt;&lt;em&gt;Indian&lt;&#x2F;em&gt; Institute of Information Technology&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;There are only two &lt;em&gt;International&lt;&#x2F;em&gt; IIITs, Hyderabad &amp;amp; Banglore. These two are created by their own state governments in collaboration with corporations. Hence they are more reputed and has better industry access then the other IIITs.&lt;&#x2F;p&gt;
&lt;p&gt;Hyderabad has its own entrance test called UGEE, but they also take in students via JEE Mains &amp;amp; Board&#x27;s (which usually requires 99%+ marks in PCM). Banglore only gives admissions via JEE Mains &amp;amp; Boards.&lt;&#x2F;p&gt;
&lt;p&gt;These two colleges are similar, if not slightly better than NITs, due to their specialisation in circuital branches (ie. CSE, ECE, etc.) and being a bit more oriented towards research.&lt;&#x2F;p&gt;
&lt;p&gt;The &lt;em&gt;Indian&lt;&#x2F;em&gt; IIITs are fully owned by the central government but it is a step down from NITs in quality of students with little difference in freedom and a bit more gap in funding. And as always some IIIT&#x27;s are comparatively better than others.&lt;&#x2F;p&gt;
&lt;p&gt;It is also worth noting that this is the phase where some students skip going to government colleges and start to prefer good private colleges.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;private-colleges&quot;&gt;Private colleges&lt;&#x2F;h2&gt;
&lt;p&gt;Better-funded colleges with good infrastructure, usually with a more strict and restrictive environment. And contrary to what most people think, you cannot pay your way into good private colleges, you have to write their entrance tests and score well in school board exams.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;bits-pilani&quot;&gt;BITS Pilani&lt;&#x2F;h3&gt;
&lt;p&gt;The most reputed private college in India, considered to be in the same league as NIT&#x27;s. Their entrance test (BITSAT) is also nearly as tough to crack as JEE Mains.&lt;&#x2F;p&gt;
&lt;p&gt;The fee is high, with a total 4 year degree costing nearly 40 lakhs, but placement salaries are much higher, hence a pretty good choice if you have the money to pay.&lt;&#x2F;p&gt;
&lt;p&gt;Pilani campus is always preferred, with Goa and others being a tiny bit behind it.&lt;&#x2F;p&gt;
&lt;p&gt;Unlike many other private colleges, it is owned and funded by a corporation, and contrary to what the fee might indicate, the college itself is not really profit driven. This non-profit ideology is pretty admirable in your college experience.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;mit-manipal&quot;&gt;MIT Manipal&lt;&#x2F;h3&gt;
&lt;p&gt;Heavily underrated college, excellent and well funded campus, top tier facilities, really good freedom for students. Their entrance test (MET) is mostly intermediate JEE mains questions, and getting into CSE is almost as hard as getting into a IIIT, and the quality of peers is good.&lt;&#x2F;p&gt;
&lt;p&gt;Fee, though not as much BITS, still totals around 30 lakhs, but it does reduce depending on your academic performance.&lt;&#x2F;p&gt;
&lt;p&gt;They also have an upcoming campus in Bangalore, which boasts really good internships due to closeness to industry compared to the main campus. The facilities are on par with the main campus but in a smaller area. As of the time of writing, the first batch of that campus has not yet passed out, so the actual benefits are still unknown.&lt;&#x2F;p&gt;
&lt;p&gt;Due to poor PR management, there is a general consensus that Manipal town is a centre of illicit drug and cannibis usage. This is a blown up issue of little importance because even higher amounts of drug use have been found in other government and private colleges.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;ssn-chennai&quot;&gt;SSN Chennai&lt;&#x2F;h3&gt;
&lt;p&gt;One of the most reputed colleges in Tamil Nadu, with CS placements and academics nearing IIIT&#x27;s and NIT&#x27;s. Generally less known outside of Tamil Nadu due to most seats being reserved for only Tamils.&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#1&quot;&gt;1&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;&lt;&#x2F;p&gt;
&lt;p&gt;About 30 seats from every batch are given according to extracurriculars, interviews, and an aptitude test, and it is open to everybody meeting a certain cutoff in 12th board marks.&lt;&#x2F;p&gt;
&lt;p&gt;Quality of students is really good, and freedom is described as being similar to a government college. It is also a corporate-owned, non-profit college, similar to BITS.&lt;&#x2F;p&gt;
&lt;p&gt;Fee totals around 14 lakhs, which is really cheap compared to other private colleges in its league. But admission is tight.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;vit-vellore&quot;&gt;VIT Vellore&lt;&#x2F;h3&gt;
&lt;p&gt;On paper VIT is a good college. It has good infrastructure, good professors, and has a sizeable population of quality students. Placements are not too shabby either. It even has an NIRF ranking of 11.&lt;&#x2F;p&gt;
&lt;p&gt;But VIT has a couple of big cons, the primary one being lack of freedom. From personally talking&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#2&quot;&gt;2&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt; to many students at VIT, none of them spoke in support of it. This is quite a deviation, because students generally tend to support their own colleges. The large crowd is also a double edged sword, because even though more students imply more active clubs and functions, it also causes overcrowded hostels and stampedes at rush hours. Good hostel rooms and classes of good professors are given according to each student&#x27;s CGPA, which brings a bit more toxic competitiveness between students.&lt;&#x2F;p&gt;
&lt;p&gt;Notably, it has a policy of not allowing students who are attempting to pursue masters to sit for campus placements.&lt;&#x2F;p&gt;
&lt;p&gt;There also exists this so called PDA guards which actively monitors and fines if a couple is seen doing anything romantic. (Not that it applies to me 🗿).&lt;&#x2F;p&gt;
&lt;p&gt;Getting admission is comparitively very easy. You just have to be willing to pay up. Though their entrance test and admission process are a little shady.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;other-private-colleges&quot;&gt;Other private colleges&lt;&#x2F;h3&gt;
&lt;p&gt;There are other mainstream private colleges like Amritha, SRM, Thapar, LPU, etc which I did not consider. The reasons range from terrible fee to placement ratios, complete ignorance for student freedom, campus culture, location, etc. They aren&#x27;t bad collages per se, but I don&#x27;t recommend them if you share my perspective.&lt;&#x2F;p&gt;
&lt;p&gt;There are also other reputed private&#x2F;government aided collages in TN (eg. PSG Tech) and KA(eg. RVCE) where other states students can get admitted through their management&#x2F;NRI quota, however seats are limited, costly&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#3&quot;&gt;3&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;, and might need some hefty &quot;donations&quot;, so I didn&#x27;t explore it further.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;keam-colleges&quot;&gt;KEAM colleges&lt;&#x2F;h2&gt;
&lt;p&gt;This section is just for people from Kerala, others look into your own state&#x27;s entrance scene.&lt;&#x2F;p&gt;
&lt;p&gt;The KEAM ranklist is based 50% on your school board PCM marks and 50% on the entrance exam. The board marks are normalised between boards to keep things &quot;fair&quot;.&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#4&quot;&gt;4&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;&lt;&#x2F;p&gt;
&lt;p&gt;The top 5-6 colleges are pretty good, due to them being government colleges with excellent freedom and admirable quality of students. The rest are a bit hit or miss. Even if you don&#x27;t get a seat via the entrance test, you might still be able to get one via management seat.&lt;&#x2F;p&gt;
&lt;p&gt;I made a pdf of the list of engineering colleges in kerala in ascending order of cutoff ranks. Even though its just the list for CSE, it should give a rough idea of the status of colleges.&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;a rel=&quot;external&quot; title=&quot;KEAM Cutoff Ranks&quot; href=&quot;https:&#x2F;&#x2F;files.catbox.moe&#x2F;akc1ty.pdf&quot;&gt;KEAM Cutoffs for B.Tech CSE 2023 Third Phase.pdf&lt;&#x2F;a&gt;&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;Though I do believe some colleges require special mention.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;cet-thiruvanathapuram&quot;&gt;CET, Thiruvanathapuram&lt;&#x2F;h3&gt;
&lt;p&gt;College of Engineering Trivandrum, the most reputed and preferred college in Kerala. The only college with actually good placements. You&#x27;ll be studying with the creamy layer malayalee students.&lt;&#x2F;p&gt;
&lt;p&gt;The culture is as much or more important than the academics at CET. The campus politics scene is pretty lively too.&lt;&#x2F;p&gt;
&lt;p&gt;The brand value is real and very strong among the people of Kerala.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;gec-thrissur&quot;&gt;GEC, Thrissur&lt;&#x2F;h3&gt;
&lt;p&gt;The quality of students and campus infrastructure are  practically the same as CET, with some even preferring it due to it being more &quot;chill&quot;. Pretty fine college, with a pretty good reputation. The only thing to note is that placements aren&#x27;t quite as good as CET.&lt;&#x2F;p&gt;
&lt;p&gt;Close proximity to Vimala college is a plus, &lt;em&gt;if you know what i mean 😉.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;h3 id=&quot;mec-thrikkakkara&quot;&gt;MEC, Thrikkakkara&lt;&#x2F;h3&gt;
&lt;p&gt;Govt. Model Enginering College Thrikkakara has a decent track record of performing well, due to it only having circuital branches. The placements are actually slightly better than even CET (in CSE &amp;amp; ECE).&lt;&#x2F;p&gt;
&lt;p&gt;The biggest con is that the infrastructure is not that good. It&#x27;s a pretty small campus, and campus life itself isn&#x27;t comparable to others in its league.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;my-journey&quot;&gt;My Journey&lt;&#x2F;h2&gt;
&lt;p&gt;Background: I studied in the (PCM+CS) stream in Kerala Syllabus, and attended weekend coaching classes for JEE Mains. I am a general category male with no reservations whatsoever.&lt;&#x2F;p&gt;
&lt;p&gt;This was my preference list:&lt;&#x2F;p&gt;
&lt;blockquote&gt;
&lt;p&gt;IIT &amp;gt; NIT &amp;gt; IIIT (International) &amp;gt; BITS &amp;gt; IIIT (Indian) &amp;gt; SSN &amp;gt; MIT &amp;gt; CET &amp;gt; VIT &amp;gt; GEC &amp;gt; MEC &amp;gt; Other KEAM colleges.&lt;&#x2F;p&gt;
&lt;&#x2F;blockquote&gt;
&lt;p&gt;I had 93.98 in JEE Mains and was eligible to write the JEE Advanced. I had 3.1k in MET (Manipal), 14k in VITEEE (VIT). In 12th board exams I had A+ (90%+) on all subjects with 96% in PCM combined.&lt;&#x2F;p&gt;
&lt;p&gt;I did write UGEE &amp;amp; did apply via board marks at IIIT Hybderabad &amp;amp; Banglore, but did not clear cutoffs. I also didn&#x27;t clear JEE Advanced as I missed the cutoff by a small margin. I didn&#x27;t get BITS either.&lt;&#x2F;p&gt;
&lt;p&gt;Since my target was CS and CS only, JoSaa (IIT, NIT, IIIT&#x27;s) was out of the question. I did get CSE at VIT, Vellore (at Cat 4, ie 4.5lk per annum) and got admission there as a backup. Meanwhile I did attend the interview at SSN Chennai, but I wasn&#x27;t very sure I&#x27;d get it. At MIT I&#x27;d only get CSE at Banglore campus but I did get admission there as a backup and filed for refund at VIT.&lt;&#x2F;p&gt;
&lt;p&gt;At this time, I received the admission letter from SSN, and I took it.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;closing-remarks&quot;&gt;Closing Remarks&lt;&#x2F;h2&gt;
&lt;p&gt;As for me, I&#x27;m quite happy where I ended up, considering the amount of effort I put in. I shall post more updates as time goes on.&lt;&#x2F;p&gt;
&lt;p&gt;You should know that engineering is not for everyone and that it is &lt;strong&gt;heavily overrated&lt;&#x2F;strong&gt;. If you geniunly like Physics, Chemistry or Mathematics you should pursue a degree in pure sciences and go for research in IISER, IISC, etc.&lt;&#x2F;p&gt;
&lt;p&gt;I hope you make the correct decision for you and for the future of humanity.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;p&gt;&lt;b class=&quot;smallcaps&quot;&gt;Please share any thoughts&amp;#x2F;comments you have via mail at&lt;&#x2F;b&gt; &lt;a href=&quot;mailto:vicfic@pm.me&quot;&gt;vicfic@pm.me&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;1&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;1&lt;&#x2F;sup&gt;
&lt;p&gt;SSN has the 2nd highest cutoff rank in TNEA. &lt;a rel=&quot;external&quot; title=&quot;See the second one.&quot; href=&quot;https:&#x2F;&#x2F;files.catbox.moe&#x2F;l81wlz.pdf&quot;&gt;(see TNEA ranking)&lt;&#x2F;a&gt;, right after Anna University, Guindy. Tamil Nadu is the outlier because they don&#x27;t have an entrance test for their engineering colleges. They only consider your 12th board marks. Their normalisation isn&#x27;t too hard either, &lt;em&gt;unlike some states.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;2&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;2&lt;&#x2F;sup&gt;
&lt;p&gt;One quote by a third year CSE student at VIT Vellore stood out to me. &lt;a rel=&quot;external&quot; title=&quot;Conversation with a VIT student.&quot; href=&quot;https:&#x2F;&#x2F;files.catbox.moe&#x2F;7ol7zt.png&quot;&gt;See the last message in this image.&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;3&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;3&lt;&#x2F;sup&gt;
&lt;p&gt;The total tuition fee for CSE at RVCE is a whopping &lt;strong&gt;68 Lakhs&lt;&#x2F;strong&gt;. &lt;a rel=&quot;external&quot; title=&quot;Seventh option in the table&quot; href=&quot;https:&#x2F;&#x2F;rvce.edu.in&#x2F;sites&#x2F;default&#x2F;files&#x2F;1ST-YEAR-BE-PROGRAM-MANAGEMENT%20QUOTA%20ADMISSION%202024%20-%202025.pdf&quot;&gt;See their official fee structure&lt;&#x2F;a&gt;. Keep in mind that adding hostel fee and other expenses this can easily balloon to more than 80 lakhs. This is insanely overpriced and in no way justifiable.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;4&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;4&lt;&#x2F;sup&gt;
&lt;p&gt;Usually what happens is that the CBSE &amp;amp; ICSE people get more marks while Kerala State people lose their marks. (In my year 2024, State students lost 28 marks while CBSE got +8). This practice is unfair because even people with full marks get their marks reduced. How can a person get more than full marks? This leads me to the conclusion that the higher ups who make this decision all send their kids to CBSE schools and are unjustly giving them an edge over the everyday man&#x27;s kids who study in state schools.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>The Plight of a Kid Who Likes Computers</title>
        <published>2024-04-17T00:00:00+00:00</published>
        <updated>2024-04-17T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://vicfic.neocities.org/blog/plight/"/>
        <id>https://vicfic.neocities.org/blog/plight/</id>
        
        <content type="html" xml:base="https://vicfic.neocities.org/blog/plight/">&lt;b class=&quot;smallcaps&quot;&gt;This article was written from my perspective. Corrections are welcome.&lt;&#x2F;b&gt;
&lt;p&gt;&lt;b class=&quot;smallcaps&quot;&gt;I&amp;#x27;m a person who likes computers.&lt;&#x2F;b&gt; I really liked tinkering around with our old family laptop since I was 12, and had an RPi &lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#1&quot;&gt;1&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt; which further drove me learn more about this stuff. That is how I decided that I will study CS as my major in degree.&lt;&#x2F;p&gt;
&lt;p&gt;There is a very true stereotype in the middle class families of India that boys should be engineers and girls should be doctors (or nurses&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#2&quot;&gt;2&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;). Anything less will be considered as a dent to the family&#x27;s status. So if their child has atleast above average intelligence, every single parent pushes them into the most cut throat competitive and stupidly expensive &lt;em&gt;Entrance Coaching Centres.&lt;&#x2F;em&gt; Well of course, as a kid who genuinly likes computers, all these other unpassionate people as my competition is not good for me.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;state-of-entrance-coaching&quot;&gt;State of Entrance Coaching&lt;&#x2F;h2&gt;
&lt;p&gt;In the olden days, these used to be just weekend classes, and you could still get a pretty good rank just studying on your own without going for classes. As more people caught onto the false stereotype of doctor&#x2F;engineer, the amount of parents forcing their children to these coaching centres. Some of these coaching centres started tying up with private schools to form the so called &lt;em&gt;Residential Batches.&lt;&#x2F;em&gt; These residentially batches are very expensive (costing upwards of 500,000 INR), and only admit students who pass their own entrance exam (usually taken in 10th STD). And get this, most of these coaching instituitions have &lt;em&gt;Foundation Classes&lt;&#x2F;em&gt; for kids starting from 6th STD. And in its current state, most of the kids who get admitted to the residential batches are former Foundation class students.&lt;&#x2F;p&gt;
&lt;p&gt;So, in summery, to get into a good collage, a child needs to sacrifice his childhood and start learning to do the questions in Collage entrance examinations as soon as they turn &lt;strong&gt;12!&lt;&#x2F;strong&gt;&lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#3&quot;&gt;3&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Think about that for a moment.&lt;&#x2F;p&gt;
&lt;p&gt;Admission to collages should not a be a thing that a 12 year old kid should worry about. Heck, I think that at that age, most kids dont even know what they want to do after school. You should not give up your free time as a child for something you are not even sure if you want.&lt;&#x2F;p&gt;
&lt;p&gt;Continuing, suppose you follow the stereotypes, and finally write JEE (The primary exam for collage admissions), gets qualified for JEE Advanced (which usually requires &amp;gt;93 percentile), and get AIR 1.&lt;&#x2F;p&gt;
&lt;p&gt;What will you choose?&lt;&#x2F;p&gt;
&lt;p&gt;Computer-frkin-Science.&lt;&#x2F;p&gt;
&lt;p&gt;Even if for the past 6 years of your life you devoted to learn Physics, Chemistry and Maths, and genuinly liked learning them, you prolly would&#x27;ve gone to be a scientist or an aerspace engineering or something. Computer Science is not an enjoyable thing if you dont like it. And if you have no prior experience with it (eg programming), chances are you probably wouldn&#x27;t like it. It is not a classical engineering stream where physics and chemistry plays a role, it is different even the math is weird compared to other courses.&lt;&#x2F;p&gt;
&lt;p&gt;But, people will still flock to it. Why? Because money. CS has been the sole reason for the rise of the most highly valued companies in existence (Microsoft, Google, Apple, Amazon, etc). And Tech companies are good with generating cash, and are very very profitable.&lt;&#x2F;p&gt;
&lt;p&gt;So practically every high person with a good rank will try to get CS first, then looking on to other courses like Electronics, Mechanical, etc. The filling of seats occur according to the most common preference order, IITs &amp;gt; NITs &amp;gt; IIITs &amp;gt; State Government Collages &amp;gt; Private Collages.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;my-case&quot;&gt;My Case&lt;&#x2F;h2&gt;
&lt;p&gt;One thing you need to know about me is that I am not a hard worker. Sure I might spent 4 consecutive days grinding competitive programming problems, spent 2 weeks trying to make a full on 3D animated short film &lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#4&quot;&gt;4&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt;, etc but I only did those things because they were interesting to me, not because someone told me to, or because it&#x27;ll help me get a better job. One of my all time favourite quotes is &quot;Work Smart, not Hard&quot;. Now this might seem like a perfect reason to ignore me as another lazy kid who dont want to study, but I am not a kid who dont like studying. I like learning, I just dont like it when there are like a list of things I HAVE to learn. I belieave there are a lot of people who share the same ideology as me.&lt;&#x2F;p&gt;
&lt;p&gt;So, Like many smart kids at 6th standered, I too had to make the choice of whether go for the &lt;em&gt;Foundational Classes&lt;&#x2F;em&gt; of Entrance Coaching. Most other smart kids I knew went for it, and hearing their experiences and pointless &lt;sup class=&quot;footnote-reference&quot;&gt;&lt;a href=&quot;#5&quot;&gt;5&lt;&#x2F;a&gt;&lt;&#x2F;sup&gt; sacrifice of free time, I started doubt if that was a wise choice. I&#x27;m a person who values my free time.&lt;&#x2F;p&gt;
&lt;p&gt;So, my normal life continued, COVID-19 came and went, and lo and behold I reached 10th std. The entrance test for admission to the so called &lt;em&gt;Residential Batches&lt;&#x2F;em&gt; came. Since I was still recovering from the brainrot that quarentine left me, I ofcourse lost to the kids who went to the &lt;em&gt;Foundation Classes.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Welp, there goes my chance at IIT.
&quot;Dont worry&quot; I said to myself, &quot;You could still go to the weekend coaching classes! You&#x27;ll atleaset get into an NIT!&quot;.&lt;&#x2F;p&gt;
&lt;p&gt;Well, that was a lie. The current weekend coaching classes offered by these coaching instituitions are trash compared to the amount of classes, resources tests recieved by the students in &lt;em&gt;Residential Batches.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;JEE first attempt came and went, answer keys were published, and I checked my score. 36&#x2F;300.&lt;&#x2F;p&gt;
&lt;p&gt;I was flabbergasted.&lt;&#x2F;p&gt;
&lt;p&gt;Like, sure I was getting sub 100 scores in the model tests, but this was the lowest I ever got. Do mind that usually you need above 150 to get into some collage. Well, turns out my particular shift was super hard and after normalisation, my result was 80.2%. Still not good. In the current system, 8% and 80% are all worth the same, ie no admission.&lt;&#x2F;p&gt;
&lt;p&gt;Only ~5 people in my coaching class of ~50 people, got anything above 90 percentile in the first session. Non of them had 98+ percentiles. This proved that weekend coaching classes are a scam.&lt;&#x2F;p&gt;
&lt;p&gt;After that the board exams came. I think I messed that up too. Overall moral was down very much. My aspirations started to seem more and more like an unattainable dream.&lt;&#x2F;p&gt;
&lt;p&gt;As of the writing of this article, JEE is over and results have not come in. Private Collage examinations are currently being held. There is also a dim ray of light from the exam KEAM (the entrance test for admission to the Kerala State owned collages), but I&#x27;m highly sceptical as they consider our 12 School Board exam marks as 50% of the ranking, because there is a high chance I have not enough marks there.&lt;&#x2F;p&gt;
&lt;p&gt;So, as of April 2024, I have zero idea as to where I am gonna be next year. And I fully blame it on the current system.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;cons-of-the-current-system&quot;&gt;Cons of the Current System.&lt;&#x2F;h2&gt;
&lt;p&gt;As you might expect, forcefully pushing every child to the science field and pressing every last child with a hint of genius to give up their social life to grind for acceptence in IIT&#x27;s, turned out to be about as well as you expect. More then half of the people currently studying CS in the top collages in India, have no interest or enthusiasm for studying it. 90% of them have no prior experience nor passion for the subject.&lt;&#x2F;p&gt;
&lt;p&gt;And it is causing major issues. The quality of the graduates of IIT&#x27;s have been steadily decreasing for years now. A comment made by the &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;timesofindia.indiatimes.com&#x2F;india&#x2F;poor-quality-of-students-entering-iits-narayana-murthy&#x2F;articleshow&#x2F;10217469.cms&quot;&gt;Chariman of Infosys&lt;&#x2F;a&gt; sparked a discussion a while ago. Recently another case of a &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;www.ndtv.com&#x2F;feature&#x2F;startup-founder-slams-iit-candidate-who-didnt-know-95-of-things-on-his-resume-5360374&quot;&gt;Startup Founder&lt;&#x2F;a&gt; revealing that an IIT graduate faked his resume with skils he did not know became another heated issue.&lt;&#x2F;p&gt;
&lt;p&gt;These are just two of the most prominent events which stuck in my mind, but this is just the tip of the iceberg. Another news story which made a lot of noice was that 36% of IIT Graduates &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;www.indiatoday.in&#x2F;education-today&#x2F;news&#x2F;story&#x2F;concerns-mount-as-iit-bombay-left-with-36-graduates-without-job-offers-2522872-2024-04-03&quot;&gt;did not get placements&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Now, avoiding the case of IIT&#x27;s and looking at the whole engineering sphere of India, it is very evident that the quality of the average Indian Engineer has decreased. I fully and utterly attribute this to the single cause ie the over competitiveness and rise of coaching instituitions and the stereotype mentality of parents and kids.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;tldr&quot;&gt;TLDR;&lt;&#x2F;h2&gt;
&lt;p&gt;Current system is bad. Passionate people can&#x27;t get into good collages. Good collages have unpassionate people who graduate to be bad engineers. They become unemployed. This system is bad, and need to be changed.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;b class=&quot;smallcaps&quot;&gt;Please share any thoughts&amp;#x2F;comments you have via mail at&lt;&#x2F;b&gt; &lt;a href=&quot;mailto:vicfic@pm.me&quot;&gt;vicfic@pm.me&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;1&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;1&lt;&#x2F;sup&gt;
&lt;p&gt;The Raspberry Pi 3B to be exact. It was a beautiful pieace of technology. The culmination of human ingenuity in the palm of my hands! And I can do whatever I want with it! &amp;lt;insert megalomaniacal laugh&amp;gt;&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;2&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;2&lt;&#x2F;sup&gt;
&lt;p&gt;The amount of people migrating to countries like US, Canada, UK, Germany solely through a nurse who got a work visa is staggering.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;3&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;3&lt;&#x2F;sup&gt;
&lt;p&gt;I have a couple of friends who went through this saga, and they can vouch for me on the accuracy of this sentence.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;4&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;4&lt;&#x2F;sup&gt;
&lt;p&gt;I never got around to completing it because after making a couple of models and trying to make a pilot trailer, I figured out that this project is way more bigger then I anticapated. A rookie mistake.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
&lt;div class=&quot;footnote-definition&quot; id=&quot;5&quot;&gt;&lt;sup class=&quot;footnote-definition-label&quot;&gt;5&lt;&#x2F;sup&gt;
&lt;p&gt;Well, studying for an exam which he&#x27;s gonna write 6 years later IS pointless from the perspective of a kid.&lt;&#x2F;p&gt;
&lt;&#x2F;div&gt;
</content>
        
    </entry>
    <entry xml:lang="en">
        <title>On The Creation of This Website</title>
        <published>2024-04-15T00:00:00+00:00</published>
        <updated>2024-04-15T00:00:00+00:00</updated>
        
        <author>
          <name>
            
              Unknown
            
          </name>
        </author>
        
        <link rel="alternate" type="text/html" href="https://vicfic.neocities.org/blog/first/"/>
        <id>https://vicfic.neocities.org/blog/first/</id>
        
        <content type="html" xml:base="https://vicfic.neocities.org/blog/first/">&lt;p&gt;“Writing is a socially acceptable form of schizophrenia.”&lt;&#x2F;p&gt;
&lt;p&gt;― E.L. Doctorow&lt;&#x2F;p&gt;
&lt;p&gt;This website was made to quench my need to publish thoughts on my head without fear of censorship or obsession over likes or followers.&lt;&#x2F;p&gt;
&lt;p&gt;I use the &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;www.getzola.org&#x2F;&quot;&gt;Zola&lt;&#x2F;a&gt; static site generator with a custom html&#x2F;css template a wrote myself. I use neocities&#x27;s free shared hosting as it seemed like the most easiest way to publish a site.&lt;&#x2F;p&gt;
&lt;p&gt;I started out deciding the site was going to be very minimal, but once I saw the font &lt;a rel=&quot;external&quot; href=&quot;https:&#x2F;&#x2F;www.exljbris.com&#x2F;fontin.html&quot;&gt;&lt;strong&gt;Fontin&lt;&#x2F;strong&gt;&lt;&#x2F;a&gt;, I knew I had to use it. As a perk, it also comes with a &lt;b class=&quot;smallcaps&quot;&gt;Small Caps Variant!&lt;&#x2F;b&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Weirdly enough it looked quit good with JetBrains Mono, much better then I expected.&lt;&#x2F;p&gt;
&lt;p&gt;I haven&#x27;t yet decided on the topics I&#x27;m going to write. So the first few posts might be from wildly different areas.&lt;&#x2F;p&gt;
&lt;p&gt;I&#x27;d be delighted if you add my RSS feed to your reader! 😁&lt;&#x2F;p&gt;
</content>
        
    </entry>
</feed>
