Web Development
Open in Telegram
Web development learning path Frontend and backend resources. HTML, CSS, JavaScript, React, APIs and project ideas. Join π https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist
Show more4 330
Subscribers
+524 hours
+137 days
+5930 days
Data loading in progress...
Similar Channels
Tags Cloud
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
August '26
August '26
+150
in 0 channels
July '26
+150
in 0 channels
Get PRO
June '26
+109
in 0 channels
Get PRO
May '26
+114
in 1 channels
Get PRO
April '26
+155
in 1 channels
Get PRO
March '26
+84
in 0 channels
Get PRO
February '26
+81
in 0 channels
Get PRO
January '26
+104
in 9 channels
Get PRO
December '25
+76
in 0 channels
Get PRO
November '25
+92
in 1 channels
Get PRO
October '25
+82
in 0 channels
Get PRO
September '25
+71
in 0 channels
Get PRO
August '25
+61
in 0 channels
Get PRO
July '25
+91
in 0 channels
Get PRO
June '25
+85
in 0 channels
Get PRO
May '25
+78
in 0 channels
Get PRO
April '25
+81
in 0 channels
Get PRO
March '25
+89
in 1 channels
Get PRO
February '25
+120
in 0 channels
Get PRO
January '25
+279
in 1 channels
Get PRO
December '24
+319
in 1 channels
Get PRO
November '24
+133
in 0 channels
Get PRO
October '24
+180
in 1 channels
Get PRO
September '24
+117
in 2 channels
Get PRO
August '24
+129
in 1 channels
Get PRO
July '24
+148
in 0 channels
Get PRO
June '24
+181
in 0 channels
Get PRO
May '24
+175
in 1 channels
Get PRO
April '24
+216
in 0 channels
Get PRO
March '24
+300
in 0 channels
Get PRO
February '24
+422
in 2 channels
Get PRO
January '24
+387
in 0 channels
Get PRO
December '23
+342
in 1 channels
Get PRO
November '23
+9
in 0 channels
Get PRO
October '23
+15
in 0 channels
Get PRO
September '23
+549
in 0 channels
| Date | Subscriber Growth | Mentions | Channels | |
| 26 August | +5 | |||
| 25 August | +5 | |||
| 24 August | +5 | |||
| 23 August | +5 | |||
| 22 August | +3 | |||
| 21 August | +3 | |||
| 20 August | +8 | |||
| 19 August | +4 | |||
| 18 August | +5 | |||
| 17 August | +3 | |||
| 16 August | +2 | |||
| 15 August | +7 | |||
| 14 August | +13 | |||
| 13 August | +4 | |||
| 12 August | +4 | |||
| 11 August | +4 | |||
| 10 August | +5 | |||
| 09 August | +4 | |||
| 08 August | +6 | |||
| 07 August | +31 | |||
| 06 August | +3 | |||
| 05 August | +2 | |||
| 04 August | +4 | |||
| 03 August | +4 | |||
| 02 August | +3 | |||
| 01 August | +8 |
Channel Posts
| 2 | Top API Tools For Different Purposes | 211 |
| 3 | Why React Hydration Exists
When a server sends HTML to your browser, the page already looks complete before any JavaScript finishes loading.
But looks can be misleading. Buttons don't respond. Forms don't submit. Dropdowns don't open.
Hydration is the process where React attaches JavaScript to that existing HTML, making it interactive instead of rebuilding the page from scratch.
This is also why JavaScript bundle size matters so much. The browser can't hydrate components until it has downloaded, parsed, and executed their JavaScript.
That's why modern frameworks push more work to the server. Not because JavaScript is bad, but because sending less of it usually means users can interact with the page sooner. | 235 |
| 4 | β Stop Returning 200
One habit that makes debugging APIs much harder is returning HTTP 200 OK for every request.
An HTTP status code tells the client what happened before it even reads the response body.
Examples:
200 β Success
201 β Resource created
400 β Client sent invalid data
401 β Authentication required
403 β Authenticated, but not allowed
404 β Resource doesn't exist
500 β Server failed unexpectedly
If every response is 200, frontend developers have to inspect every response body just to know whether something failed.
Let HTTP do its job. That's what it was designed for. | 298 |
| 5 | What HTTP status code indicates a resource was not found? | 291 |
| 6 | TypeScript Mapped Types in API Responses | 316 |
| 7 | π Read The Source
When you're stuck with a library, stop searching YouTube after 20 minutes.
Open its documentation. If that doesn't explain it, read the source code.
You don't need to understand every file. Find the function you're calling and follow the execution.
You'll often discover hidden options, edge cases, or implementation details that never made it into the docs.
Reading source code is one of the fastest ways to become a stronger developer. | 328 |
| 8 | Which SQL clause is used to filter groups after a GROUP BY? | 308 |
| 9 | The Truth About CORS
CORS (Cross-Origin Resource Sharing) is a browser security mechanism that decides whether one website is allowed to request resources from another.
Suppose your frontend runs on:
http://localhost:5173
Your API runs on:
http://localhost:3000
Same computer. Different ports. That makes them different origins.
Your browser blocks the request because the API never explicitly allowed requests from that origin.
"But it works in Postman..." Of course it does. Postman isn't a browser. It doesn't enforce browser security rules.
If Postman works but your browser doesn't, the problem usually isn't your API logic. It's your server's CORS configuration. | 332 |
| 10 | What does the acronym DOM stand for? | 291 |
| 11 | VS Code Extensions You Need | 403 |
| 12 | π¨Someone open-sourced the Kage landing page and the Three.js skills behind it.
Every section scrolls through a 3D world and the whole thing is under 1MB of Three.js and code, 3MB with high quality images.
For a fully 3D scroll experience that's surprisingly lean.
Three skills included: build-threejs-scroll-worlds, falling-leaves and pointer-trail-emitter.
All open source on GitHub.
πCheck it out: https://github.com/MengTo/kage | 401 |
| 13 | Which method creates a new array without modifying the original? | 308 |
| 14 | Next.js SSG (Static Site Generation) | 455 |
| 15 | π¨ Refero Styles
Refero Styles is a curated gallery of production UI designs organized by visual style rather than by company. It makes it easy to explore layouts, components, and design patterns used across real applications, all from a single place.
This might came in handy when designing web or mobile interfaces.
π https://styles.refero.design/ | 351 |
| 16 | π§ 20 GitHub Repos That Expose What Tutorials Never Taught You
You can build a to-do app in five frameworks and still not know how a database index works. These repos close that gap.
1. computer-science
A full self-taught CS degree curriculum, for anyone who skipped college or forgot what they learned.
2. the-book-of-secret-knowledge
A huge stash of tools, tricks, and one-liners that experienced devs pick up over years, all in one place.
3. system-design-primer
Breaks down how the apps you use every day handle millions of users behind the scenes.
4. build-your-own-x
Walks you through building your own Git, Docker, or database, so the tools you use daily stop feeling like black boxes.
5. linux-insides
A gentle, detailed walkthrough of how the Linux kernel actually works under the hood.
6. professional-programming
Covers everything tutorials skip: engineering practices, architecture, and how real teams ship code.
7. project-based-learning
A list of real projects to build, for when tutorial hell starts feeling too comfortable.
8. you-dont-know-js
JavaScript fundamentals most developers using JS every day have never actually learned.
9. CS-Notes
Clear, structured notes on algorithms, operating systems, networking, and databases in one repo.
10. the-algorithms
Classic algorithms and data structures implemented in almost every language, good for understanding rather than memorizing.
11. free-programming-books
Thousands of free books covering the fundamentals no bootcamp has time for.
12. developer-roadmap
Visual maps of what "knowing" a certain stack really involves, useful when you're not sure what you're missing.
13. system-design-101
Visual explanations of system design concepts, built for people who learn by seeing.
14. coding-interview-university
A study plan built around filling CS gaps, which happens to also prepare you for interviews.
15. awesome-selfhosted
A list of services you can run yourself, good for anyone who's only ever read about infrastructure.
16. realworld
The same production app built in dozens of frameworks, so you can compare how they actually differ.
17. public-apis
Free APIs to build against real, messy data instead of another seeded dummy database.
18. first-contributions
A guided first pull request, for anyone too intimidated to touch someone else's codebase.
19. awesome
The master list of curated resources. When you don't know what you don't know, start here.
20. 30-seconds-of-code
Short, sharp snippets that teach patterns instead of just giving you copy-paste answers.
ββββββββββββββ
π Join @bigdataspecialist for more π | 277 |
| 17 | Worm Compromises Over 1,300 npm Packages Including Popular Caching Tools
A self-spreading worm called ChainDrop has compromised more than 1,300 npm packages, including popular ones like Keyv, Cacheable, and flat-cache.
The packages together have around 2 billion monthly downloads. The attack started after a maintainerβs GitHub account was compromised. The malware steals credentials and spreads by publishing new malicious versions.
Developers are urged to check their dependencies and rotate any exposed credentials. | 277 |
| 18 | Golang for DevOps Roadmap.pdf | 271 |
| 19 | π The Little ASP.NET Core Book
βοΈ Authors: Nate Barbettini
π Read Online
#ASP.NET
ββββββββββββββββββββ
π @free_programming_books_bds π | 303 |
| 20 | Which practice helps developers detect integration issues before deploying to production? | 312 |
