๐ดFree course for limited time ๐ด
https://www.udemy.com/course/create-real-world-php-webapp-from-scratch/?ref=4555444466&couponCode=FE33F3FF623DFEA8A57F
https://www.udemy.com/course/create-real-world-php-webapp-from-scratch/?ref=4555444466&couponCode=FE33F3FF623DFEA8A57F
๐8
Join our new channel to learn AI tools ๐https://t.me/Aitechnologylearning
Join our new channel to learn the latest AI tools and techniques.
๐ Master powerful AI tools like ChatGPT, Midjourney, and Stable Diffusion.
Join our channel now: https://t.me/Aitechnologylearning
Join our new channel to learn the latest AI tools and techniques.
๐ Master powerful AI tools like ChatGPT, Midjourney, and Stable Diffusion.
Join our channel now: https://t.me/Aitechnologylearning
๐4
https://www.udemy.com/course/jquery-complete-jquery-course-from-beginner-to-advanced/?couponCode=0AD5EEA1379057396175
๐ด Free for limited time
๐ด Free for limited time
๐3๐ฅ2โค1
Learn to Code using AI - ChatGPT Programming Tutorial (Full Course) https://youtu.be/dJhlMn2otxA?feature=shared
๐6๐ฅ1๐1
Things that a Web Developer must know concerning database storage and management:
๐กCharacteristics of relational/non-relational data.
๐กKnowledge of NoSQL databases.
๐กKnowledge of web storage.
Following are some of the best databases you must learn
๐งRelational databases: Within the tables, data is stored in rows and columns. The relational database management system (RDBMS) is the program that allows you to create, update, and administer a relational database. Microsoft SQL Server, Oracle Database, MySQL, PostgreSQL, and IBM Db2 are examples of rational databases.
๐งNoSQL: NoSQL databases (aka โnot only SQLโ) are non-tabular, and store data differently than relational tables. NoSQL databases come in a variety of types based on their data model. The main types are document, key-value, wide-column, and graph. Apache Cassandra, MongoDB, CouchDB, and Couchbase are examples of NoSQL.
๐งCloud database: It refers to any database thatโs designed to run in the cloud. Like other cloud-based applications, cloud databases offer flexibility and scalability, along with high availability. Cloud databases are also often low-maintenance since many are offered via a SaaS model. Microsoft Azure SQL Database, Amazon Relational Database Service, Oracle Autonomous Database are examples of cloud database..
โกTechnology Stacks- MEAN, MERN, MeVn, Lamp
๐ฐMEAN Stack: MEAN stack development refers to the development process that falls within these particular sets of technologies MongoDB, ExpressJS, Angular, NodeJS.
๐ฐMERN Stack: It is is one of several variations of the MEAN stack (MongoDB, Express, Angular, Node), where the traditional Angular frontend framework is replaced with React JS. The main benefit of using MERN is the integration of React and its powerful library and capability to use code simultaneously on servers and browsers.
๐ฐMEVN Stack: Other variants of MEAN Stack, the MEVN Stack (MongoDB, Express, Vue, Node), and really any frontend JavaScript framework can work. It is the open-source JavaScript software stack that has emerged as a new and evolving way to build powerful and dynamic web applications
๐ฐLAMP: It is an old classic industry standard when it comes to time-tested web development stacks, which comprises MySQL (Relational Database Management), Linux (Operating System), PHP (Programming Language), and Apache (HTTP server).
๐กCharacteristics of relational/non-relational data.
๐กKnowledge of NoSQL databases.
๐กKnowledge of web storage.
Following are some of the best databases you must learn
๐งRelational databases: Within the tables, data is stored in rows and columns. The relational database management system (RDBMS) is the program that allows you to create, update, and administer a relational database. Microsoft SQL Server, Oracle Database, MySQL, PostgreSQL, and IBM Db2 are examples of rational databases.
๐งNoSQL: NoSQL databases (aka โnot only SQLโ) are non-tabular, and store data differently than relational tables. NoSQL databases come in a variety of types based on their data model. The main types are document, key-value, wide-column, and graph. Apache Cassandra, MongoDB, CouchDB, and Couchbase are examples of NoSQL.
๐งCloud database: It refers to any database thatโs designed to run in the cloud. Like other cloud-based applications, cloud databases offer flexibility and scalability, along with high availability. Cloud databases are also often low-maintenance since many are offered via a SaaS model. Microsoft Azure SQL Database, Amazon Relational Database Service, Oracle Autonomous Database are examples of cloud database..
โกTechnology Stacks- MEAN, MERN, MeVn, Lamp
๐ฐMEAN Stack: MEAN stack development refers to the development process that falls within these particular sets of technologies MongoDB, ExpressJS, Angular, NodeJS.
๐ฐMERN Stack: It is is one of several variations of the MEAN stack (MongoDB, Express, Angular, Node), where the traditional Angular frontend framework is replaced with React JS. The main benefit of using MERN is the integration of React and its powerful library and capability to use code simultaneously on servers and browsers.
๐ฐMEVN Stack: Other variants of MEAN Stack, the MEVN Stack (MongoDB, Express, Vue, Node), and really any frontend JavaScript framework can work. It is the open-source JavaScript software stack that has emerged as a new and evolving way to build powerful and dynamic web applications
๐ฐLAMP: It is an old classic industry standard when it comes to time-tested web development stacks, which comprises MySQL (Relational Database Management), Linux (Operating System), PHP (Programming Language), and Apache (HTTP server).
โค4๐4๐ฅ1
Frontend Developer 60 Days Roadmap.pdf
4.6 MB
๐ฅ15๐ฅด3๐2
const obj = {};
let value = 0;
Object.defineProperty(obj, 'prop', {
get() {
return value;
},
set(newValue) {
value = newValue + 1;
},
configurable: true,
enumerable: true
});
obj.prop = 10;
console.log(obj.prop);
๐ดWhat will be the output??
#javascript #quiz
๐11
const obj = { a: 1, b: 2 };
const proxy = new Proxy(obj, {
get(target, prop) {
return prop in target ? target[prop] : 0;
}
});
console.log(proxy.a, proxy.b, proxy.c);
๐ก What will be output??
๐8๐2
โจ๏ธ CSS: Align Icon with Text
"cap" is a CSS unit which is equal to the "cap height", that is, the size of the capital letters in a font.
This helps us to easily size icons that lie next to a piece of text to perfectly match the height of the text - no more fiddling around with rem or px units ๐คฉ
โ Question: Do you feel this is a better approach or do you like to define a specific dimension for your items?
"cap" is a CSS unit which is equal to the "cap height", that is, the size of the capital letters in a font.
This helps us to easily size icons that lie next to a piece of text to perfectly match the height of the text - no more fiddling around with rem or px units ๐คฉ
โ Question: Do you feel this is a better approach or do you like to define a specific dimension for your items?
๐21
๐ฅ Git: Merging vs Rebasing
In git, when there are some changes in a parent branch from which you forked, there are two strategies to incorporate them into your working branch:
โจ Merging:
As the name suggests, 'merges' the parent branch into your branch. The advantage is that handling conflicts (if any) is easier, since you only need to resolve them for the merge commit once. However, this may make the git history a bit harder to follow
โจ Rebasing:
Takes all the commits you made in your branch, and applies them on top of the head of the parent branch. As if repositioning the base of the branch.
This helps to create a linear and easy to follow git history, but conflict resolution may be tedious and you need to force push the branch to the origin.
In git, when there are some changes in a parent branch from which you forked, there are two strategies to incorporate them into your working branch:
โจ Merging:
As the name suggests, 'merges' the parent branch into your branch. The advantage is that handling conflicts (if any) is easier, since you only need to resolve them for the merge commit once. However, this may make the git history a bit harder to follow
โจ Rebasing:
Takes all the commits you made in your branch, and applies them on top of the head of the parent branch. As if repositioning the base of the branch.
This helps to create a linear and easy to follow git history, but conflict resolution may be tedious and you need to force push the branch to the origin.
๐6โค3