diff --git a/assets/css/style.css b/assets/css/style.css index 8df3e96..597f2f3 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1,11 +1,13 @@ /* --- Global Styles & Variables --- */ -/* --- Local Font Declarations --- */ +/* --- Optimized Font Declarations --- */ @font-face { font-family: 'Satoshi'; src: url('/fonts/Satoshi-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; + font-preload: true; + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } @font-face { @@ -14,6 +16,40 @@ font-weight: 100 900; font-style: normal; font-display: swap; + font-preload: true; + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +} + +/* Font loading optimization */ +.fonts-loaded body { + font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; +} + +.fonts-loaded .hero-headline, +.fonts-loaded .logo { + font-family: 'Unbounded', sans-serif; +} + +/* Loading state management */ +body.loading { + opacity: 0.99; +} + +body.loaded { + opacity: 1; + transition: opacity 0.2s ease; +} + +/* Prevent layout shifts during loading */ +.loading .hero-headline, +.loading .post-item { + opacity: 0.8; +} + +.loaded .hero-headline, +.loaded .post-item { + opacity: 1; + transition: opacity 0.3s ease; } :root { @@ -283,9 +319,16 @@ a { padding: 80px 0; } +.hero-arrow { + margin-top: 20px; + text-align: center; +} + + + .hero-headline { font-family: 'Unbounded', sans-serif; - font-size: 5rem; /* Adjust as needed */ + font-size: 4.2rem; /* Adjusted for 2-line layout */ line-height: 1.1; text-transform: uppercase; margin: 0; @@ -295,8 +338,8 @@ a { /* --- Interactive Elements (CSS Version) --- */ .interactive-o { display: inline-block; - width: 1em; - height: 0.4em; + width: 1.5em; + height: 0.6em; background: linear-gradient(120deg, var(--accent-color-yellow), var(--accent-color-blue)); border-radius: 50px; vertical-align: middle; @@ -306,15 +349,15 @@ a { } .interactive-arrow { - display: inline-block; - width: 0.8em; - height: 0.8em; - background: linear-gradient(160deg, var(--accent-color-blue), #6DD5FA); - clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%); - vertical-align: middle; - position: relative; - top: 0.1em; - margin-left: -0.2em; + display: inline-block !important; + width: 2.5em !important; + height: 2.5em !important; + background: linear-gradient(160deg, var(--accent-color-blue), #6DD5FA) !important; + clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 100%, 0% 50%) !important; + vertical-align: middle !important; + position: relative !important; + top: 0.1em !important; + margin-left: -0.2em !important; } /* --- Post List (For later) --- */ diff --git a/assets/js/main.js b/assets/js/main.js index 037ad80..e011df2 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -60,11 +60,21 @@ function optimizeFontLoading() { if ('fonts' in document) { Promise.all([ - document.fonts.load('400 1em Inter'), - document.fonts.load('700 1em Unbounded') + document.fonts.load('400 1em Satoshi'), + document.fonts.load('700 1em Unbounded'), + document.fonts.load('400 1em "Unbounded"'), + document.fonts.load('700 1em "Unbounded"') ]).then(() => { document.documentElement.classList.add('fonts-loaded'); + }).catch(() => { + // Fallback if font loading fails + document.documentElement.classList.add('fonts-loaded'); }); + } else { + // Fallback for browsers without Font Loading API + setTimeout(() => { + document.documentElement.classList.add('fonts-loaded'); + }, 100); } } @@ -88,8 +98,27 @@ }); } - // Performance: Add loading states + // Performance: Add loading states and prevent layout shifts function initLoadingStates() { + // Add loading class to body initially + document.body.classList.add('loading'); + + // Remove loading class after critical resources are loaded + window.addEventListener('load', () => { + setTimeout(() => { + document.body.classList.remove('loading'); + document.body.classList.add('loaded'); + }, 100); + }); + + // Fallback if load event doesn't fire + setTimeout(() => { + if (document.body.classList.contains('loading')) { + document.body.classList.remove('loading'); + document.body.classList.add('loaded'); + } + }, 3000); + const elements = document.querySelectorAll('.hero-headline, .post-item'); elements.forEach(element => { element.classList.add('loading'); diff --git a/hugo_stats.json b/hugo_stats.json index 2b1bbd1..fff9c7c 100644 --- a/hugo_stats.json +++ b/hugo_stats.json @@ -25,7 +25,6 @@ "main", "meta", "nav", - "noscript", "ol", "p", "picture", @@ -49,6 +48,7 @@ "author-bio", "container", "content", + "hero-arrow", "hero-headline", "hero-section", "interactive-arrow", diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index ff5a92c..aa0f808 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -1,27 +1,31 @@ + + + {{ partial "head-seo.html" . }} - + {{ $style := resources.Get "css/style.css" | resources.Minify | resources.Fingerprint }} - - + + - - - {{ if .Site.Params.googleAnalytics }} @@ -56,16 +60,19 @@ + {{ $js := resources.Get "js/main.js" | resources.Minify | resources.Fingerprint }} - - {{ $analyticsTest := resources.Get "js/analytics-test.js" | resources.Minify }} - - - + {{ if .Site.Params.vercelAnalytics }} {{ end }} + + + {{ if hugo.IsServer }} + {{ $analyticsTest := resources.Get "js/analytics-test.js" | resources.Minify }} + + {{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index ee9a7cc..27c9718 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -2,8 +2,11 @@

THE ONLY BLOGS YOU
- WOULD LOVE TO READ + WOULD LOVE TO READ

+
+ +
diff --git a/layouts/partials/head-seo.html b/layouts/partials/head-seo.html index 0a9f482..ce64533 100644 --- a/layouts/partials/head-seo.html +++ b/layouts/partials/head-seo.html @@ -128,20 +128,229 @@ + + + - + diff --git a/public/.DS_Store b/public/.DS_Store deleted file mode 100644 index 035545b..0000000 Binary files a/public/.DS_Store and /dev/null differ diff --git a/public/categories/design/index.html b/public/categories/design/index.html index 3f1ea13..df97104 100644 --- a/public/categories/design/index.html +++ b/public/categories/design/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Design - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Design

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/categories/design/index.xml b/public/categories/design/index.xml index 52de285..6fe87c3 100644 --- a/public/categories/design/index.xml +++ b/public/categories/design/index.xml @@ -1,19 +1,12 @@ - - - - Design on IDEA LABS - http://localhost:1313/categories/design/ - Recent content in Design on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - +Design on IDEA LABShttps://blog.nischalskanda.tech/categories/design/Recent content in Design on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> \ No newline at end of file diff --git a/public/categories/design/page/1/index.html b/public/categories/design/page/1/index.html index 1e5c8d7..b131c11 100644 --- a/public/categories/design/page/1/index.html +++ b/public/categories/design/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/categories/design/ - - - - - - +https://blog.nischalskanda.tech/categories/design/ \ No newline at end of file diff --git a/public/categories/health/index.html b/public/categories/health/index.html index 775b00d..93d535d 100644 --- a/public/categories/health/index.html +++ b/public/categories/health/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Health - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Health

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/categories/health/index.xml b/public/categories/health/index.xml index a9efdf8..40dee34 100644 --- a/public/categories/health/index.xml +++ b/public/categories/health/index.xml @@ -1,19 +1,11 @@ - - - - Health on IDEA LABS - http://localhost:1313/categories/health/ - Recent content in Health on IDEA LABS - Hugo - en-us - Mon, 28 Jul 2025 20:30:07 +0530 - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +Health on IDEA LABShttps://blog.nischalskanda.tech/categories/health/Recent content in Health on IDEA LABSHugoen-usMon, 28 Jul 2025 20:30:07 +0530Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/categories/health/page/1/index.html b/public/categories/health/page/1/index.html index db6fdc9..3fa3931 100644 --- a/public/categories/health/page/1/index.html +++ b/public/categories/health/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/categories/health/ - - - - - - +https://blog.nischalskanda.tech/categories/health/ \ No newline at end of file diff --git a/public/categories/index.html b/public/categories/index.html index 7fc2dbc..86bfb6a 100644 --- a/public/categories/index.html +++ b/public/categories/index.html @@ -1,173 +1,6 @@ - - - - - - - - - - - - - - -Categories - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - - - - - - - -
- -
-
- - - - - - - - - - - - - - +Categories

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/categories/index.xml b/public/categories/index.xml index 93d63b3..401788f 100644 --- a/public/categories/index.xml +++ b/public/categories/index.xml @@ -1,40 +1 @@ - - - - Categories on IDEA LABS - http://localhost:1313/categories/ - Recent content in Categories on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Design - http://localhost:1313/categories/design/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/categories/design/ - - - - Privacy - http://localhost:1313/categories/privacy/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/categories/privacy/ - - - - Technology - http://localhost:1313/categories/technology/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/categories/technology/ - - - - Health - http://localhost:1313/categories/health/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/categories/health/ - - - - +Categories on IDEA LABShttps://blog.nischalskanda.tech/categories/Recent content in Categories on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Designhttps://blog.nischalskanda.tech/categories/design/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/categories/design/Privacyhttps://blog.nischalskanda.tech/categories/privacy/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/categories/privacy/Technologyhttps://blog.nischalskanda.tech/categories/technology/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/categories/technology/Healthhttps://blog.nischalskanda.tech/categories/health/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/categories/health/ \ No newline at end of file diff --git a/public/categories/page/1/index.html b/public/categories/page/1/index.html index 83884ac..6db9711 100644 --- a/public/categories/page/1/index.html +++ b/public/categories/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/categories/ - - - - - - +https://blog.nischalskanda.tech/categories/ \ No newline at end of file diff --git a/public/categories/privacy/index.html b/public/categories/privacy/index.html index ea8ab62..7e1330d 100644 --- a/public/categories/privacy/index.html +++ b/public/categories/privacy/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Privacy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Privacy

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/categories/privacy/index.xml b/public/categories/privacy/index.xml index b16d21e..e3de8a4 100644 --- a/public/categories/privacy/index.xml +++ b/public/categories/privacy/index.xml @@ -1,19 +1,12 @@ - - - - Privacy on IDEA LABS - http://localhost:1313/categories/privacy/ - Recent content in Privacy on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - +Privacy on IDEA LABShttps://blog.nischalskanda.tech/categories/privacy/Recent content in Privacy on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> \ No newline at end of file diff --git a/public/categories/privacy/page/1/index.html b/public/categories/privacy/page/1/index.html index 55f0377..23a1218 100644 --- a/public/categories/privacy/page/1/index.html +++ b/public/categories/privacy/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/categories/privacy/ - - - - - - +https://blog.nischalskanda.tech/categories/privacy/ \ No newline at end of file diff --git a/public/categories/technology/index.html b/public/categories/technology/index.html index 286dec9..672a2fd 100644 --- a/public/categories/technology/index.html +++ b/public/categories/technology/index.html @@ -1,163 +1,6 @@ - - - - - - - - - - - - - - -Technology - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - - - -
- -
-
- - - - - - - - - - - - - - +Technology

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/categories/technology/index.xml b/public/categories/technology/index.xml index ae9b926..79ddac5 100644 --- a/public/categories/technology/index.xml +++ b/public/categories/technology/index.xml @@ -1,26 +1,22 @@ - - - - Technology on IDEA LABS - http://localhost:1313/categories/technology/ - Recent content in Technology on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +Technology on IDEA LABShttps://blog.nischalskanda.tech/categories/technology/Recent content in Technology on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/categories/technology/page/1/index.html b/public/categories/technology/page/1/index.html index 1ad0068..2a3391c 100644 --- a/public/categories/technology/page/1/index.html +++ b/public/categories/technology/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/categories/technology/ - - - - - - +https://blog.nischalskanda.tech/categories/technology/ \ No newline at end of file diff --git a/public/css/style.min.7d6d4053a846e7be7c72e34acc9426ce3de97d2b963fcd4863832b8f6609b87a.css b/public/css/style.min.7d6d4053a846e7be7c72e34acc9426ce3de97d2b963fcd4863832b8f6609b87a.css deleted file mode 100644 index e7e92b2..0000000 --- a/public/css/style.min.7d6d4053a846e7be7c72e34acc9426ce3de97d2b963fcd4863832b8f6609b87a.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:satoshi;src:url(/fonts/Satoshi-Regular.otf)format('opentype');font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:unbounded;src:url(/fonts/Unbounded-VariableFont_wght.ttf)format('truetype-variations');font-weight:100 900;font-style:normal;font-display:swap}:root{--background-color:#F8F7F3;--text-color:#1a1a1a;--accent-color-yellow:#FFD700;--accent-color-blue:#0099FF;--font-body:'Satoshi', sans-serif;--font-heading:'Unbounded', sans-serif;--surface-color:#ffffff;--border-color:rgba(0, 0, 0, 0.1);--shadow-color:rgba(0, 0, 0, 0.1);--glass-bg:rgba(255, 255, 255, 0.2);--glass-border:rgba(255, 255, 255, 0.3);--post-border:#e0e0e0}[data-theme=dark]{--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}@media(prefers-color-scheme:dark){:root:not([data-theme]){--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}}body,.site-header,.container{transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease}.theme-text,.logo,.hero-headline,h1,h2,h3,h4,h5,h6,p,a,.post-item{transition:none !important}.theme-toggle{transition:color .1s ease}.theme-toggle:hover{transition:color .1s ease}body{background-color:var(--background-color);color:var(--text-color);font-family:var(--font-body);margin:0;padding-top:80px}.container{max-width:1200px;margin:0 auto;padding:0 40px}a{color:var(--text-color);text-decoration:none}.site-header{display:flex;justify-content:center;align-items:center;padding:20px 40px;position:fixed;top:0;left:0;right:0;background:rgba(248,247,243,.95);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);z-index:1000;border-bottom:1px solid var(--border-color);transition:all .3s ease;width:100%;max-width:100vw;box-sizing:border-box}.site-header::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:inherit;backdrop-filter:inherit;-webkit-backdrop-filter:inherit;border-bottom:inherit;z-index:-1}[data-theme=dark] .site-header{background:rgba(10,10,10,.95)}.site-header.scrolled{background:rgba(248,247,243,.98);box-shadow:0 2px 20px var(--shadow-color);padding:15px 40px}[data-theme=dark] .site-header.scrolled{background:rgba(10,10,10,.98)}@media(max-width:768px){.site-header.scrolled{padding:12px 20px;height:55px}}@media(max-width:480px){.site-header.scrolled{padding:10px 15px;height:45px}}.theme-toggle{background:0 0;border:none;padding:8px 12px;cursor:pointer;font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);position:absolute;left:20px;top:50%;transform:translateY(-50%);transition:none !important;z-index:1001}.theme-toggle:hover{color:var(--accent-color-blue)}[data-theme=dark] .theme-toggle:hover{color:var(--accent-color-yellow)}.theme-text{transition:none !important}.theme-text-light{display:none}.theme-text-dark{display:inline}[data-theme=dark] .theme-text-light{display:inline}[data-theme=dark] .theme-text-dark{display:none}.theme-toggle:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .theme-toggle:focus{outline-color:var(--accent-color-yellow)}.main-site-link{font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);text-decoration:none;position:absolute;right:20px;top:50%;transform:translateY(-50%);padding:8px 12px;border-radius:4px;transition:color .1s ease,background-color .1s ease;z-index:1001}.main-site-link:hover{color:var(--accent-color-blue);background-color:rgba(0,153,255,.1)}[data-theme=dark] .main-site-link:hover{color:var(--accent-color-yellow);background-color:rgba(255,215,0,.1)}.main-site-link:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .main-site-link:focus{outline-color:var(--accent-color-yellow)}.logo{font-weight:700;font-family:unbounded,sans-serif;font-size:1.5rem;letter-spacing:1px;position:absolute;left:50%;transform:translateX(-50%);color:var(--text-color);text-decoration:none;z-index:999}.hero-section{text-align:center;padding:80px 0}.hero-headline{font-family:unbounded,sans-serif;font-size:5rem;line-height:1.1;text-transform:uppercase;margin:0;font-weight:700}.interactive-o{display:inline-block;width:1em;height:.4em;background:linear-gradient(120deg,var(--accent-color-yellow),var(--accent-color-blue));border-radius:50px;vertical-align:middle;margin:0 -.05em;position:relative;top:-.1em}.interactive-arrow{display:inline-block;width:.8em;height:.8em;background:linear-gradient(160deg,var(--accent-color-blue),#6DD5FA);clip-path:polygon(0% 0%,100% 0%,100% 50%,50% 100%,0% 50%);vertical-align:middle;position:relative;top:.1em;margin-left:-.2em}.post-list{margin-top:60px}.post-item{padding:20px 0;border-bottom:1px solid var(--post-border)}.post-item h2 a{font-family:unbounded,sans-serif}.post-content{max-width:800px;margin:60px auto}.post-content h1{font-family:unbounded,sans-serif;font-size:3rem}.post-content .content{font-size:1.1rem;line-height:1.7;font-family:var(--font-body)}html,body{max-width:100vw;overflow-x:hidden}@media(max-width:768px){body{padding-top:70px}.container{padding:0 20px;max-width:100%}.site-header{padding:15px 20px;height:60px;justify-content:center;position:fixed}.theme-toggle{left:15px;font-size:12px;padding:6px 10px;transform:translateY(-50%)}.main-site-link{right:15px;font-size:12px;padding:6px 10px}.logo{font-size:1.3rem;position:relative;left:0;transform:none}.hero-headline{font-size:3rem;line-height:1.2}.post-content h1{font-size:2rem}}@media(max-width:480px){body{padding-top:60px}.container{padding:0 15px;max-width:100%}.site-header{padding:12px 15px;height:50px;min-height:50px;justify-content:center;align-items:center;flex-direction:row;gap:0}.theme-toggle{left:10px;font-size:11px;padding:5px 8px;position:absolute;top:50%;transform:translateY(-50%)}.main-site-link{right:10px;font-size:11px;padding:5px 8px}.logo{font-size:1.1rem;position:relative;left:0;transform:none;margin:0}.hero-headline{font-size:2.2rem;line-height:1.3;word-break:break-word;hyphens:auto}.post-content{margin:30px auto}.post-content h1{font-size:1.6rem;line-height:1.3}}.responsive-image,.simple-image{max-width:100%;overflow:hidden}.responsive-image img,.simple-image img{width:100%;height:auto;object-fit:cover;transition:transform .3s ease}.responsive-image:hover img{transform:scale(1.02)}.post-content img{max-width:100%;height:auto;border-radius:6px;box-shadow:0 2px 8px rgba(0,0,0,.1);margin:1rem 0}.post-content figure{margin:2rem 0;text-align:center}.post-content figcaption{margin-top:.5rem;font-size:.9rem;color:var(--text-color);opacity:.7;font-style:italic}[data-theme=dark] .post-content img{box-shadow:0 2px 8px rgba(255,255,255,.1)}@media(max-width:768px){.responsive-image,.simple-image{margin:1rem -1rem}.responsive-image img,.simple-image img{border-radius:0}}.table-container{margin:2rem 0;overflow-x:auto;border-radius:6px;border:1px solid var(--border-color)}.post-content table{width:100%;border-collapse:collapse;margin:0;background-color:var(--surface-color);font-size:.95rem;min-width:600px}.post-content thead{background-color:var(--surface-color);border-bottom:2px solid var(--border-color)}.post-content th{padding:1rem 1.5rem;text-align:left;font-weight:600;font-size:.9rem;color:var(--text-color);border-right:1px solid var(--border-color);border:none}.post-content th:last-child{border-right:none}.post-content td{padding:1rem 1.5rem;border-bottom:1px solid var(--border-color);border-right:1px solid var(--border-color);vertical-align:top;line-height:1.5;color:var(--text-color)}.post-content td:last-child{border-right:none}.post-content tbody tr{transition:background-color .2s ease}.post-content tbody tr:hover{background-color:rgba(0,0,0,2%)}.post-content tbody tr:last-child td{border-bottom:none}.post-content tbody tr:nth-child(even){background-color:rgba(0,0,0,1%)}[data-theme=dark] .post-content tbody tr:nth-child(even){background-color:rgba(255,255,255,1%)}[data-theme=dark] .post-content tbody tr:hover{background-color:rgba(255,255,255,2%)}.post-content td:first-child{font-weight:500}@media(max-width:768px){.post-content table{font-size:.85rem}.post-content th,.post-content td{padding:.8rem 1rem}.post-content th{font-size:.8rem}}[data-theme=dark] .table-container{border-color:rgba(255,255,255,.1)} \ No newline at end of file diff --git a/public/css/style.min.ebb59924f5be483cc2dcae3f1fa7b598a172cb274fdb994f995ed799cc8c6c56.css b/public/css/style.min.ebb59924f5be483cc2dcae3f1fa7b598a172cb274fdb994f995ed799cc8c6c56.css new file mode 100644 index 0000000..3a3f103 --- /dev/null +++ b/public/css/style.min.ebb59924f5be483cc2dcae3f1fa7b598a172cb274fdb994f995ed799cc8c6c56.css @@ -0,0 +1 @@ +@font-face{font-family:satoshi;src:url(/fonts/Satoshi-Regular.otf)format('opentype');font-weight:400;font-style:normal;font-display:swap;font-preload:true;unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:unbounded;src:url(/fonts/Unbounded-VariableFont_wght.ttf)format('truetype-variations');font-weight:100 900;font-style:normal;font-display:swap;font-preload:true;unicode-range:U+??,U+131,U+152-153,U+2BB-2BC,U+2C6,U+2DA,U+2DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.fonts-loaded body{font-family:satoshi,-apple-system,BlinkMacSystemFont,segoe ui,Roboto,sans-serif}.fonts-loaded .hero-headline,.fonts-loaded .logo{font-family:unbounded,sans-serif}body.loading{opacity:.99}body.loaded{opacity:1;transition:opacity .2s ease}.loading .hero-headline,.loading .post-item{opacity:.8}.loaded .hero-headline,.loaded .post-item{opacity:1;transition:opacity .3s ease}:root{--background-color:#F8F7F3;--text-color:#1a1a1a;--accent-color-yellow:#FFD700;--accent-color-blue:#0099FF;--font-body:'Satoshi', sans-serif;--font-heading:'Unbounded', sans-serif;--surface-color:#ffffff;--border-color:rgba(0, 0, 0, 0.1);--shadow-color:rgba(0, 0, 0, 0.1);--glass-bg:rgba(255, 255, 255, 0.2);--glass-border:rgba(255, 255, 255, 0.3);--post-border:#e0e0e0}[data-theme=dark]{--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}@media(prefers-color-scheme:dark){:root:not([data-theme]){--background-color:#0a0a0a;--text-color:#f5f5f5;--accent-color-yellow:#FFD700;--accent-color-blue:#00B4FF;--surface-color:#1a1a1a;--border-color:rgba(255, 255, 255, 0.1);--shadow-color:rgba(0, 0, 0, 0.3);--glass-bg:rgba(255, 255, 255, 0.05);--glass-border:rgba(255, 255, 255, 0.1);--post-border:#333333}}body,.site-header,.container{transition:background-color .15s ease,border-color .15s ease,box-shadow .15s ease}.theme-text,.logo,.hero-headline,h1,h2,h3,h4,h5,h6,p,a,.post-item{transition:none !important}.theme-toggle{transition:color .1s ease}.theme-toggle:hover{transition:color .1s ease}body{background-color:var(--background-color);color:var(--text-color);font-family:var(--font-body);margin:0;padding-top:80px}.container{max-width:1200px;margin:0 auto;padding:0 40px}a{color:var(--text-color);text-decoration:none}.site-header{display:flex;justify-content:center;align-items:center;padding:20px 40px;position:fixed;top:0;left:0;right:0;background:rgba(248,247,243,.95);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);z-index:1000;border-bottom:1px solid var(--border-color);transition:all .3s ease;width:100%;max-width:100vw;box-sizing:border-box}.site-header::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:inherit;backdrop-filter:inherit;-webkit-backdrop-filter:inherit;border-bottom:inherit;z-index:-1}[data-theme=dark] .site-header{background:rgba(10,10,10,.95)}.site-header.scrolled{background:rgba(248,247,243,.98);box-shadow:0 2px 20px var(--shadow-color);padding:15px 40px}[data-theme=dark] .site-header.scrolled{background:rgba(10,10,10,.98)}@media(max-width:768px){.site-header.scrolled{padding:12px 20px;height:55px}}@media(max-width:480px){.site-header.scrolled{padding:10px 15px;height:45px}}.theme-toggle{background:0 0;border:none;padding:8px 12px;cursor:pointer;font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);position:absolute;left:20px;top:50%;transform:translateY(-50%);transition:none !important;z-index:1001}.theme-toggle:hover{color:var(--accent-color-blue)}[data-theme=dark] .theme-toggle:hover{color:var(--accent-color-yellow)}.theme-text{transition:none !important}.theme-text-light{display:none}.theme-text-dark{display:inline}[data-theme=dark] .theme-text-light{display:inline}[data-theme=dark] .theme-text-dark{display:none}.theme-toggle:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .theme-toggle:focus{outline-color:var(--accent-color-yellow)}.main-site-link{font-family:var(--font-heading);font-size:14px;font-weight:500;color:var(--text-color);text-decoration:none;position:absolute;right:20px;top:50%;transform:translateY(-50%);padding:8px 12px;border-radius:4px;transition:color .1s ease,background-color .1s ease;z-index:1001}.main-site-link:hover{color:var(--accent-color-blue);background-color:rgba(0,153,255,.1)}[data-theme=dark] .main-site-link:hover{color:var(--accent-color-yellow);background-color:rgba(255,215,0,.1)}.main-site-link:focus{outline:2px solid var(--accent-color-blue);outline-offset:2px}[data-theme=dark] .main-site-link:focus{outline-color:var(--accent-color-yellow)}.logo{font-weight:700;font-family:unbounded,sans-serif;font-size:1.5rem;letter-spacing:1px;position:absolute;left:50%;transform:translateX(-50%);color:var(--text-color);text-decoration:none;z-index:999}.hero-section{text-align:center;padding:80px 0}.hero-arrow{margin-top:20px;text-align:center}.hero-headline{font-family:unbounded,sans-serif;font-size:4.2rem;line-height:1.1;text-transform:uppercase;margin:0;font-weight:700}.interactive-o{display:inline-block;width:1.5em;height:.6em;background:linear-gradient(120deg,var(--accent-color-yellow),var(--accent-color-blue));border-radius:50px;vertical-align:middle;margin:0 -.05em;position:relative;top:-.1em}.interactive-arrow{display:inline-block !important;width:2.5em !important;height:2.5em !important;background:linear-gradient(160deg,var(--accent-color-blue),#6DD5FA) !important;clip-path:polygon(0% 0%,100% 0%,100% 50%,50% 100%,0% 50%) !important;vertical-align:middle !important;position:relative !important;top:.1em !important;margin-left:-.2em !important}.post-list{margin-top:60px}.post-item{padding:20px 0;border-bottom:1px solid var(--post-border)}.post-item h2 a{font-family:unbounded,sans-serif}.post-content{max-width:800px;margin:60px auto}.post-content h1{font-family:unbounded,sans-serif;font-size:3rem}.post-content .content{font-size:1.1rem;line-height:1.7;font-family:var(--font-body)}html,body{max-width:100vw;overflow-x:hidden}@media(max-width:768px){body{padding-top:70px}.container{padding:0 20px;max-width:100%}.site-header{padding:15px 20px;height:60px;justify-content:center;position:fixed}.theme-toggle{left:15px;font-size:12px;padding:6px 10px;transform:translateY(-50%)}.main-site-link{right:15px;font-size:12px;padding:6px 10px}.logo{font-size:1.3rem;position:relative;left:0;transform:none}.hero-headline{font-size:3rem;line-height:1.2}.post-content h1{font-size:2rem}}@media(max-width:480px){body{padding-top:60px}.container{padding:0 15px;max-width:100%}.site-header{padding:12px 15px;height:50px;min-height:50px;justify-content:center;align-items:center;flex-direction:row;gap:0}.theme-toggle{left:10px;font-size:11px;padding:5px 8px;position:absolute;top:50%;transform:translateY(-50%)}.main-site-link{right:10px;font-size:11px;padding:5px 8px}.logo{font-size:1.1rem;position:relative;left:0;transform:none;margin:0}.hero-headline{font-size:2.2rem;line-height:1.3;word-break:break-word;hyphens:auto}.post-content{margin:30px auto}.post-content h1{font-size:1.6rem;line-height:1.3}}.responsive-image,.simple-image{max-width:100%;overflow:hidden}.responsive-image img,.simple-image img{width:100%;height:auto;object-fit:cover;transition:transform .3s ease}.responsive-image:hover img{transform:scale(1.02)}.post-content img{max-width:100%;height:auto;border-radius:6px;box-shadow:0 2px 8px rgba(0,0,0,.1);margin:1rem 0}.post-content figure{margin:2rem 0;text-align:center}.post-content figcaption{margin-top:.5rem;font-size:.9rem;color:var(--text-color);opacity:.7;font-style:italic}[data-theme=dark] .post-content img{box-shadow:0 2px 8px rgba(255,255,255,.1)}@media(max-width:768px){.responsive-image,.simple-image{margin:1rem -1rem}.responsive-image img,.simple-image img{border-radius:0}}.table-container{margin:2rem 0;overflow-x:auto;border-radius:6px;border:1px solid var(--border-color)}.post-content table{width:100%;border-collapse:collapse;margin:0;background-color:var(--surface-color);font-size:.95rem;min-width:600px}.post-content thead{background-color:var(--surface-color);border-bottom:2px solid var(--border-color)}.post-content th{padding:1rem 1.5rem;text-align:left;font-weight:600;font-size:.9rem;color:var(--text-color);border-right:1px solid var(--border-color);border:none}.post-content th:last-child{border-right:none}.post-content td{padding:1rem 1.5rem;border-bottom:1px solid var(--border-color);border-right:1px solid var(--border-color);vertical-align:top;line-height:1.5;color:var(--text-color)}.post-content td:last-child{border-right:none}.post-content tbody tr{transition:background-color .2s ease}.post-content tbody tr:hover{background-color:rgba(0,0,0,2%)}.post-content tbody tr:last-child td{border-bottom:none}.post-content tbody tr:nth-child(even){background-color:rgba(0,0,0,1%)}[data-theme=dark] .post-content tbody tr:nth-child(even){background-color:rgba(255,255,255,1%)}[data-theme=dark] .post-content tbody tr:hover{background-color:rgba(255,255,255,2%)}.post-content td:first-child{font-weight:500}@media(max-width:768px){.post-content table{font-size:.85rem}.post-content th,.post-content td{padding:.8rem 1rem}.post-content th{font-size:.8rem}}[data-theme=dark] .table-container{border-color:rgba(255,255,255,.1)} \ No newline at end of file diff --git a/public/index.html b/public/index.html index 174b42c..7b414d4 100644 --- a/public/index.html +++ b/public/index.html @@ -3,6 +3,19 @@ + + + @@ -57,20 +70,229 @@ + + + @@ -87,23 +309,14 @@ - - + + - - - @@ -128,8 +341,11 @@

THE ONLY BLOGS YOU
- WOULD LOVE TO READ + WOULD LOVE TO READ

+
+ +
@@ -155,15 +371,18 @@

My First Post on This A

- - + - - + + + + + + diff --git a/public/index.xml b/public/index.xml index 98b0a6a..b1b1f9d 100644 --- a/public/index.xml +++ b/public/index.xml @@ -1,33 +1,29 @@ - - - - IDEA LABS - http://localhost:1313/ - Recent content on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - My First Post on This Awesome New Blog - http://localhost:1313/posts/my-first-post/ - Fri, 25 Jul 2025 21:00:00 +0530 - http://localhost:1313/posts/my-first-post/ - <p>This is the beginning of my new blog. The design is inspired by a clean, modern aesthetic with interactive elements.</p> <p>Here, I&rsquo;ll write about:</p> <ul> <li>Web Design</li> <li>Technology</li> <li>Creative Ideas</li> </ul> <p>Stay tuned for more!</p> - - - +IDEA LABShttps://blog.nischalskanda.tech/Recent content on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p>My First Post on This Awesome New Bloghttps://blog.nischalskanda.tech/posts/my-first-post/Fri, 25 Jul 2025 21:00:00 +0530https://blog.nischalskanda.tech/posts/my-first-post/<p>This is the beginning of my new blog. The design is inspired by a clean, modern aesthetic with interactive elements.</p> +<p>Here, I&rsquo;ll write about:</p> +<ul> +<li>Web Design</li> +<li>Technology</li> +<li>Creative Ideas</li> +</ul> +<p>Stay tuned for more!</p> \ No newline at end of file diff --git a/public/js/analytics-test.min.js b/public/js/analytics-test.min.js deleted file mode 100644 index 064a36e..0000000 --- a/public/js/analytics-test.min.js +++ /dev/null @@ -1 +0,0 @@ -console.log("Analytics test script loaded"),window.addEventListener("load",function(){setTimeout(function(){window.va?(console.log("✅ Vercel Analytics is loaded and working"),console.log("Vercel Analytics object:",window.va)):console.log("❌ Vercel Analytics is not loaded")},1e3)}),typeof window!="undefined"&&window.va&&(console.log("Testing page view tracking..."),window.va("track",{name:"test-page-view"})) \ No newline at end of file diff --git a/public/js/main.min.30b4ec79458e95e48e25610d23bfc7532f57f27a6e143cf768ea4aaf8e1ba187.js b/public/js/main.min.30b4ec79458e95e48e25610d23bfc7532f57f27a6e143cf768ea4aaf8e1ba187.js new file mode 100644 index 0000000..962ce5d --- /dev/null +++ b/public/js/main.min.30b4ec79458e95e48e25610d23bfc7532f57f27a6e143cf768ea4aaf8e1ba187.js @@ -0,0 +1 @@ +(function(){"use strict";const m=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame;function f(e,t){let n;return function(...s){const o=()=>{clearTimeout(n),e(...s)};clearTimeout(n),n=setTimeout(o,t)}}function c(e,t){let n;return function(){const s=arguments,o=this;n||(e.apply(o,s),n=!0,setTimeout(()=>n=!1,t))}}const s={root:null,rootMargin:"0px",threshold:.1};function o(){const e=["/fonts/inter.woff2","/fonts/unbounded.woff2"];e.forEach(e=>{const t=document.createElement("link");t.rel="preload",t.as=e.endsWith(".css")?"style":"font",t.href=e,t.crossOrigin="anonymous",document.head.appendChild(t)})}function i(){"fonts"in document?Promise.all([document.fonts.load("400 1em Satoshi"),document.fonts.load("700 1em Unbounded"),document.fonts.load('400 1em "Unbounded"'),document.fonts.load('700 1em "Unbounded"')]).then(()=>{document.documentElement.classList.add("fonts-loaded")}).catch(()=>{document.documentElement.classList.add("fonts-loaded")}):setTimeout(()=>{document.documentElement.classList.add("fonts-loaded")},100)}function t(){const e=document.querySelectorAll('a[href^="#"]');e.forEach(e=>{e.addEventListener("click",function(e){const t=this.getAttribute("href");if(t.length>1){e.preventDefault();const n=document.querySelector(t);n&&n.scrollIntoView({behavior:"smooth",block:"start"})}})})}function r(){document.body.classList.add("loading"),window.addEventListener("load",()=>{setTimeout(()=>{document.body.classList.remove("loading"),document.body.classList.add("loaded")},100)}),setTimeout(()=>{document.body.classList.contains("loading")&&(document.body.classList.remove("loading"),document.body.classList.add("loaded"))},3e3);const e=document.querySelectorAll(".hero-headline, .post-item");e.forEach(e=>{e.classList.add("loading")});const t=new IntersectionObserver(e=>{e.forEach(e=>{e.isIntersecting&&(e.target.classList.remove("loading"),e.target.classList.add("loaded"),t.unobserve(e.target))})},s);e.forEach(e=>{t.observe(e)})}function n(){const e=document.querySelectorAll("img");e.forEach(e=>{e.getBoundingClientRect().top>window.innerHeight&&(e.loading="lazy"),e.addEventListener("error",function(){this.style.display="none"})})}function l(){"serviceWorker"in navigator&&window.addEventListener("load",()=>{navigator.serviceWorker.register("/sw.js").then(e=>{console.log("SW registered: ",e)}).catch(e=>{console.log("SW registration failed: ",e)})})}function d(){const t=document.documentElement;let e=localStorage.getItem("theme")||(window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light");function n(){const n=document.getElementById("theme-toggle");n&&n.addEventListener("click",function(){e=e==="dark"?"light":"dark",t.setAttribute("data-theme",e),localStorage.setItem("theme",e),t.offsetHeight})}window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",function(n){localStorage.getItem("theme")||(e=n.matches?"dark":"light",t.setAttribute("data-theme",e),t.offsetHeight)}),n(),document.readyState==="loading"&&document.addEventListener("DOMContentLoaded",n)}function u(){const e=document.querySelector('script[src*="vercel.com/analytics"]');e&&e.setAttribute("data-defer","true")}function h(){window.addEventListener("beforeunload",()=>{})}function a(){const e=document.querySelector(".site-header");e&&window.addEventListener("scroll",c(()=>{window.scrollY>50?e.classList.add("scrolled"):e.classList.remove("scrolled")},10))}function e(){o(),i(),t(),r(),a(),n(),l(),u(),h(),window.addEventListener("load",()=>{document.documentElement.classList.add("page-loaded")})}d(),document.readyState==="loading"?document.addEventListener("DOMContentLoaded",e):e()})() \ No newline at end of file diff --git a/public/js/main.min.5f2fd5d96e7c59ff3efcc27eacb82da20a5f7519a4209e8f2ec939278a08bbf4.js b/public/js/main.min.5f2fd5d96e7c59ff3efcc27eacb82da20a5f7519a4209e8f2ec939278a08bbf4.js deleted file mode 100644 index b028c4a..0000000 --- a/public/js/main.min.5f2fd5d96e7c59ff3efcc27eacb82da20a5f7519a4209e8f2ec939278a08bbf4.js +++ /dev/null @@ -1 +0,0 @@ -(function(){"use strict";const m=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame;function f(e,t){let n;return function(...s){const o=()=>{clearTimeout(n),e(...s)};clearTimeout(n),n=setTimeout(o,t)}}function c(e,t){let n;return function(){const s=arguments,o=this;n||(e.apply(o,s),n=!0,setTimeout(()=>n=!1,t))}}const s={root:null,rootMargin:"0px",threshold:.1};function o(){const e=["/fonts/inter.woff2","/fonts/unbounded.woff2"];e.forEach(e=>{const t=document.createElement("link");t.rel="preload",t.as=e.endsWith(".css")?"style":"font",t.href=e,t.crossOrigin="anonymous",document.head.appendChild(t)})}function i(){"fonts"in document&&Promise.all([document.fonts.load("400 1em Inter"),document.fonts.load("700 1em Unbounded")]).then(()=>{document.documentElement.classList.add("fonts-loaded")})}function t(){const e=document.querySelectorAll('a[href^="#"]');e.forEach(e=>{e.addEventListener("click",function(e){const t=this.getAttribute("href");if(t.length>1){e.preventDefault();const n=document.querySelector(t);n&&n.scrollIntoView({behavior:"smooth",block:"start"})}})})}function r(){const e=document.querySelectorAll(".hero-headline, .post-item");e.forEach(e=>{e.classList.add("loading")});const t=new IntersectionObserver(e=>{e.forEach(e=>{e.isIntersecting&&(e.target.classList.remove("loading"),e.target.classList.add("loaded"),t.unobserve(e.target))})},s);e.forEach(e=>{t.observe(e)})}function n(){const e=document.querySelectorAll("img");e.forEach(e=>{e.getBoundingClientRect().top>window.innerHeight&&(e.loading="lazy"),e.addEventListener("error",function(){this.style.display="none"})})}function l(){"serviceWorker"in navigator&&window.addEventListener("load",()=>{navigator.serviceWorker.register("/sw.js").then(e=>{console.log("SW registered: ",e)}).catch(e=>{console.log("SW registration failed: ",e)})})}function d(){const t=document.documentElement;let e=localStorage.getItem("theme")||(window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light");function n(){const n=document.getElementById("theme-toggle");n&&n.addEventListener("click",function(){e=e==="dark"?"light":"dark",t.setAttribute("data-theme",e),localStorage.setItem("theme",e),t.offsetHeight})}window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change",function(n){localStorage.getItem("theme")||(e=n.matches?"dark":"light",t.setAttribute("data-theme",e),t.offsetHeight)}),n(),document.readyState==="loading"&&document.addEventListener("DOMContentLoaded",n)}function u(){const e=document.querySelector('script[src*="vercel.com/analytics"]');e&&e.setAttribute("data-defer","true")}function h(){window.addEventListener("beforeunload",()=>{})}function a(){const e=document.querySelector(".site-header");e&&window.addEventListener("scroll",c(()=>{window.scrollY>50?e.classList.add("scrolled"):e.classList.remove("scrolled")},10))}function e(){o(),i(),t(),r(),a(),n(),l(),u(),h(),window.addEventListener("load",()=>{document.documentElement.classList.add("page-loaded")})}d(),document.readyState==="loading"?document.addEventListener("DOMContentLoaded",e):e()})() \ No newline at end of file diff --git a/public/posts/ai_brain_impact/index.html b/public/posts/ai_brain_impact/index.html index ef380dd..595bab5 100644 --- a/public/posts/ai_brain_impact/index.html +++ b/public/posts/ai_brain_impact/index.html @@ -1,415 +1,18 @@ - - - - - - - - - - - - - - -Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice | IDEA LABS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-
-

Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice

- -
- A deep dive into how AI overreliance is affecting our cognitive abilities, backed by MIT research and practical solutions to save our brains. -
-
- -
-
- - - - A cartoon brain melting into a puddle with a smartphone glowing nearby -
My brain’s legit goo while I’m vibing on Reels, bruh
-

Introduction

-

Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let’s vibe with our stupidity, and let’s save our brains, bruv.

-

The Sad, Funny Tale of Our Brain’s Demise

-

The MIT Study: ChatGPT’s Lowkey Brain Robbery

-

So picture this: my brain’s like a JEE prep class on steroids, neurons grinding through algorithms and cramming formulas. Then ChatGPT rolls up like a wannabe Bollywood star, all “Chill, bro, I got your back.” A June 2025 MIT Media Lab study, “Your Brain on ChatGPT,” by Nataliya Kosmyna(apparently she’s very good at what she does..) and her squad, threw 54 Boston bigshots (MIT, Harvard, you know the drill) into an essay-writing showdown: ChatGPT users (LLM group), Google Searchers (Search Engine group), and the OG Brain-Only crew, hustling with no tech.

-

Here’s the tea, and it’s spicy:

-
    -
  • Brain’s AFK: The LLM group’s brain activity yeeted 55% (some fancy Dynamic Directed Transfer Function stuff) compared to the Brain-Only champs, who had 79 alpha and 65 theta connections—basically the vibe for creativity and memory. LLM users? A sad 42 alpha and 29 theta connections. My brain’s legit taking a nap during a Mumbai local rush.
  • -
  • Memory’s Ghosted: 83% of LLM users couldn’t remember their essays five minutes later, compared to 11.1% of the Brain-Only and Search Engine folks. It’s like posting a fire Instagram story and forgetting what it was about.
  • -
  • Essays with No Soul: LLM essays were slick but boring, like a Rohit Shetty movie with no explosions. Brain-Only essays had that street chaat energy—messy but lit.
  • -
  • Mental Debt Vibes: Over four months, LLM users turned into copy-paste bots, stacking “cognitive debt” like my Zomato orders during finals. We’re lowkey selling our brains, and the bill’s dropping soon.
  • -
-

And the worst? Young brains like ours, still soft like frikin gulab jamun, are getting wrecked hardest, doomed to be AI’s hype squad forever. Like wth!

-

The Wider Tragedy: We’re All in This Mess

-

MIT’s just the appetizer. Other studies are piling on like aunties at a buffet:

-
    -
  • Critical Thinking’s Donezo: A review of 14 studies says 75% of 245 undergrads had their brainpower squashed by AI, with 73% hooked like it’s free momos at a fest [1]. I’m trading my inner CID vibes for a bot that does the thinking.
  • -
  • Laziness Is My BFF: A 2023 study of 285 students found 68.9% got so lazy they’d rather sleep through classes (beta = 0.689, p = 0.000), and 27.7% saw their decision-making skills crash (beta = 0.277, p = 0.000) [3]. AI’s that comfy hostel bed I’m glued to.
  • -
  • Gen Z Is Screwed: A study of 666 people showed youngsters like us lean on AI like it’s mom’s filter coffee, with critical thinking tanking faster than my phone on 2G [4].
  • -
  • Motivation’s MIA: A May 2025 Harvard study says AI makes us productive but leaves us feeling as empty as a dry pav bhaji [5]. We’re fast but basically zombies, lol.
  • -
-

The Numbers That Make You Wince

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TragedyMetricSource
Neural Nap55% dDTF signal drop (LLM vs. Brain-Only)MIT Media Lab, 2025 [6]
Memory Wipeout83% (LLM) vs. 11.1% (Brain-Only) recall failureMIT Media Lab, 2025 [6]
Critical Thinking Collapse75% of 245 studentsMalik et al., 2023 [1]
Laziness Surge68.9% of 285 studentsAhmad et al., 2023 [3]
Decision-Making Disaster27.7% of 285 studentsAhmad et al., 2023 [3]
Dependency Doom73% of 245 studentsMalik et al., 2023 [1]
-
-

Saving Our Brains Before They’re Toast

-

I’m not about to let my brain turn into a sad rasgulla, fam. Science has a dope playbook to yank us out of this AI mess, and I’m begging you to listen before we’re all brain-dead TikTokers.

-

1. Don’t Let AI Steal Your Vibe

-
    -
  • The Fix: Treat AI like your fest wingman, not the main act. Jot your ideas first, then let AI sprinkle some spice.
  • -
  • Why It Saves Me: MIT says starting with my own hustle keeps my brain clear [6].
  • -
  • How-To: Grab a pen (I know, boomer vibes) and brainstorm before AI butts in. It’s like making Maggi yourself instead of ordering Swiggy.
  • -
-

2. Get Wise to AI’s Clownery

-
    -
  • The Fix: Learn AI’s shady side—its biases, its flops—so I don’t fall for its fake guru act.
  • -
  • Why It Saves Me: Blind trust in AI makes me its fanboy [1]. Knowing its limits keeps me in the driver’s seat.
  • -
  • How-To: Colleges, teach us to roast AI like it’s a sketchy auto driver. Check its facts with books, not just Reddit threads.
  • -
-

3. Pump Up Your Brain

-
    -
  • The Fix: Dive into sudoku, argue over the best biryani spot, or read a beat-up Amish Tripathi book to keep my neurons from dipping.
  • -
  • Why It Saves Me: Mental workouts build a brain that yeets AI’s shortcuts [7].
  • -
  • How-To: Solve a puzzle, debate Ranbir vs. Ranveer, or read without AI spoiling the climax. My brain needs a gym sesh, not a nap.
  • -
-

4. Unplug Before You Crash

-
    -
  • The Fix: Ditch AI and screens for a bit to let my brain chill.
  • -
  • Why It Saves Me: Digital detoxes cut stress and make me feel alive [7].
  • -
  • How-To: No tech during mom’s dosa nights or use an app to track AI use. It’s like telling my brain, “Go vibe outside, you lazy legend.”
  • -
-

5. Make Rules to Keep AI in Check

-
    -
  • The Fix: Set boundaries so AI doesn’t become my brain’s annoying tuition sir.
  • -
  • Why It Saves Me: The World Economic Forum’s seven principles say I’m the boss, not AI [8].
  • -
  • How-To: Colleges, make us show our logic, not AI’s copy-paste. Use it for feedback, not my whole project report.
  • -
-

6. Move Your Butt to Save Your Brain

-
    -
  • The Fix: Run, dance, or play gully cricket to juice up my noggin.
  • -
  • Why It Saves Me: A 2023 study says daily exercise boosts memory and focus, maybe even stopping 3% of dementia cases [7]. AI can suck it!
  • -
  • How-To: Hit the park, vibe to AP Dhillon, or sprint like you’re dodging a Bangalore auto. My brain’s throwing hands already.
  • -
-

The Tech Designer’s Perspective

-

As a Gen Z grad messing with UI/UX, I’m stuck in this AI dumpster fire. I used ChatGPT to crank out code and reports, but I also pulled all-nighters debugging manually to prove I’m not a total noob. We’re building apps that make life lit but might turn our brains into sambar. The goal isn’t to ghost AI—it’s to design tools that make us think, not snooze.

-

My projects are about interfaces that spark brain vibes, not kill them. We need AI that’s like a chill TA, not a prof handing out free answers. Want to see my take on non-zombie tech? Check out my portfolio for designs that don’t make you brain-dead.

-

Conclusion

-

Lmao, we’re such clowns, fam. AI’s got us wrapped around its digital finger, turning our brains into sad, lumpy kheer while we’re vibing on Reels. MIT’s 55% neural crash and 83% memory wipeout, plus 75% of students losing their thinking game, hit harder than bombing a JEE mock test. But I’m not here to be AI’s hype man! By keeping AI as my sidekick, roasting its BS, flexing my brain, unplugging, setting rules, and getting my ass moving, I can keep my mind from yeeting itself. Let’s not let AI drag us to Noobtown—our brains deserve better than this cringe fest.

-

References

-
    -
  1. Malik et al., “The effects of over-reliance on AI dialogue systems on students’ cognitive abilities: a systematic review,” 2023. Link
  2. -
  3. “From tools to threats: a reflection on the impact of artificial-intelligence chatbots on cognitive health,” 2024. Link
  4. -
  5. Ahmad et al., “Impact of artificial intelligence on human loss in decision making, laziness and safety in education,” 2023. Link
  6. -
  7. “AI Tools in Society: Impacts on Cognitive Offloading and the Future of Critical Thinking,” 2024. Link
  8. -
  9. Harvard study on AI productivity and motivation, May 2025.
  10. -
  11. Kosmyna et al., “Your Brain on ChatGPT: Accumulation of Cognitive Debt when Using an AI Assistant for Essay Writing Task,” MIT Media Lab, 2025. Link
  12. -
  13. “The Impact of AI on Cognitive Function and Brain Health,” 2023. Link
  14. -
  15. “7 principles on responsible AI use in education,” World Economic Forum, 2024. Link
  16. -
- -
- - -
-
-
- Nischal Skanda -
-
-

- About Nischal Skanda -

-

- Nischal is a technology enthusiast and designer passionate about the intersection of AI, cognitive science, and human-computer interaction. He explores how emerging technologies impact our daily lives and shares insights on building better digital experiences. -

- -
-
-
- - - - - - - - - - -
- -
-
- - - - - - - - - - - - - - +Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice | IDEA LABS

Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice

A deep dive into how AI overreliance is affecting our cognitive abilities, backed by MIT research and practical solutions to save our brains.
A cartoon brain melting into a puddle with a smartphone glowing nearby
My brain’s legit goo while I’m vibing on Reels, bruh

Introduction

Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let’s vibe with our stupidity, and let’s save our brains, bruv.

The Sad, Funny Tale of Our Brain’s Demise

The MIT Study: ChatGPT’s Lowkey Brain Robbery

So picture this: my brain’s like a JEE prep class on steroids, neurons grinding through algorithms and cramming formulas. Then ChatGPT rolls up like a wannabe Bollywood star, all “Chill, bro, I got your back.” A June 2025 MIT Media Lab study, “Your Brain on ChatGPT,” by Nataliya Kosmyna(apparently she’s very good at what she does..) and her squad, threw 54 Boston bigshots (MIT, Harvard, you know the drill) into an essay-writing showdown: ChatGPT users (LLM group), Google Searchers (Search Engine group), and the OG Brain-Only crew, hustling with no tech.

Here’s the tea, and it’s spicy:

  • Brain’s AFK: The LLM group’s brain activity yeeted 55% (some fancy Dynamic Directed Transfer Function stuff) compared to the Brain-Only champs, who had 79 alpha and 65 theta connections—basically the vibe for creativity and memory. LLM users? A sad 42 alpha and 29 theta connections. My brain’s legit taking a nap during a Mumbai local rush.
  • Memory’s Ghosted: 83% of LLM users couldn’t remember their essays five minutes later, compared to 11.1% of the Brain-Only and Search Engine folks. It’s like posting a fire Instagram story and forgetting what it was about.
  • Essays with No Soul: LLM essays were slick but boring, like a Rohit Shetty movie with no explosions. Brain-Only essays had that street chaat energy—messy but lit.
  • Mental Debt Vibes: Over four months, LLM users turned into copy-paste bots, stacking “cognitive debt” like my Zomato orders during finals. We’re lowkey selling our brains, and the bill’s dropping soon.

And the worst? Young brains like ours, still soft like frikin gulab jamun, are getting wrecked hardest, doomed to be AI’s hype squad forever. Like wth!

The Wider Tragedy: We’re All in This Mess

MIT’s just the appetizer. Other studies are piling on like aunties at a buffet:

  • Critical Thinking’s Donezo: A review of 14 studies says 75% of 245 undergrads had their brainpower squashed by AI, with 73% hooked like it’s free momos at a fest [1]. I’m trading my inner CID vibes for a bot that does the thinking.
  • Laziness Is My BFF: A 2023 study of 285 students found 68.9% got so lazy they’d rather sleep through classes (beta = 0.689, p = 0.000), and 27.7% saw their decision-making skills crash (beta = 0.277, p = 0.000) [3]. AI’s that comfy hostel bed I’m glued to.
  • Gen Z Is Screwed: A study of 666 people showed youngsters like us lean on AI like it’s mom’s filter coffee, with critical thinking tanking faster than my phone on 2G [4].
  • Motivation’s MIA: A May 2025 Harvard study says AI makes us productive but leaves us feeling as empty as a dry pav bhaji [5]. We’re fast but basically zombies, lol.

The Numbers That Make You Wince

TragedyMetricSource
Neural Nap55% dDTF signal drop (LLM vs. Brain-Only)MIT Media Lab, 2025 [6]
Memory Wipeout83% (LLM) vs. 11.1% (Brain-Only) recall failureMIT Media Lab, 2025 [6]
Critical Thinking Collapse75% of 245 studentsMalik et al., 2023 [1]
Laziness Surge68.9% of 285 studentsAhmad et al., 2023 [3]
Decision-Making Disaster27.7% of 285 studentsAhmad et al., 2023 [3]
Dependency Doom73% of 245 studentsMalik et al., 2023 [1]

Saving Our Brains Before They’re Toast

I’m not about to let my brain turn into a sad rasgulla, fam. Science has a dope playbook to yank us out of this AI mess, and I’m begging you to listen before we’re all brain-dead TikTokers.

1. Don’t Let AI Steal Your Vibe

  • The Fix: Treat AI like your fest wingman, not the main act. Jot your ideas first, then let AI sprinkle some spice.
  • Why It Saves Me: MIT says starting with my own hustle keeps my brain clear [6].
  • How-To: Grab a pen (I know, boomer vibes) and brainstorm before AI butts in. It’s like making Maggi yourself instead of ordering Swiggy.

2. Get Wise to AI’s Clownery

  • The Fix: Learn AI’s shady side—its biases, its flops—so I don’t fall for its fake guru act.
  • Why It Saves Me: Blind trust in AI makes me its fanboy [1]. Knowing its limits keeps me in the driver’s seat.
  • How-To: Colleges, teach us to roast AI like it’s a sketchy auto driver. Check its facts with books, not just Reddit threads.

3. Pump Up Your Brain

  • The Fix: Dive into sudoku, argue over the best biryani spot, or read a beat-up Amish Tripathi book to keep my neurons from dipping.
  • Why It Saves Me: Mental workouts build a brain that yeets AI’s shortcuts [7].
  • How-To: Solve a puzzle, debate Ranbir vs. Ranveer, or read without AI spoiling the climax. My brain needs a gym sesh, not a nap.

4. Unplug Before You Crash

  • The Fix: Ditch AI and screens for a bit to let my brain chill.
  • Why It Saves Me: Digital detoxes cut stress and make me feel alive [7].
  • How-To: No tech during mom’s dosa nights or use an app to track AI use. It’s like telling my brain, “Go vibe outside, you lazy legend.”

5. Make Rules to Keep AI in Check

  • The Fix: Set boundaries so AI doesn’t become my brain’s annoying tuition sir.
  • Why It Saves Me: The World Economic Forum’s seven principles say I’m the boss, not AI [8].
  • How-To: Colleges, make us show our logic, not AI’s copy-paste. Use it for feedback, not my whole project report.

6. Move Your Butt to Save Your Brain

  • The Fix: Run, dance, or play gully cricket to juice up my noggin.
  • Why It Saves Me: A 2023 study says daily exercise boosts memory and focus, maybe even stopping 3% of dementia cases [7]. AI can suck it!
  • How-To: Hit the park, vibe to AP Dhillon, or sprint like you’re dodging a Bangalore auto. My brain’s throwing hands already.

The Tech Designer’s Perspective

As a Gen Z grad messing with UI/UX, I’m stuck in this AI dumpster fire. I used ChatGPT to crank out code and reports, but I also pulled all-nighters debugging manually to prove I’m not a total noob. We’re building apps that make life lit but might turn our brains into sambar. The goal isn’t to ghost AI—it’s to design tools that make us think, not snooze.

My projects are about interfaces that spark brain vibes, not kill them. We need AI that’s like a chill TA, not a prof handing out free answers. Want to see my take on non-zombie tech? Check out my portfolio for designs that don’t make you brain-dead.

Conclusion

Lmao, we’re such clowns, fam. AI’s got us wrapped around its digital finger, turning our brains into sad, lumpy kheer while we’re vibing on Reels. MIT’s 55% neural crash and 83% memory wipeout, plus 75% of students losing their thinking game, hit harder than bombing a JEE mock test. But I’m not here to be AI’s hype man! By keeping AI as my sidekick, roasting its BS, flexing my brain, unplugging, setting rules, and getting my ass moving, I can keep my mind from yeeting itself. Let’s not let AI drag us to Noobtown—our brains deserve better than this cringe fest.

References

  1. Malik et al., “The effects of over-reliance on AI dialogue systems on students’ cognitive abilities: a systematic review,” 2023. Link
  2. “From tools to threats: a reflection on the impact of artificial-intelligence chatbots on cognitive health,” 2024. Link
  3. Ahmad et al., “Impact of artificial intelligence on human loss in decision making, laziness and safety in education,” 2023. Link
  4. “AI Tools in Society: Impacts on Cognitive Offloading and the Future of Critical Thinking,” 2024. Link
  5. Harvard study on AI productivity and motivation, May 2025.
  6. Kosmyna et al., “Your Brain on ChatGPT: Accumulation of Cognitive Debt when Using an AI Assistant for Essay Writing Task,” MIT Media Lab, 2025. Link
  7. “The Impact of AI on Cognitive Function and Brain Health,” 2023. Link
  8. “7 principles on responsible AI use in education,” World Economic Forum, 2024. Link
Nischal Skanda

About Nischal Skanda

Nischal is a technology enthusiast and designer passionate about the intersection of AI, cognitive science, and human-computer interaction. He explores how emerging technologies impact our daily lives and shares insights on building better digital experiences.

\ No newline at end of file diff --git a/public/posts/index.html b/public/posts/index.html index 798bafb..8b10a97 100644 --- a/public/posts/index.html +++ b/public/posts/index.html @@ -1,168 +1,6 @@ - - - - - - - - - - - - - - -Posts - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - - - - - -
- -
-
- - - - - - - - - - - - - - +Posts

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/posts/index.xml b/public/posts/index.xml index 74acc8e..668a156 100644 --- a/public/posts/index.xml +++ b/public/posts/index.xml @@ -1,33 +1,29 @@ - - - - Posts on IDEA LABS - http://localhost:1313/posts/ - Recent content in Posts on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - My First Post on This Awesome New Blog - http://localhost:1313/posts/my-first-post/ - Fri, 25 Jul 2025 21:00:00 +0530 - http://localhost:1313/posts/my-first-post/ - <p>This is the beginning of my new blog. The design is inspired by a clean, modern aesthetic with interactive elements.</p> <p>Here, I&rsquo;ll write about:</p> <ul> <li>Web Design</li> <li>Technology</li> <li>Creative Ideas</li> </ul> <p>Stay tuned for more!</p> - - - +Posts on IDEA LABShttps://blog.nischalskanda.tech/posts/Recent content in Posts on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p>My First Post on This Awesome New Bloghttps://blog.nischalskanda.tech/posts/my-first-post/Fri, 25 Jul 2025 21:00:00 +0530https://blog.nischalskanda.tech/posts/my-first-post/<p>This is the beginning of my new blog. The design is inspired by a clean, modern aesthetic with interactive elements.</p> +<p>Here, I&rsquo;ll write about:</p> +<ul> +<li>Web Design</li> +<li>Technology</li> +<li>Creative Ideas</li> +</ul> +<p>Stay tuned for more!</p> \ No newline at end of file diff --git a/public/posts/my-first-post/index.html b/public/posts/my-first-post/index.html index a40ecd4..4701e47 100644 --- a/public/posts/my-first-post/index.html +++ b/public/posts/my-first-post/index.html @@ -1,254 +1,17 @@ - - - - - - - - - - - - - - -My First Post on This Awesome New Blog | IDEA LABS - - - - - - - - -My First Post on This Awesome New Blog | IDEA LABS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-
-

My First Post on This Awesome New Blog

- -
- -
-

This is the beginning of my new blog. The design is inspired by a clean, modern aesthetic with interactive elements.

-

Here, I’ll write about:

-
    -
  • Web Design
  • -
  • Technology
  • -
  • Creative Ideas
  • -
-

Stay tuned for more!

- -
- - -
-
-
- Nischal Skanda -
-
-

- About Nischal Skanda -

-

- Nischal is a technology enthusiast and designer passionate about the intersection of AI, cognitive science, and human-computer interaction. He explores how emerging technologies impact our daily lives and shares insights on building better digital experiences. -

- -
-
-
- - - - - - - - - -
- -
-
- - - - - - - - - - - - - - +Web Design …">

My First Post on This Awesome New Blog

This is the beginning of my new blog. The design is inspired by a clean, modern aesthetic with interactive elements.

Here, I’ll write about:

  • Web Design
  • Technology
  • Creative Ideas

Stay tuned for more!

Nischal Skanda

About Nischal Skanda

Nischal is a technology enthusiast and designer passionate about the intersection of AI, cognitive science, and human-computer interaction. He explores how emerging technologies impact our daily lives and shares insights on building better digital experiences.

\ No newline at end of file diff --git a/public/posts/page/1/index.html b/public/posts/page/1/index.html index ac9cba2..6cbabc3 100644 --- a/public/posts/page/1/index.html +++ b/public/posts/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/posts/ - - - - - - +https://blog.nischalskanda.tech/posts/ \ No newline at end of file diff --git a/public/posts/you_shouldnt_share/images/proof_hu_4cfd8ad29a28d35c.png b/public/posts/you_shouldnt_share/images/proof_hu_4cfd8ad29a28d35c.png deleted file mode 100644 index 57df5c9..0000000 Binary files a/public/posts/you_shouldnt_share/images/proof_hu_4cfd8ad29a28d35c.png and /dev/null differ diff --git a/public/posts/you_shouldnt_share/images/proof_hu_f725c8d14a487d08.png b/public/posts/you_shouldnt_share/images/proof_hu_f725c8d14a487d08.png deleted file mode 100644 index 1027a6f..0000000 Binary files a/public/posts/you_shouldnt_share/images/proof_hu_f725c8d14a487d08.png and /dev/null differ diff --git a/public/posts/you_shouldnt_share/images/thumbnail.jpeg b/public/posts/you_shouldnt_share/images/thumbnail.jpeg deleted file mode 100644 index 96c283b..0000000 Binary files a/public/posts/you_shouldnt_share/images/thumbnail.jpeg and /dev/null differ diff --git a/public/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpeg b/public/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpeg deleted file mode 100644 index 6375d0e..0000000 Binary files a/public/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpeg and /dev/null differ diff --git a/public/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpeg b/public/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpeg deleted file mode 100644 index 1f05a28..0000000 Binary files a/public/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpeg and /dev/null differ diff --git a/public/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpeg b/public/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpeg deleted file mode 100644 index aa8d81b..0000000 Binary files a/public/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpeg and /dev/null differ diff --git a/public/posts/you_shouldnt_share/index.html b/public/posts/you_shouldnt_share/index.html index 5a446b8..5a8a2d7 100644 --- a/public/posts/you_shouldnt_share/index.html +++ b/public/posts/you_shouldnt_share/index.html @@ -2,6 +2,19 @@ + + + @@ -24,7 +37,7 @@ - + @@ -50,7 +63,7 @@ "name": "IDEA LABS", "url": "http:\/\/localhost:1313\/" }, - "datePublished": "2025-08-03T10:30:00\u002b05:30","dateModified": "2025-08-03T10:16:03\u002b05:30","mainEntityOfPage": { + "datePublished": "2025-08-03T10:30:00\u002b05:30","dateModified": "2025-08-04T19:26:28\u002b05:30","mainEntityOfPage": { "@type": "WebPage", "@id": "http:\/\/localhost:1313\/posts\/you_shouldnt_share\/" },"image": "http:\/\/localhost:1313\/images\/og-image.jpg","keywords": ["AI", "Privacy", "Technology", "ChatGPT", "Ollama", "Product Design"], @@ -61,20 +74,229 @@ + + + @@ -90,23 +312,14 @@ - - + + - - - @@ -173,7 +386,7 @@

You Should Never

And before you act smart—“Ahhh Nischal, we’re not dumb like you to share things online”—cool, me neither. I only had exam notes in there… (don’t fact check that). But the thing is, OpenAI gave us the perfect trap:


When Even Sam Altman Says, “Don’t Do It”

@@ -379,15 +592,18 @@

Sha

- - + - - + + + + + + diff --git a/public/robots.txt b/public/robots.txt index 7dcc7a1..33cb167 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -2,7 +2,7 @@ User-agent: * Allow: / # Sitemap location -Sitemap: http://localhost:1313/sitemap.xml +Sitemap: https://blog.nischalskanda.tech/sitemap.xml # Disallow admin areas (if any) Disallow: /admin/ diff --git a/public/series/index.html b/public/series/index.html index 5845468..a957599 100644 --- a/public/series/index.html +++ b/public/series/index.html @@ -1,153 +1,6 @@ - - - - - - - - - - - - - - -Series - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- -
- -
-
- - - - - - - - - - - - - - +Series

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/series/index.xml b/public/series/index.xml index 933b761..7c03cf6 100644 --- a/public/series/index.xml +++ b/public/series/index.xml @@ -1,11 +1 @@ - - - - Series on IDEA LABS - http://localhost:1313/series/ - Recent content in Series on IDEA LABS - Hugo - en-us - - - +Series on IDEA LABShttps://blog.nischalskanda.tech/series/Recent content in Series on IDEA LABSHugoen-us \ No newline at end of file diff --git a/public/series/page/1/index.html b/public/series/page/1/index.html index f32a88a..e2af8e8 100644 --- a/public/series/page/1/index.html +++ b/public/series/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/series/ - - - - - - +https://blog.nischalskanda.tech/series/ \ No newline at end of file diff --git a/public/sitemap.xml b/public/sitemap.xml index fa41a88..3ea3fb8 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1,109 +1 @@ - - - - http://localhost:1313/tags/ai/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/categories/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/chatgpt/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/categories/design/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/ollama/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/posts/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/categories/privacy/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/privacy/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/product-design/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/posts/you_shouldnt_share/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/categories/technology/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/technology/ - 2025-08-03T10:16:03+05:30 - weekly - 0.5 - - http://localhost:1313/tags/brain-health/ - 2025-07-28T20:30:07+05:30 - weekly - 0.5 - - http://localhost:1313/tags/cognitive-science/ - 2025-07-28T20:30:07+05:30 - weekly - 0.5 - - http://localhost:1313/categories/health/ - 2025-07-28T20:30:07+05:30 - weekly - 0.5 - - http://localhost:1313/posts/ai_brain_impact/ - 2025-07-28T20:30:07+05:30 - weekly - 0.5 - - http://localhost:1313/tags/research/ - 2025-07-28T20:30:07+05:30 - weekly - 0.5 - - http://localhost:1313/posts/my-first-post/ - 2025-07-26T20:09:28+05:30 - weekly - 0.5 - - http://localhost:1313/series/ - weekly - 0.5 - - +https://blog.nischalskanda.tech/tags/ai/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/categories/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/chatgpt/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/categories/design/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/ollama/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/posts/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/categories/privacy/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/privacy/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/product-design/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/posts/you_shouldnt_share/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/categories/technology/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/technology/2025-08-04T19:26:28+05:30weekly0.5https://blog.nischalskanda.tech/tags/brain-health/2025-07-28T20:30:07+05:30weekly0.5https://blog.nischalskanda.tech/tags/cognitive-science/2025-07-28T20:30:07+05:30weekly0.5https://blog.nischalskanda.tech/categories/health/2025-07-28T20:30:07+05:30weekly0.5https://blog.nischalskanda.tech/posts/ai_brain_impact/2025-07-28T20:30:07+05:30weekly0.5https://blog.nischalskanda.tech/tags/research/2025-07-28T20:30:07+05:30weekly0.5https://blog.nischalskanda.tech/posts/my-first-post/2025-07-26T20:09:28+05:30weekly0.5https://blog.nischalskanda.tech/series/weekly0.5 \ No newline at end of file diff --git a/public/tags/ai/index.html b/public/tags/ai/index.html index 42f4fda..04b038e 100644 --- a/public/tags/ai/index.html +++ b/public/tags/ai/index.html @@ -1,163 +1,6 @@ - - - - - - - - - - - - - - -AI - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - - - -
- -
-
- - - - - - - - - - - - - - +AI

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/ai/index.xml b/public/tags/ai/index.xml index 81f2696..94f30c8 100644 --- a/public/tags/ai/index.xml +++ b/public/tags/ai/index.xml @@ -1,26 +1,22 @@ - - - - AI on IDEA LABS - http://localhost:1313/tags/ai/ - Recent content in AI on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +AI on IDEA LABShttps://blog.nischalskanda.tech/tags/ai/Recent content in AI on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/tags/ai/page/1/index.html b/public/tags/ai/page/1/index.html index 1c5cb09..f3c58ad 100644 --- a/public/tags/ai/page/1/index.html +++ b/public/tags/ai/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/ai/ - - - - - - +https://blog.nischalskanda.tech/tags/ai/ \ No newline at end of file diff --git a/public/tags/brain-health/index.html b/public/tags/brain-health/index.html index dd0baf4..a23aff5 100644 --- a/public/tags/brain-health/index.html +++ b/public/tags/brain-health/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Brain Health - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Brain Health

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/brain-health/index.xml b/public/tags/brain-health/index.xml index 88112b2..e7e7206 100644 --- a/public/tags/brain-health/index.xml +++ b/public/tags/brain-health/index.xml @@ -1,19 +1,11 @@ - - - - Brain Health on IDEA LABS - http://localhost:1313/tags/brain-health/ - Recent content in Brain Health on IDEA LABS - Hugo - en-us - Mon, 28 Jul 2025 20:30:07 +0530 - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +Brain Health on IDEA LABShttps://blog.nischalskanda.tech/tags/brain-health/Recent content in Brain Health on IDEA LABSHugoen-usMon, 28 Jul 2025 20:30:07 +0530Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/tags/brain-health/page/1/index.html b/public/tags/brain-health/page/1/index.html index 340ea19..0b1e92f 100644 --- a/public/tags/brain-health/page/1/index.html +++ b/public/tags/brain-health/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/brain-health/ - - - - - - +https://blog.nischalskanda.tech/tags/brain-health/ \ No newline at end of file diff --git a/public/tags/chatgpt/index.html b/public/tags/chatgpt/index.html index e425e87..b23b90c 100644 --- a/public/tags/chatgpt/index.html +++ b/public/tags/chatgpt/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -ChatGPT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +ChatGPT

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/chatgpt/index.xml b/public/tags/chatgpt/index.xml index 3fe0015..8843421 100644 --- a/public/tags/chatgpt/index.xml +++ b/public/tags/chatgpt/index.xml @@ -1,19 +1,12 @@ - - - - ChatGPT on IDEA LABS - http://localhost:1313/tags/chatgpt/ - Recent content in ChatGPT on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - +ChatGPT on IDEA LABShttps://blog.nischalskanda.tech/tags/chatgpt/Recent content in ChatGPT on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> \ No newline at end of file diff --git a/public/tags/chatgpt/page/1/index.html b/public/tags/chatgpt/page/1/index.html index 58f500f..d685c80 100644 --- a/public/tags/chatgpt/page/1/index.html +++ b/public/tags/chatgpt/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/chatgpt/ - - - - - - +https://blog.nischalskanda.tech/tags/chatgpt/ \ No newline at end of file diff --git a/public/tags/cognitive-science/index.html b/public/tags/cognitive-science/index.html index 48225a3..afb5a60 100644 --- a/public/tags/cognitive-science/index.html +++ b/public/tags/cognitive-science/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Cognitive Science - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Cognitive Science

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/cognitive-science/index.xml b/public/tags/cognitive-science/index.xml index d3c1cd8..fc268b7 100644 --- a/public/tags/cognitive-science/index.xml +++ b/public/tags/cognitive-science/index.xml @@ -1,19 +1,11 @@ - - - - Cognitive Science on IDEA LABS - http://localhost:1313/tags/cognitive-science/ - Recent content in Cognitive Science on IDEA LABS - Hugo - en-us - Mon, 28 Jul 2025 20:30:07 +0530 - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +Cognitive Science on IDEA LABShttps://blog.nischalskanda.tech/tags/cognitive-science/Recent content in Cognitive Science on IDEA LABSHugoen-usMon, 28 Jul 2025 20:30:07 +0530Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/tags/cognitive-science/page/1/index.html b/public/tags/cognitive-science/page/1/index.html index f77a20b..82bcab9 100644 --- a/public/tags/cognitive-science/page/1/index.html +++ b/public/tags/cognitive-science/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/cognitive-science/ - - - - - - +https://blog.nischalskanda.tech/tags/cognitive-science/ \ No newline at end of file diff --git a/public/tags/cybersecurity/index.html b/public/tags/cybersecurity/index.html deleted file mode 100644 index a56b153..0000000 --- a/public/tags/cybersecurity/index.html +++ /dev/null @@ -1,6 +0,0 @@ -Cybersecurity

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/cybersecurity/index.xml b/public/tags/cybersecurity/index.xml deleted file mode 100644 index f77ea24..0000000 --- a/public/tags/cybersecurity/index.xml +++ /dev/null @@ -1,11 +0,0 @@ -Cybersecurity on IDEA LABShttps://blog.nischalskanda.tech/tags/cybersecurity/Recent content in Cybersecurity on IDEA LABSHugoen-usSun, 03 Aug 2025 09:00:00 +0530Stop Oversharing with ChatGPT Before It Outs You to the Internethttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 09:00:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> - <picture> - <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> - <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> - <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" - alt="Chat bubbles spilling out from a phone into a search bar" - loading="lazy" - style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> - </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> -<h2 id="introduction">Introduction</h2> -<p>So peeps, it’s time for part two of my “Digital Disasters I Survived” series—today’s freak‑out is about ChatGPT. In the name of <em>“context”</em> and <em>“personal recommendations”</em>, a bunch of y’all spilled your <em>whole life</em> to a chatbot thinking it was private. Midnight rants, therapy-style journaling, emotional overshares—it’s like the bot became your digital psychoanalyst.</p> \ No newline at end of file diff --git a/public/tags/cybersecurity/page/1/index.html b/public/tags/cybersecurity/page/1/index.html deleted file mode 100644 index 1e82a02..0000000 --- a/public/tags/cybersecurity/page/1/index.html +++ /dev/null @@ -1 +0,0 @@ -https://blog.nischalskanda.tech/tags/cybersecurity/ \ No newline at end of file diff --git a/public/tags/index.html b/public/tags/index.html index 38497b7..a22e93e 100644 --- a/public/tags/index.html +++ b/public/tags/index.html @@ -1,178 +1,6 @@ - - - - - - - - - - - - - - -Tags - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- -
-

AI

- -
- - - - - - - - - -
- -
-
- - - - - - - - - - - - - - +Tags

THE ONLY BLOGS YOU
WOULD LOVE TO READ

AI

\ No newline at end of file diff --git a/public/tags/index.xml b/public/tags/index.xml index 9000b24..c281745 100644 --- a/public/tags/index.xml +++ b/public/tags/index.xml @@ -1,75 +1 @@ - - - - Tags on IDEA LABS - http://localhost:1313/tags/ - Recent content in Tags on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - AI - http://localhost:1313/tags/ai/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/tags/ai/ - - - - ChatGPT - http://localhost:1313/tags/chatgpt/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/tags/chatgpt/ - - - - Ollama - http://localhost:1313/tags/ollama/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/tags/ollama/ - - - - Privacy - http://localhost:1313/tags/privacy/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/tags/privacy/ - - - - Product Design - http://localhost:1313/tags/product-design/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/tags/product-design/ - - - - Technology - http://localhost:1313/tags/technology/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/tags/technology/ - - - - Brain Health - http://localhost:1313/tags/brain-health/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/tags/brain-health/ - - - - Cognitive Science - http://localhost:1313/tags/cognitive-science/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/tags/cognitive-science/ - - - - Research - http://localhost:1313/tags/research/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/tags/research/ - - - - +Tags on IDEA LABShttps://blog.nischalskanda.tech/tags/Recent content in Tags on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530AIhttps://blog.nischalskanda.tech/tags/ai/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/tags/ai/ChatGPThttps://blog.nischalskanda.tech/tags/chatgpt/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/tags/chatgpt/Ollamahttps://blog.nischalskanda.tech/tags/ollama/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/tags/ollama/Privacyhttps://blog.nischalskanda.tech/tags/privacy/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/tags/privacy/Product Designhttps://blog.nischalskanda.tech/tags/product-design/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/tags/product-design/Technologyhttps://blog.nischalskanda.tech/tags/technology/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/tags/technology/Brain Healthhttps://blog.nischalskanda.tech/tags/brain-health/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/tags/brain-health/Cognitive Sciencehttps://blog.nischalskanda.tech/tags/cognitive-science/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/tags/cognitive-science/Researchhttps://blog.nischalskanda.tech/tags/research/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/tags/research/ \ No newline at end of file diff --git a/public/tags/ollama/index.html b/public/tags/ollama/index.html index 51da868..1ee2db4 100644 --- a/public/tags/ollama/index.html +++ b/public/tags/ollama/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Ollama - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Ollama

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/ollama/index.xml b/public/tags/ollama/index.xml index 7653960..9cd32d1 100644 --- a/public/tags/ollama/index.xml +++ b/public/tags/ollama/index.xml @@ -1,19 +1,12 @@ - - - - Ollama on IDEA LABS - http://localhost:1313/tags/ollama/ - Recent content in Ollama on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - +Ollama on IDEA LABShttps://blog.nischalskanda.tech/tags/ollama/Recent content in Ollama on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> \ No newline at end of file diff --git a/public/tags/ollama/page/1/index.html b/public/tags/ollama/page/1/index.html index b8d82c5..762c835 100644 --- a/public/tags/ollama/page/1/index.html +++ b/public/tags/ollama/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/ollama/ - - - - - - +https://blog.nischalskanda.tech/tags/ollama/ \ No newline at end of file diff --git a/public/tags/page/1/index.html b/public/tags/page/1/index.html index 4a695e8..68e079d 100644 --- a/public/tags/page/1/index.html +++ b/public/tags/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/ - - - - - - +https://blog.nischalskanda.tech/tags/ \ No newline at end of file diff --git a/public/tags/page/2/index.html b/public/tags/page/2/index.html index f83de9e..921325c 100644 --- a/public/tags/page/2/index.html +++ b/public/tags/page/2/index.html @@ -1,173 +1,6 @@ - - - - - - - - - - - - - - -Tags - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - - - - - - - -
- -
-
- - - - - - - - - - - - - - +Tags

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/privacy/index.html b/public/tags/privacy/index.html index 15cfb9a..f5174c9 100644 --- a/public/tags/privacy/index.html +++ b/public/tags/privacy/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Privacy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Privacy

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/privacy/index.xml b/public/tags/privacy/index.xml index b678883..6a9fa8a 100644 --- a/public/tags/privacy/index.xml +++ b/public/tags/privacy/index.xml @@ -1,19 +1,12 @@ - - - - Privacy on IDEA LABS - http://localhost:1313/tags/privacy/ - Recent content in Privacy on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - +Privacy on IDEA LABShttps://blog.nischalskanda.tech/tags/privacy/Recent content in Privacy on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> \ No newline at end of file diff --git a/public/tags/privacy/page/1/index.html b/public/tags/privacy/page/1/index.html index 1d1eb55..a544bc3 100644 --- a/public/tags/privacy/page/1/index.html +++ b/public/tags/privacy/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/privacy/ - - - - - - +https://blog.nischalskanda.tech/tags/privacy/ \ No newline at end of file diff --git a/public/tags/product-design/index.html b/public/tags/product-design/index.html index 5c556af..ecfde53 100644 --- a/public/tags/product-design/index.html +++ b/public/tags/product-design/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Product Design - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Product Design

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/product-design/index.xml b/public/tags/product-design/index.xml index 2e54406..01b2b8e 100644 --- a/public/tags/product-design/index.xml +++ b/public/tags/product-design/index.xml @@ -1,19 +1,12 @@ - - - - Product Design on IDEA LABS - http://localhost:1313/tags/product-design/ - Recent content in Product Design on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - +Product Design on IDEA LABShttps://blog.nischalskanda.tech/tags/product-design/Recent content in Product Design on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> \ No newline at end of file diff --git a/public/tags/product-design/page/1/index.html b/public/tags/product-design/page/1/index.html index 614032c..33cc263 100644 --- a/public/tags/product-design/page/1/index.html +++ b/public/tags/product-design/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/product-design/ - - - - - - +https://blog.nischalskanda.tech/tags/product-design/ \ No newline at end of file diff --git a/public/tags/research/index.html b/public/tags/research/index.html index 2c507c2..1880b8e 100644 --- a/public/tags/research/index.html +++ b/public/tags/research/index.html @@ -1,158 +1,6 @@ - - - - - - - - - - - - - - -Research - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - -
- -
-
- - - - - - - - - - - - - - +Research

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/research/index.xml b/public/tags/research/index.xml index 08f98bc..438de26 100644 --- a/public/tags/research/index.xml +++ b/public/tags/research/index.xml @@ -1,19 +1,11 @@ - - - - Research on IDEA LABS - http://localhost:1313/tags/research/ - Recent content in Research on IDEA LABS - Hugo - en-us - Mon, 28 Jul 2025 20:30:07 +0530 - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +Research on IDEA LABShttps://blog.nischalskanda.tech/tags/research/Recent content in Research on IDEA LABSHugoen-usMon, 28 Jul 2025 20:30:07 +0530Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/tags/research/page/1/index.html b/public/tags/research/page/1/index.html index 0f5ba4f..bb4e841 100644 --- a/public/tags/research/page/1/index.html +++ b/public/tags/research/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/research/ - - - - - - +https://blog.nischalskanda.tech/tags/research/ \ No newline at end of file diff --git a/public/tags/technology/index.html b/public/tags/technology/index.html index a0dfbf5..dcce929 100644 --- a/public/tags/technology/index.html +++ b/public/tags/technology/index.html @@ -1,163 +1,6 @@ - - - - - - - - - - - - - - -Technology - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
- - -
-

- THE ONLY BLOGS YOU
- WOULD LOVE TO READ -

-
- -
- - - - - -
- -
-
- - - - - - - - - - - - - - +Technology

THE ONLY BLOGS YOU
WOULD LOVE TO READ

\ No newline at end of file diff --git a/public/tags/technology/index.xml b/public/tags/technology/index.xml index 7b00cb3..b2316ca 100644 --- a/public/tags/technology/index.xml +++ b/public/tags/technology/index.xml @@ -1,26 +1,22 @@ - - - - Technology on IDEA LABS - http://localhost:1313/tags/technology/ - Recent content in Technology on IDEA LABS - Hugo - en-us - Sun, 03 Aug 2025 10:16:03 +0530 - - - Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Google - http://localhost:1313/posts/you_shouldnt_share/ - Sun, 03 Aug 2025 10:30:00 +0530 - http://localhost:1313/posts/you_shouldnt_share/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> <img src="http://localhost:1313/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" alt="Chat bubbles spilling out from a phone into a search bar" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> <h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> <p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p> - - - Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Notice - http://localhost:1313/posts/ai_brain_impact/ - Sun, 27 Jul 2025 08:30:00 +0530 - http://localhost:1313/posts/ai_brain_impact/ - <figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> <picture> <source media="(max-width: 600px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> <source media="(max-width: 900px)" srcset="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> <img src="http://localhost:1313/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" loading="lazy" style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> <h2 id="introduction">Introduction</h2> <p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> - - - +Technology on IDEA LABShttps://blog.nischalskanda.tech/tags/technology/Recent content in Technology on IDEA LABSHugoen-usMon, 04 Aug 2025 19:26:28 +0530Stop Oversharing With AI: Your Deepest Secrets Don’t Belong on Googlehttps://blog.nischalskanda.tech/posts/you_shouldnt_share/Sun, 03 Aug 2025 10:30:00 +0530https://blog.nischalskanda.tech/posts/you_shouldnt_share/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_c5767b00466e87ed.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_7e6d6f0efacf03f2.jpg"> + <img src="https://blog.nischalskanda.tech/posts/you_shouldnt_share/images/thumbnail_hu_6be122ebd9c97e86.jpg" + alt="Chat bubbles spilling out from a phone into a search bar" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">Your secrets? Yep, they&rsquo;re not as private as you think.</figcaption></figure> +<h2 id="you-should-never-share-anything-personal-with-chatgpt">You Should Never Share Anything Personal With ChatGPT</h2> +<p>So folks, welcome to another episode of <em>Nischal vs. the AI Apocalypse</em>.<br> +This one’s spicy because, yeah, <strong>people are spilling their hearts to ChatGPT</strong> like it’s their BFF therapist—and turns out, it’s basically shouting that to the internet.</p>Help! AI’s Turning Our Brains to Goo, and We’re Too Busy Swiping to Noticehttps://blog.nischalskanda.tech/posts/ai_brain_impact/Sun, 27 Jul 2025 08:30:00 +0530https://blog.nischalskanda.tech/posts/ai_brain_impact/<figure class="responsive-image" style="margin: 2rem 0; text-align: center;"> + <picture> + <source media="(max-width: 600px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_ab31e9d5f0809e96.jpg"> + <source media="(max-width: 900px)" srcset="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_cb6c4cdcbfe612fe.jpg"> + <img src="https://blog.nischalskanda.tech/posts/ai_brain_impact/images/thumbnail_hu_d3c0185f2b13abea.jpg" + alt="A cartoon brain melting into a puddle with a smartphone glowing nearby" + loading="lazy" + style="max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);"> + </picture><figcaption style="margin-top: 1rem; font-style: italic; color: #666; font-size: 0.9rem;">My brain’s legit goo while I’m vibing on Reels, bruh</figcaption></figure> +<h2 id="introduction">Introduction</h2> +<p>Hey peeps!, So picture this: I’m a 21-year-old B.Tech grad, fresh out of a Tier-2 college nobody cares about, and I basically owe my degree to ChatGPT for saving my ass on coding assignments and vivas. But, my brain’s turning into soggy sambar, and I’m too busy scrolling Reels to notice. Absolutely insaneeee, right? MIT’s Media Lab and other nerdy studies are yelling that AI’s torching our thinking, memory, and hustle. I’m not about to let my brain become a dead WhatsApp group, though. This blog, backed by research up to July 21, 2025, is my unfiltered Gen Z rant about our brain-drain drama and some lit fixes to keep our minds from crashing. So let&rsquo;s vibe with our stupidity, and let’s save our brains, bruv.</p> \ No newline at end of file diff --git a/public/tags/technology/page/1/index.html b/public/tags/technology/page/1/index.html index d47c916..f901f40 100644 --- a/public/tags/technology/page/1/index.html +++ b/public/tags/technology/page/1/index.html @@ -1,10 +1 @@ - - - - http://localhost:1313/tags/technology/ - - - - - - +https://blog.nischalskanda.tech/tags/technology/ \ No newline at end of file