https://chatgpt.com/share/6a079540-8588-83ec-8566-3494e8c025c4
Time.
Friday, 15 May 2026
Wednesday, 13 May 2026
3rd sem chutti
1. project -:
2. leetcode- legularly
3. gen ai -regularly
4. cs funcdamental
5. english speaking : regularly
6. deep learning and ml ki practice -:
Friday, 8 May 2026
docker ka use
watch campusx video
then fastapi wale course m se repo m dockerfile wali file dekh
https://chatgpt.com/share/69fe4e12-148c-83e8-9d78-05c8686a46e8
Saturday, 18 April 2026
page bana jisse har section pe naya page aa jaye
Samajh gaya bhai — tu “scroll pe next section / page jaisa feel” wali website banana chahta hai (like Apple, landing pages, etc.).
Isko bolte hain 👉 Single Page Scroll Website (sections instead of pages)
🧠 Concept simple hai:
Ek hi page hota hai
Usme multiple sections (divs) hote hain
Har section = ek “page jaisa feel”
Scroll karte hi next section full screen pe aata hai
🔥 Basic React Example (Full Working)
📁 Structure
src/
├── App.jsx
├── App.css
✅ App.jsx
import './App.css';
function App() {
return (
<div className="container">
<section className="section section1">
<h1>Welcome to the World of Automation</h1>
<p>Easytrain</p>
</section>
<section className="section section2">
<h1>Our Services</h1>
<p>We build smart automation solutions</p>
</section>
<section className="section section3">
<h1>About Us</h1>
<p>We are a tech-driven company</p>
</section>
<section className="section section4">
<h1>Contact</h1>
<p>Get in touch with us</p>
</section>
</div>
);
}
export default App;
🎨 App.css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
scroll-snap-type: y mandatory;
overflow-y: scroll;
height: 100vh;
}
.section {
height: 100vh;
scroll-snap-align: start;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
/* Different colors for sections */
.section1 {
background: #111;
color: white;
}
.section2 {
background: #007bff;
color: white;
}
.section3 {
background: #28a745;
color: white;
}
.section4 {
background: #ffc107;
color: black;
}
✨ Result kya hoga:
Har scroll pe ek naya “page-like section”
Smooth snapping effect 🔥
Modern landing page feel
🚀 Advanced (next level banana hai?)
Agar tu aur pro banana chahta hai toh use kar:
framer-motion→ animationsreact-scroll→ smooth navigationlocomotive-scroll→ premium scrolling feel
🧠 Real world example:
Apple website 🍎
Tesla website 🚗
Startup landing pages
Agar tu bole toh main tujhe:
👉 animation + navbar + smooth scroll + modern UI wala full project bana ke de sakta hoon (resume level 🔥)
Wednesday, 15 April 2026
gemma 4 tranformwr google ke se image and voice ko like bulwana use karna
https://chatgpt.com/share/69e00436-1f1c-83e8-906e-ed208feb093e
Saturday, 4 April 2026
graph neural nw ke sath work ke liye
https://chatgpt.com/share/69d11f52-52cc-8324-af40-0d5e8ab1af3c
ye kaggle ka data
https://www.kaggle.com/competitions/openaimer26-1/data
Tuesday, 31 March 2026
lstm
isko chagpt dekh le like chat chi hui hai
https://chatgpt.com/share/69cbe7fb-a594-8323-8d92-2efca81bf344
Hello
chatbot using react mongo
https://chatgpt.com/share/6a079540-8588-83ec-8566-3494e8c025c4
-
1. Deep learning specilization deeplearning.ai link- link (do a research what is transfer learning) 2. machine learning ka youtube ka cou...
-
kaise use karna Bhai .apply() Pandas ka most used aur most powerful function hai — ye tab use hota hai jab: Tum har row ya har col...
-
1: PriorityQueue<long[]> occ = new PriorityQueue<>((a, b) -> { if(a[2] != b[2]) { ...