Web Development CS JS Python JavaScript Hacking ReactJs Python django Flask CSS Frontend Backend Full Stack Java Node Pdf Books
3.99K subscribers
878 photos
11 videos
995 files
354 links
One place for the latest in JavaScript, Python, Django, React, and more. Get top-notch tutorials, tips, and downloadable resources. Join us to elevate your tech skills!
Download Telegram
This javascript question is simple.

Let's see how much you know about strings and numbers.
#programming
πŸ‘1
In JavaScript, when you add numbers together, they add up. But if you mix in a string, it gets stuck to the end. So, 3 + 4 + '5' becomes '75'. Cool, right? πŸ€“ #JavaScript #Programming
CSS Object-fit PropertyπŸ”₯

You can set the resizing behaviour of an image or video to fit it in its container using the object-fit property.
❀3πŸ‘1
The answer is 10 as 20 can not be accessible due to block scope which restricts the access from outside .
Crucial Font Size Guidelines for Web Development:

πŸ“ Body Text: 16px to 18px for readability

πŸ“ Headings: H1 at 32px to 36px, scale down for H2-H6

πŸ“ Buttons: Minimum of 14px for clarity

πŸ“ Navigation Menu: 14px to 16px for visibility

πŸ“ Mobile Responsiveness: Scale down body text by 15-20% on small screens

πŸ“ Accessibility: Use min 9pt for legibility in footers/disclaimers
❀1
11 tips for every web dev beginner:

1. Create projects πŸ—ƒοΈ
2. Read books πŸ“š
3. Read docs πŸ“ƒ
4. Help others πŸ‘¨β€πŸ«
5. Daily coding πŸ‘¨β€πŸ’»
6. Be active in the community 🐦
7. Internet surfing 🌊
8. Learn daily πŸ’ͺ🏻
9. Read latest tech blogs πŸ“–
10. Take short breaks 🍻
11. Write notes ✍️
❀3
As a web developer today, most of your works are related to APIs.

But most of developers don't actually understand what it is. πŸ‘€

When we talk about API, we are usually referring to Web API. 🌐

Web API (Application Programmatic Interface) can provide:

1. Resources, e.g. bus arrival time, restaurant ratings...
2. Services or microservices, e.g. converting coordinates into place names, creating QR codes...

With Web APIs, developers can then easily incorporate these building blocks into other web applications.

πŸ‘©β€πŸ’»There's some features of different Web API, for example:

1. Public vs. private
- Public APIs are available to everyone, but may subject to licenses
- Private APIs are only available to internal developers

2. Free vs. premium
- Premium APIs may charge on-demand
- That's why there's also this term β€œAPI Economy”!

There's actually API marketplace and directory site, like
- RapidAPI
- ProgrammableWeb

Here's some example of public API that you can explore:

1. Google (developers.google.com/apis-explorer)

2. Facebook (developers.facebook.com/docs/apis-and-…)

3. Data portals of many cities (dataportals.org/search)And you also have to understand what is 'API endpoints'.

API usually provides endpoints as a URI to provide services.

And it needs to be static, without affecting applications built upon ✨And that's why there's a standard for writing API called REST.

REST stands for 'REpresentational State Transfer'.

It's an architectural style of writing APIs.