Top 12 Tips for API Security
- Use HTTPS
- Use OAuth2
- Use WebAuthn
- Use Leveled API Keys
- Authorization
- Rate Limiting
- API Versioning
- Whitelisting
- Check OWASP API Security Risks
- Use API Gateway
- Error Handling
- Input Validation
- Use HTTPS
- Use OAuth2
- Use WebAuthn
- Use Leveled API Keys
- Authorization
- Rate Limiting
- API Versioning
- Whitelisting
- Check OWASP API Security Risks
- Use API Gateway
- Error Handling
- Input Validation
Kit
ByteByteGo System Design Newsletter
What is facicon and How to add a Favicon to a website❓
▪️ Favicon is a small image that appears beside the website name.
▪️ It is known by many names like tab icon, bookmark icon because it is displayed on a browser's tab, bookmark bar etc.
▪️ Most famous & widely used format for favicon is .ico
▪️ It is known by many names like tab icon, bookmark icon because it is displayed on a browser's tab, bookmark bar etc.
▪️ Most famous & widely used format for favicon is .ico
1. How to create a Favicon?
▪️ Any image can work but it should be small & simple with high contrast
▪️ Normally preferred sizes are 16 x 16 and 32 x 32.
▪️ You can also create & download a favicon using these sites →
• favicon.cc
• favicon.io
▪️ Any image can work but it should be small & simple with high contrast
▪️ Normally preferred sizes are 16 x 16 and 32 x 32.
▪️ You can also create & download a favicon using these sites →
• favicon.cc
• favicon.io
2. Adding Favicon to Website
▪️ a favicon is added via <link> tag
▪️ Just add the <link> tag inside <head> with the path to the favicon.
⬇️
▪️ a favicon is added via <link> tag
▪️ Just add the <link> tag inside <head> with the path to the favicon.
⬇️
Forwarded from Learn Python with Python Video Tutorial Python Course Python Note Python Book Python PDF Django Flask Python
Book shared in resources channel
Name: Web Design Playground - HTML and CSS the Interactive Way - Paul McFedries (Manning, 2019)
https://t.me/c/2109572262/888
Name: Web Design Playground - HTML and CSS the Interactive Way - Paul McFedries (Manning, 2019)
https://t.me/c/2109572262/888
What will be the output of the following JavaScript code
Undefined.
This is due to hoisting. The code behaves like this 👇
var a; //the variable got hoisted
console.log(a); // Outputs: undefined
a = 5;
[We know when a declare a variable the initial value is "undefined" until we assign a value]
This is due to hoisting. The code behaves like this 👇
var a; //the variable got hoisted
console.log(a); // Outputs: undefined
a = 5;
[We know when a declare a variable the initial value is "undefined" until we assign a value]
👍1