Posts

How I Ethically Hacked My School Website Using AI

Image
  As a tech-savvy student passionate about cybersecurity, I decided to test my school's website security — ethically. With full permission from the IT department, I combined my knowledge of ethical hacking with AI tools like ChatGPT to identify and report vulnerabilities. Step 1: Getting Permission   Before touching a line of code, I reached out to my school's tech team. After explaining my intentions and getting the green light, I was ready to begin. Step 2: AI as My Assistant   I used ChatGPT to brainstorm common website vulnerabilities, write Python scripts for scanning input fields, and simulate brute-force login attempts (all on test accounts). Tools like SQLMap and Burp Suite came in handy — but with ChatGPT, I could understand and modify code faster. Step 3: What I Found   With AI assistance, I discovered a few outdated libraries and unprotected input fields vulnerable to XSS (Cross-Site Scripting). I compiled a detailed report and sent it to th...

I Built an AI Version of Myself That Remembers Everything

Image
  Intro:   Have you ever wondered what it would be like to have a digital version of yourself — one that talks like you, thinks like you, and even remembers conversations? I decided to make that real. In this post, I’ll break down how I built an AI clone of myself using tools like ChatGPT, memory modules, and voice cloning tech. What I Used:   - ChatGPT / GPT-4 for personality and reasoning   - LangChain to give it memory and context over time   - ElevenLabs / TTS for realistic voice cloning   - Streamlit / Gradio for a chat interface   - Pinecone / FAISS for vector-based long-term memory   The Process:   1. Voice Clone: I trained a model with my own voice samples.   2. Memory Setup: Using LangChain + vector DB, the AI remembers past chats.   3. Personality Tuning: Fine-tuned prompts to mimic how I talk and think.   4. Deployment: Integrated everything into a web app. Why I...

How Small Modular Reactors (SMRs) Are Changing the Future of Energy

Image
 Introduction:   As the world pushes toward cleaner, more reliable energy sources, Small Modular Reactors (SMRs) are gaining serious attention. Unlike traditional nuclear power plants, these compact reactors are designed to be more flexible, cost-effective, and safe — potentially making nuclear power more accessible than ever. --- What Are SMRs?   SMRs are advanced nuclear reactors that produce up to 300 MW of power per unit — about a third of what traditional plants generate. But their key advantage lies in modularity. They’re factory-built, easier to transport, and can be installed in remote or off-grid areas. --- Why SMRs Are Game-Changers:   - Smaller Footprint: Ideal for locations where large plants aren't practical   - Improved Safety: Passive cooling systems mean less risk during malfunctions   - Scalability: Multiple SMRs can be linked to increase output as needed   - Lower Costs: Shorter build times and factory as...

🚗 How I Made GTA 5 NPCs Smarter Using ChatGPT — And It Was Hilarious

Image
  Have you ever thought, “What if GTA 5’s NPCs could actually talk like real people?” Not just mumble the same old lines — but respond intelligently, joke, argue, or even flirt back? Well... I made that happen. Thanks to ChatGPT, GTA 5 just got a crazy AI upgrade. --- 🎮 What I Did: With the help of a modding framework and some scripting, I integrated ChatGPT into GTA 5’s NPCs. Now, instead of spitting out boring, pre-recorded lines, the pedestrians of Los Santos actually respond based on context — live, unscripted, and often weirdly hilarious. Imagine bumping into a random NPC and they actually comment on your car… or roast your outfit. --- 🤖 Key Moments From My Experiment: ✔ An NPC roasted my terrible fashion sense. ✔ A random old man gave me relationship advice... seriously. ✔ A cop in the middle of a chase paused to ask why I steal cars. ✔ Some NPCs flirted — others got deep, asking life questions I wasn't prepared for. It wasn’t just chaos — it felt like GTA 5 became a whole ...

🚀 How to Build a Custom TradingView Indicator Using ChatGPT (No Coding Needed!)

Image
  Have you ever wished you could create your own custom indicator on TradingView but felt blocked by complicated Pine Script coding? Guess what — with ChatGPT, it’s now super easy. You can literally build an indicator in minutes without writing a single line of code yourself. Here’s exactly how I did it — and how you can too. --- ✅ Step 1: Define Your Indicator Idea Start with a simple, clear concept. Ask yourself: Do I want an EMA crossover alert? Or an RSI-based signal? Maybe I want custom candlestick patterns highlighted? The more clearly you describe your idea, the better ChatGPT will perform. Example idea: 👉 “Give me a buy signal when the 50 EMA crosses above the 200 EMA.” --- ✅ Step 2: Let ChatGPT Write the Pine Script Head over to ChatGPT and type your request in plain English. Something like: “Write a TradingView Pine Script that shows a buy signal when RSI crosses below 30 and a sell signal when it crosses above 70.” ChatGPT will instantly generate the exact Pine Script c...

Blockchain Explained in 7 Minutes: What It Is and How It Works

Image
  Introduction You’ve probably heard the buzz around blockchain, but what is it really? Is it just about Bitcoin? Or does it go beyond cryptocurrencies? In this post, we’ll break down blockchain in simple, clear terms — no tech jargon — and explain why it’s such a big deal. --- What Is Blockchain? At its core, blockchain is a type of digital ledger — like a notebook that securely records data or transactions. But unlike a regular database stored in one location, a blockchain is shared across thousands of computers worldwide. These computers are called nodes, and they work together to keep the system running smoothly. Because no single person, company, or government owns the entire system, blockchain is said to be: Decentralized: No central control. Transparent: Everyone on the network can see the records. Secure: Data is encrypted and protected. Immutable: Once recorded, information cannot be changed or deleted. --- How Does Blockchain Work? Here’s a simple step-by-step breakdown: ...

Mastering Backend Development: Step-by-Step Roadmap for Beginners.

Image
  Introduction When you click a button on a website, submit a form, or log in to your account — there’s a whole world working behind the scenes to make that happen. That’s where backend development comes in. If you're new to this exciting and in-demand field, this guide will help you understand the core concepts and set you on the path to becoming a backend developer. --- What is Backend Development? Backend development refers to the server-side part of web applications. It’s responsible for things like: Storing and retrieving data from databases Managing user authentication and authorization Handling server logic and API communication While frontend development focuses on what users see, the backend ensures that everything functions smoothly behind the scenes. --- Key Components of Backend Development Server: Responds to requests from the frontend and sends back the appropriate data. Database: A structured system where your application's data is stored and retrieved. APIs (App...