Adam | Full stack developer

801 posts

Adam | Full stack developer banner
Adam | Full stack developer

Adam | Full stack developer

@fullstacklover

Full stack developer | Flutter • NodeJs • ReactJs • Laravel • NestJs • GraphQL | Linux ~ Enthousiast ❤️

localhost Katılım Nisan 2026
2.3K Takip Edilen1K Takipçiler
Adam | Full stack developer retweetledi
Karan Bhilhatiya
Karan Bhilhatiya@karanbhilhatiya·
learn c++
English
2
1
4
246
Adam | Full stack developer retweetledi
Abdulkadir | Cybersec
Abdulkadir | Cybersec@cyber__razz·
How to 5x your wifi speed
English
2
20
125
3.9K
Adam | Full stack developer retweetledi
Ahmedkhan
Ahmedkhan@Ahmed___khaan·
Literature student tries to explain cyber attack😆
Ahmedkhan tweet media
English
2
4
13
331
Python Programming
Python Programming@PythonPr·
Python Quiz: What is the output of the following Python code?
Python Programming tweet media
English
9
3
25
3.3K
Adam | Full stack developer
Adam | Full stack developer@fullstacklover·
@SumitM_X Because DB uses account_id index to fetch rows, then still sorts by trade_time. Separate indexes cannot be combined well, so extra sorting or temp table happens. Composite index (account_id, trade_time) fixes it by returning already ordered data.
English
0
0
2
1.2K
SumitM
SumitM@SumitM_X·
This query is running slow: SELECT * FROM trades WHERE account_id = 1021 ORDER BY trade_time; Index exists on account_id Index exists on trade_time Why is this still slow ?
English
8
1
57
12.5K
Adam | Full stack developer retweetledi
Uday👨‍💻
Uday👨‍💻@uday_devops·
😼 Top 12 AI GitHub Repositories ① 🦞 OpenClaw → Personal AI agent on your device ② 🔗 n8n → AI workflow automation ③ 🦙 Ollama → Run LLMs locally ④ 🧩 Langflow → Visual AI agent builder ⑤ 🚀 Dify → Build production AI apps ⑥ 🦜 LangChain → Framework for AI agents ⑦ 💬 Open WebUI → Self-hosted ChatGPT alt ⑧ 🐋 DeepSeek-V3 → Open-weight LLM ⑨ 🌈 Gemini CLI → Use Gemini from terminal ⑩ 🔎 RAGFlow → Enterprise RAG engine ⑪ ✴️ Claude Code → Agentic coding tool ⑫ 👥 CrewAI → Build teams
Uday👨‍💻 tweet media
English
15
11
79
1.5K
Adam | Full stack developer retweetledi
Damilola Ashiedu | Pretty Cyber Girl 💻💡
HTTP error codes simplified ❌400 - The server does not understand what you want ❌401 - You need to log in ❌403 - You are not allowed to access this area, even while you are logged in ❌404 - The page does not exist ❌429 - You are clicking things too fast ❌500 - Your request broke something on the server ❌502 - One server got an invalid response from another server ❌503 - The server is too busy ❌504 - The server took too long to respond to another server Next up, success codes 🔁&❤️
English
5
22
81
2.7K
Adam | Full stack developer retweetledi
Adam | Full stack developer
Adam | Full stack developer@fullstacklover·
Hi guys 👋 I’m a Full stack developer passionate about building web and mobile apps. If you’re in tech, let’s connect !
English
26
3
54
1.8K
Adam | Full stack developer
Adam | Full stack developer@fullstacklover·
@SumitM_X Partitioning by time may not help because the query filters by chat_id, not by date. I’d first add or check a composite index like (chat_id, created_at) so the database can quickly find and sort messages for one chat.
English
1
0
3
656
SumitM
SumitM@SumitM_X·
Tech Lead sees most queries look like this: SELECT * FROM messages WHERE chat_id = 874234 ORDER BY created_at And THE TECH LEAD sys: "Lets partition messages table by time." What's your reply?
English
16
1
46
10.1K
Adam | Full stack developer
Adam | Full stack developer@fullstacklover·
@ayesha_fatiima A library is a tool you call when you need it, but a framework controls the app flow and calls your code itself. In short: with a library you stay in control, with a framework the framework is in control.
English
0
0
0
314
ayesha
ayesha@ayesha_fatiima·
As a Developer, do you know the difference between: - Library - Framework
ayesha tweet media
English
34
3
66
6.4K
Adam | Full stack developer
Adam | Full stack developer@fullstacklover·
@devXritesh First, I check indexes and the query execution plan. In staging, small data can hide performance problems, but in production the database may scan millions of rows because of missing indexes or inefficient joins.
English
0
0
0
47
Ritesh Roushan
Ritesh Roushan@devXritesh·
As a developer, Your SQL query works in staging… but becomes painfully slow in production after data grows 100x. What’s the first thing you check?
English
49
3
62
3.9K
Adam | Full stack developer retweetledi
Adam | Full stack developer
Adam | Full stack developer@fullstacklover·
Clean Laravel architecture 👇 📁 app/ ┣ 📂 Http/ ┃ ┣ 📂 Controllers/ ┃ ┃ ┣ 🎯 Admin/ ┃ ┃ ┣ 🌐 API/ ┃ ┃ ┗ 🖥️ Web/ ┃ ┣ 📂 Requests/ ┃ ┃ ┣ ✅ Admin/ ┃ ┃ ┣ ✅ API/ ┃ ┃ ┗ ✅ Web/ ┃ ┗ 📂 Middleware/ 🔐 ┣ 📂 Services/ ┃ ┣ ⚙️ Admin/ ┃ ┣ ⚙️ API/ ┃ ┗ ⚙️ Shared/ ┣ 📂 Repositories/ ┃ ┣ 🗄️ Admin/ ┃ ┣ 🗄️ API/ ┃ ┗ 🗄️ Shared/ ┣ 📂 Models/ 🧩 ┣ 📂 Jobs/ ⏳ ┣ 📂 Events/ 📡 ┣ 📂 Traits/ ♻️ ┣ 📂 Helpers/ 🛠️ ┗ 📂 Notifications/ 🔔
English
1
4
13
305
Adam | Full stack developer retweetledi
Kirtesh
Kirtesh@AKirtesh·
Full stack developer roadmap for 2026 👇 Month 1: Frontend basics - HTML CSS JavaScript - React fundamentals - TypeScript basics - Tailwind CSS Month 2: Backend basics - Node.js or Spring Boot - REST API design - PostgreSQL basics - Authentication JWT Month 3: Advanced skills - Next.js full stack - Docker basics - Redis caching - Testing fundamentals Month 4: Production skills - CI/CD pipeline - Cloud deployment - Monitoring basics - Performance optimization Month 5: Portfolio - Build 2 real projects - Deploy publicly - Write about it - Share on X Save this. 📌 Which month are you on? 👇
English
9
7
41
1.3K
Adam | Full stack developer retweetledi
iShowCybersecurity
iShowCybersecurity@ishowcybersec·
Protip: alias sudo to "please" for a much more wholesome linux experience
iShowCybersecurity tweet media
English
2
4
13
491