Best way to master CSS,๐ฅ
The CSS tree ๐
|
|โโ Text Styles
| |โโ color
| |โโ font
| | โโโ font-family
| | โโโ font-size
| | โโโ font-weight
| |โโ text-align
| |โโ text-decoration
| | โโโ underline
| | โโโ line-through
| |โโ line-height
| โ-โ letter-spacing
|
|โโ Box Model
| |โโ width
| |โโ height
| |โโ margin
| | โโโ margin-top
| | โโโ margin-right
| | โโโ margin-bottom
| | โโโ margin-left
| |
| |โโ padding
| | โโโ padding-top
| | โโโ padding-right
| | โโโ padding-bottom
| | โโโ padding-left
| |
| โ-โ border
| |โโ border-width
| | |โโ border-top-width
| | |โโ border-right-width
| | |โโ border-bottom-width
| | โโโ border-left-width
| |โโ border-color
| | โโโ border-top-color
| | โโโ border-right-color
| | โโโ border-bottom-color
| | โโโ border-left-color
| โโโ border-radius
| โโโ border-top-left-radius
| โโโ border-top-right-radius
| โโโ border-bottom-left-radius
| โโโ border-bottom-right-radius
|
|โโ Positioning
| โโโ position
| โโโ top
| โโโ right
| โโโ bottom
| โโโ left
|
|โโ Layout
| โโโ display
| โโโ visibility
| โโโ float
| โโโ clear
|
|โโ Flexbox
| โโโ flex
| โโโ flex-direction
| โโโ flex-wrap
| โโโ justify-content
| โโโ align-items
|
|โโ Grid Layout
| โโโ grid-template-columns
| โโโ grid-template-rows
| โโโ grid-column
| โโโ grid-row
| โโโ grid-column-gap
| โโโ grid-row-gap
|
|โโ Colors and Background
| โโโ background-color
| โโโ background-image
| โโโ background-repeat
| โโโ background-position
| โโโ background-size
| โโโ color
| โโโ opacity
|
|โโ Transitions and Animations
| |โโ transition
| | โโโ transition-property
| | โโโ transition-duration
| | โโโ transition-timing-function
| | โโโ transition-delay
| โโโ animation
| โโโ animation-name
| โโโ animation-duration
| โโโ animation-timing-function
| โโโ animation-delay
| โโโ animation-iteration-count
| โโโ animation-direction
| โโโ animation-fill-mode
| โโโ animation-play-state
|
|___ Others
|โโ z-index
|โโ box-sizing
|โโ overflow
| โโโ overflow-x
| โโโ overflow-y
|โโ cursor
โโโ box-shadow
-------------------- END --------------------
Some good resources to learn CSS๐
1.MDN
https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/CSS_basics
2.W3Schools
https://w3schools.com/css/
3.freeCodeCamp
https://freecodecamp.org/learn/
4.CSS-Tricks
https://css-tricks.com
5.Flexbox Froggy:
https://flexboxfroggy.com
6.Grid Garden
https://cssgridgarden.com
7. YouTube - EmmersiveLearning
https://www.youtube.com/watch?v=XKNSgDL3xgM
Feel free to add anything I missed๐๐ฑ๐ฑ
The CSS tree ๐
|
|โโ Text Styles
| |โโ color
| |โโ font
| | โโโ font-family
| | โโโ font-size
| | โโโ font-weight
| |โโ text-align
| |โโ text-decoration
| | โโโ underline
| | โโโ line-through
| |โโ line-height
| โ-โ letter-spacing
|
|โโ Box Model
| |โโ width
| |โโ height
| |โโ margin
| | โโโ margin-top
| | โโโ margin-right
| | โโโ margin-bottom
| | โโโ margin-left
| |
| |โโ padding
| | โโโ padding-top
| | โโโ padding-right
| | โโโ padding-bottom
| | โโโ padding-left
| |
| โ-โ border
| |โโ border-width
| | |โโ border-top-width
| | |โโ border-right-width
| | |โโ border-bottom-width
| | โโโ border-left-width
| |โโ border-color
| | โโโ border-top-color
| | โโโ border-right-color
| | โโโ border-bottom-color
| | โโโ border-left-color
| โโโ border-radius
| โโโ border-top-left-radius
| โโโ border-top-right-radius
| โโโ border-bottom-left-radius
| โโโ border-bottom-right-radius
|
|โโ Positioning
| โโโ position
| โโโ top
| โโโ right
| โโโ bottom
| โโโ left
|
|โโ Layout
| โโโ display
| โโโ visibility
| โโโ float
| โโโ clear
|
|โโ Flexbox
| โโโ flex
| โโโ flex-direction
| โโโ flex-wrap
| โโโ justify-content
| โโโ align-items
|
|โโ Grid Layout
| โโโ grid-template-columns
| โโโ grid-template-rows
| โโโ grid-column
| โโโ grid-row
| โโโ grid-column-gap
| โโโ grid-row-gap
|
|โโ Colors and Background
| โโโ background-color
| โโโ background-image
| โโโ background-repeat
| โโโ background-position
| โโโ background-size
| โโโ color
| โโโ opacity
|
|โโ Transitions and Animations
| |โโ transition
| | โโโ transition-property
| | โโโ transition-duration
| | โโโ transition-timing-function
| | โโโ transition-delay
| โโโ animation
| โโโ animation-name
| โโโ animation-duration
| โโโ animation-timing-function
| โโโ animation-delay
| โโโ animation-iteration-count
| โโโ animation-direction
| โโโ animation-fill-mode
| โโโ animation-play-state
|
|___ Others
|โโ z-index
|โโ box-sizing
|โโ overflow
| โโโ overflow-x
| โโโ overflow-y
|โโ cursor
โโโ box-shadow
-------------------- END --------------------
Some good resources to learn CSS๐
1.MDN
https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/CSS_basics
2.W3Schools
https://w3schools.com/css/
3.freeCodeCamp
https://freecodecamp.org/learn/
4.CSS-Tricks
https://css-tricks.com
5.Flexbox Froggy:
https://flexboxfroggy.com
6.Grid Garden
https://cssgridgarden.com
7. YouTube - EmmersiveLearning
https://www.youtube.com/watch?v=XKNSgDL3xgM
Feel free to add anything I missed๐๐ฑ๐ฑ
โค4
Emmersive Learning
Best way to master CSS,๐ฅ The CSS tree ๐ | |โโ Text Styles | |โโ color | |โโ font | | โโโ font-family | | โโโ font-size | | โโโ font-weight | |โโ text-align | |โโ text-decoration | | โฆ
YouTube
CSS Full Course in #Amharic: แจ CSS แแ แฎแญแต แจแแแแชแซ แฅแตแจ แแจแจแป (Complete Beginner to Advanced)
Welcome to the Complete CSS Full Course in Amharic! ๐จ In this course, you will learn how to style websites and make them visually stunning. CSS (Cascading Style Sheets) is a crucial skill for web development, and this course will help you master it step byโฆ
โค3
Complete Ai/Ml road map๐ฅ
It's the trend of Ai๐
1.Intro to AI:
โข Definition of AI
โข Types of AI
โข AI in real life
2.Introduction to ML:
โข Definition of ML
โข Types of ML
- Supervised
- Unsupervised
- Reinforcement
โข ML applications
3.Mathematics for ML:
โข Linear Algebra
โข Calculus
โข Probability and Statistics
4.Programming Basics:
โข Choose a prog language
- e.g., Python
โข Basic syntax
โข data structures
โข Intro to libraries like
- NumPy
- Pandas
5.Supervised Learning:
โข Regression
โข Classification
โข Model evaluation
โข metrics
6.Unsupervised Learning:
โข Clustering
โข Dimensionality reduction
โข Association rule learning
7.Deep Learning Basics:
โข Neural networks
โข Activation functions
โข Backpropagation
8.Intro to TensorFlow and PyTorch:
โข Basic usage
โข syntax
โข Building simple neural networks
9.Advanced Deep Learning:
โข Convolutional Neural Networks (CNN)
โข Recurrent Neural Networks (RNN)
โข Transfer Learning
10.Natural Language Processing (NLP):
โข Text processing
โข Tokenization and stemming
โข Sentiment analysis
11. Computer Vision:
โข Image processing
โข Object detection
โข Image segmentation
12.Reinforcement Learning:
โข Basics of RL
โข Markov Decision Processes
โข Q-Learning
โข Policy Gradient methods
13.Generative Adversarial Networks (GANs):
โข Introduction to GANs
โข Image generation with GANs
14.Time Series Analysis:
โข Time series forecasting
โข ARIMA models
โข LSTM for time series
15.Anomaly Detection:
โข Types of anomalies
โข Approaches to anomaly detection
16. AI Ethics and Bias:
โข Ethical considerations in AI/ML
โข Addressing bias in models
17.Model Deployment:
โข Containerization
- e.g., Docker
โข Deployment platforms
- e.g., Flask, FastAPI
18.Monitoring and Maintenance:
โข Model monitoring
โข Continuous integration (CI)
โข continuous deployment (CD)
19.Scalability:
โข Handling large datasets
โข Distributed computing frameworks
- e.g., Apache Spark
20. AI/ML in the Cloud:
โข Using cloud services
- e.g., AWS, Azure, GCP
โข Serverless computing
21.Explainable AI (XAI):
โข Techniques for interpretable models
โข Importance of model explainability
22.AutoML:
โข Automated machine learning tools
โข Hyperparameter tuning
23.Quantum Machine Learning:
โข Basics of quantum computing
โข Quantum machine learning algorithms
24. AI for Edge Computing:
โข Deploying models on edge devices
โข Edge AI applications
25.Stay Updated:
โข Follow research papers
โข Followconferences
- e.g., NeurIPS, ICML
โข Join AI/ML communities
26.Advanced Research Topics:
โข Dive into cutting-edge research areas
โข Contribute to open-source AI projects
------------------- END --------------------
That's a wrap๐
It's the trend of Ai๐
1.Intro to AI:
โข Definition of AI
โข Types of AI
โข AI in real life
2.Introduction to ML:
โข Definition of ML
โข Types of ML
- Supervised
- Unsupervised
- Reinforcement
โข ML applications
3.Mathematics for ML:
โข Linear Algebra
โข Calculus
โข Probability and Statistics
4.Programming Basics:
โข Choose a prog language
- e.g., Python
โข Basic syntax
โข data structures
โข Intro to libraries like
- NumPy
- Pandas
5.Supervised Learning:
โข Regression
โข Classification
โข Model evaluation
โข metrics
6.Unsupervised Learning:
โข Clustering
โข Dimensionality reduction
โข Association rule learning
7.Deep Learning Basics:
โข Neural networks
โข Activation functions
โข Backpropagation
8.Intro to TensorFlow and PyTorch:
โข Basic usage
โข syntax
โข Building simple neural networks
9.Advanced Deep Learning:
โข Convolutional Neural Networks (CNN)
โข Recurrent Neural Networks (RNN)
โข Transfer Learning
10.Natural Language Processing (NLP):
โข Text processing
โข Tokenization and stemming
โข Sentiment analysis
11. Computer Vision:
โข Image processing
โข Object detection
โข Image segmentation
12.Reinforcement Learning:
โข Basics of RL
โข Markov Decision Processes
โข Q-Learning
โข Policy Gradient methods
13.Generative Adversarial Networks (GANs):
โข Introduction to GANs
โข Image generation with GANs
14.Time Series Analysis:
โข Time series forecasting
โข ARIMA models
โข LSTM for time series
15.Anomaly Detection:
โข Types of anomalies
โข Approaches to anomaly detection
16. AI Ethics and Bias:
โข Ethical considerations in AI/ML
โข Addressing bias in models
17.Model Deployment:
โข Containerization
- e.g., Docker
โข Deployment platforms
- e.g., Flask, FastAPI
18.Monitoring and Maintenance:
โข Model monitoring
โข Continuous integration (CI)
โข continuous deployment (CD)
19.Scalability:
โข Handling large datasets
โข Distributed computing frameworks
- e.g., Apache Spark
20. AI/ML in the Cloud:
โข Using cloud services
- e.g., AWS, Azure, GCP
โข Serverless computing
21.Explainable AI (XAI):
โข Techniques for interpretable models
โข Importance of model explainability
22.AutoML:
โข Automated machine learning tools
โข Hyperparameter tuning
23.Quantum Machine Learning:
โข Basics of quantum computing
โข Quantum machine learning algorithms
24. AI for Edge Computing:
โข Deploying models on edge devices
โข Edge AI applications
25.Stay Updated:
โข Follow research papers
โข Followconferences
- e.g., NeurIPS, ICML
โข Join AI/ML communities
26.Advanced Research Topics:
โข Dive into cutting-edge research areas
โข Contribute to open-source AI projects
------------------- END --------------------
That's a wrap๐
โค3
Forwarded from Muhammed Teshome
Seriosly,
pick an object and ask a series of what, how, why, where, and when questions.
Do not limit yourself to the physical world here, or even direct connections.
focus on it for atleast 10 minutes contemplating and questioning it.
what do you get ?.. what did you realize ?...
#my_sunday_madness ๐๐๐
pick an object and ask a series of what, how, why, where, and when questions.
Do not limit yourself to the physical world here, or even direct connections.
focus on it for atleast 10 minutes contemplating and questioning it.
what do you get ?.. what did you realize ?...
#my_sunday_madness ๐๐๐
โค1๐คฏ1
Not using Ai ?..You are falling behind!
start with Bard Ai.
https://www.youtube.com/watch?v=YMybfJuaWP4
in this video, i will show you how to use bard for you use case!
go to bard's site ๐
https://bard.google.com/
start with Bard Ai.
https://www.youtube.com/watch?v=YMybfJuaWP4
in this video, i will show you how to use bard for you use case!
go to bard's site ๐
https://bard.google.com/
YouTube
How to use Bard Ai | แ แญแฒแแปแ แขแแฐแแแแต ( Ai ) แฅแแดแต แฅแแ แแ ? | #bardai #ai #artificialintelligence
Learn Artificial intelligence : Bard Ai
#EmmersiveLearning #Emmersive #Learning #Muhammed
---------------------
แ แแแ แจแแ แ แซแ แแตแซ แแพแปแฝแ แญแจแณแฐแแแข แ แแแฝแ แผแญ แ แแตแจแ แฐแ แแ แซแตแญแแธแแข
Facebook:
https://www.facebook.com/EmmersiveLearning
Instagram:
https://wwโฆ
#EmmersiveLearning #Emmersive #Learning #Muhammed
---------------------
แ แแแ แจแแ แ แซแ แแตแซ แแพแปแฝแ แญแจแณแฐแแแข แ แแแฝแ แผแญ แ แแตแจแ แฐแ แแ แซแตแญแแธแแข
Facebook:
https://www.facebook.com/EmmersiveLearning
Instagram:
https://wwโฆ
โค2
Forwarded from Muhammed Teshome
Don't follow the mass.
rebel against them.
make mistakes and learn through the process
question everything.
แ แแ แฅแฎ!... แ แแ แแดแแ แ!.... BE FREE
rebel against them.
make mistakes and learn through the process
question everything.
แ แแ แฅแฎ!... แ แแ แแดแแ แ!.... BE FREE
โค4
Complete DSA road map๐ฅ
In file tree structure๐
|
|-- ๐01_Basics
| |-- ๐01_Introduction_to_DSA
| | |-- Introduction
| | |-- Importance
| | |-- Applications
| |
| |-- ๐02_Big_O_Notation
| |-- Big_O_Notation
|
|-- ๐02_Arrays_and_Strings
| |-- ๐01_Arrays
| | |-- Introduction_to_Arrays
| | |-- Operations_on_Arrays
| | |-- Searching_and_Sorting
| |
| |-- ๐02_Strings
| |-- Introduction_to_Strings
| |-- String_Manipulation
| |-- Introduction_to_Arrays
|
|-- ๐03_Linked_Lists
| |-- ๐01_Singly_Linked_List
| | |-- Intro_to_Singly_Linked_List
| | |-- Operations_on_Singly_Linked_List
| | |-- Detect_and_Remove_Cycle
| |
| |-- ๐02_Doubly_Linked_List
| |-- Intro_to_Doubly_Linked_List
| |-- Operations_on_Doubly_Linked_List
|
|-- ๐04_Stacks_and_Queues
| |-- ๐01_Stacks
| | |-- Introduction_to_Stacks
| | |-- Stack_Operations
| | |-- Implementing_Stacks
| |
| |-- ๐02_Queues
| |-- Introduction_to_Queues
| |-- Queue_Operations
| |-- Implementing_Queues
|
|-- ๐05_Trees_and_Graphs
| |-- ๐01_Trees
| | |-- Intro_to_Trees
| | |-- Binary_Trees
| | |-- Binary_Search_Trees
| |
| |-- ๐02_Graphs
| |-- Introduction_to_Graphs
| |-- Depth_First_Search
| |-- Breadth_First_Search
|
|-- ๐06_Sorting_and_Searching
| |-- ๐01_Sorting_Algorithms
| | |-- Bubble_Sort
| | |-- Insertion_Sort
| | |-- Merge_Sort
| | |-- Quick_Sort
| |
| |-- ๐02_Searching_Algorithms
| |-- Linear_Search
| |-- Binary_Search
|
|-- ๐07_Hash_Tables
| |-- Introduction_to_Hash_Tables
| |-- Hash_Functions
| |-- Collision_Resolution
| |-- Applications_of_Hash_Tables
|
|-- ๐08_Dynamic_Programming
| |-- Intro_to_Dynamic_Programming
| |-- Overlapping_Subproblems
| |-- Optimal_Substructure
| |-- Top-Down_vs_Bottom-Up
| |-- Common_DP_Problems
|
|-- ๐09_Greedy_Algorithms
| |-- Intro_to_Greedy_Algorithms
| |-- Standard_Greedy_Algorithms
| |-- Applications_of_Greedy_Algorithms
|
|-- ๐10_Advanced_Data_Structures
| |-- Trie
| |-- Segment_Tree
| |-- Disjoint_Set_Union
| |-- Fenwick_Tree
|
|-- ๐11_Algorithmic_Paradigms
| |-- Divide_and_Conquer
| |-- Backtracking
| |-- Sliding_Window
|
|-- ๐12_Interview_Preparation
|-- Coding_Practice
|-- Problem_Solving_Strategies
|-- Mock_Interviews
------------------- END -------------------
Good resources to learn and practice DSA๐
1. Courses
Advanced Data Structures (MIT)
rb.gy/qtyuc
Algorithms Specialization (Stanford University)
rb.gy/0pcln
FreeCodeCampOrg
rb.gy/mpyce
The Odin Project DSA
rb.gy/6402y
2. Book
Introduction to Algorithms [Book]
rb.gy/ui3xc
3. YouTube
Abdul Bari
youtube.com/@abdul_bari?siโฆ
Code N Code
youtube.com/@codencode?si=โฆ
Striver
youtube.com/@takeUforward?โฆ
4.Coding Platforms
โข LeetCode
โข HackerRank
โข CodeChef
โข GeeksforGeeks
โข TopCoder
Feel free to add anything I missed โบ๏ธ๐ฑ๐ฑ
---------------------------------------
That's a wrap๐
In file tree structure๐
|
|-- ๐01_Basics
| |-- ๐01_Introduction_to_DSA
| | |-- Introduction
| | |-- Importance
| | |-- Applications
| |
| |-- ๐02_Big_O_Notation
| |-- Big_O_Notation
|
|-- ๐02_Arrays_and_Strings
| |-- ๐01_Arrays
| | |-- Introduction_to_Arrays
| | |-- Operations_on_Arrays
| | |-- Searching_and_Sorting
| |
| |-- ๐02_Strings
| |-- Introduction_to_Strings
| |-- String_Manipulation
| |-- Introduction_to_Arrays
|
|-- ๐03_Linked_Lists
| |-- ๐01_Singly_Linked_List
| | |-- Intro_to_Singly_Linked_List
| | |-- Operations_on_Singly_Linked_List
| | |-- Detect_and_Remove_Cycle
| |
| |-- ๐02_Doubly_Linked_List
| |-- Intro_to_Doubly_Linked_List
| |-- Operations_on_Doubly_Linked_List
|
|-- ๐04_Stacks_and_Queues
| |-- ๐01_Stacks
| | |-- Introduction_to_Stacks
| | |-- Stack_Operations
| | |-- Implementing_Stacks
| |
| |-- ๐02_Queues
| |-- Introduction_to_Queues
| |-- Queue_Operations
| |-- Implementing_Queues
|
|-- ๐05_Trees_and_Graphs
| |-- ๐01_Trees
| | |-- Intro_to_Trees
| | |-- Binary_Trees
| | |-- Binary_Search_Trees
| |
| |-- ๐02_Graphs
| |-- Introduction_to_Graphs
| |-- Depth_First_Search
| |-- Breadth_First_Search
|
|-- ๐06_Sorting_and_Searching
| |-- ๐01_Sorting_Algorithms
| | |-- Bubble_Sort
| | |-- Insertion_Sort
| | |-- Merge_Sort
| | |-- Quick_Sort
| |
| |-- ๐02_Searching_Algorithms
| |-- Linear_Search
| |-- Binary_Search
|
|-- ๐07_Hash_Tables
| |-- Introduction_to_Hash_Tables
| |-- Hash_Functions
| |-- Collision_Resolution
| |-- Applications_of_Hash_Tables
|
|-- ๐08_Dynamic_Programming
| |-- Intro_to_Dynamic_Programming
| |-- Overlapping_Subproblems
| |-- Optimal_Substructure
| |-- Top-Down_vs_Bottom-Up
| |-- Common_DP_Problems
|
|-- ๐09_Greedy_Algorithms
| |-- Intro_to_Greedy_Algorithms
| |-- Standard_Greedy_Algorithms
| |-- Applications_of_Greedy_Algorithms
|
|-- ๐10_Advanced_Data_Structures
| |-- Trie
| |-- Segment_Tree
| |-- Disjoint_Set_Union
| |-- Fenwick_Tree
|
|-- ๐11_Algorithmic_Paradigms
| |-- Divide_and_Conquer
| |-- Backtracking
| |-- Sliding_Window
|
|-- ๐12_Interview_Preparation
|-- Coding_Practice
|-- Problem_Solving_Strategies
|-- Mock_Interviews
------------------- END -------------------
Good resources to learn and practice DSA๐
1. Courses
Advanced Data Structures (MIT)
rb.gy/qtyuc
Algorithms Specialization (Stanford University)
rb.gy/0pcln
FreeCodeCampOrg
rb.gy/mpyce
The Odin Project DSA
rb.gy/6402y
2. Book
Introduction to Algorithms [Book]
rb.gy/ui3xc
3. YouTube
Abdul Bari
youtube.com/@abdul_bari?siโฆ
Code N Code
youtube.com/@codencode?si=โฆ
Striver
youtube.com/@takeUforward?โฆ
4.Coding Platforms
โข LeetCode
โข HackerRank
โข CodeChef
โข GeeksforGeeks
โข TopCoder
Feel free to add anything I missed โบ๏ธ๐ฑ๐ฑ
---------------------------------------
That's a wrap๐
โค2
๐ Full Stack Project Ideas:
โข ๐ค Networking Site
โข โ๏ธ Blog Platform
โข ๐ Online Marketplace
โข ๐ Course App
โข ๐ Project Management Tool
โข ๐ฅ Health Tracker App
โข ๐ฝ Recipe Sharing Platform
โข ๐ Financial Dashboard
โข ๐ Travel Journal App
โข ๐จ Digital Art Gallery
โข ๐ค Networking Site
โข โ๏ธ Blog Platform
โข ๐ Online Marketplace
โข ๐ Course App
โข ๐ Project Management Tool
โข ๐ฅ Health Tracker App
โข ๐ฝ Recipe Sharing Platform
โข ๐ Financial Dashboard
โข ๐ Travel Journal App
โข ๐จ Digital Art Gallery
โค1