6 Tips for writing better JavaScript code:
1. Declare and initialize variables upfront
2. Create modular, specialized functions
3. Eliminate duplicate code
4. Be efficient with DOM manipulations
5. Minimize global variables
6. Embrace shorthand notation (Object Literals)
@EmmersiveLearning
1. Declare and initialize variables upfront
2. Create modular, specialized functions
3. Eliminate duplicate code
4. Be efficient with DOM manipulations
5. Minimize global variables
6. Embrace shorthand notation (Object Literals)
@EmmersiveLearning
โค2๐ฅฐ1
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
@EmmersiveLearning
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
@EmmersiveLearning
MDN Web Docs
CSS: Styling the content - Learn web development | MDN
CSS (Cascading Style Sheets) is the code that styles web content. This article walks you through a basic understanding of CSS โ how it works and how to improve the look and feel of the content structure you created in the previous article.
๐3
Boost your coding game with these 10 essential VS Code extensions! ๐
โจ Prettier
โจ ESLint
โจ IntelliSense for CSS
โจ Debugger for Chrome
โจ Code Spell Checker
โจ Auto Rename Tag
โจ Polacode
โจ REST Client
โจ Peacock
โจ Docker
Share your top picks! ๐
โจ Prettier
โจ ESLint
โจ IntelliSense for CSS
โจ Debugger for Chrome
โจ Code Spell Checker
โจ Auto Rename Tag
โจ Polacode
โจ REST Client
โจ Peacock
โจ Docker
Share your top picks! ๐
๐2
Master JavaScript:
The JavaScript Tree ๐
|
|โโ Variables
| โโโ var
| โโโ let
| โโโ const
|
|โโ Data Types
| โโโ String
| โโโ Number
| โโโ Boolean
| โโโ Object
| โโโ Array
| โโโ Null
| โโโ Undefined
|
|โโ Operators
| โโโ Arithmetic
| โโโ Assignment
| โโโ Comparison
| โโโ Logical
| โโโ Unary
| โโโ Ternary (Conditional)
|
|โโ Control Flow
| โโโ if statement
| โโโ else statement
| โโโ else if statement
| โโโ switch statement
| โโโ for loop
| โโโ while loop
| โโโ do-while loop
|
|โโ Functions
| โโโ Function declaration
| โโโ Function expression
| โโโ Arrow function
| โโโ IIFE (Immediately Invoked Function Expression)
|
|โโ Scope
| โโโ Global scope
| โโโ Local scope
| โโโ Block scope
| โโโ Lexical scope
|
|โโ Arrays
| โโโ Array methods
| | โโโ push()
| | โโโ pop()
| | โโโ shift()
| | โโโ unshift()
| | โโโ splice()
| | โโโ slice()
| | โโโ concat()
| โโโ Array iteration
| โโโ forEach()
| โโโ map()
| โโโ filter()
| โโโ reduce()
|
|โโ Objects
| โโโ Object properties
| | โโโ Dot notation
| | โโโ Bracket notation
| โโโ Object methods
| | โโโ Object.keys()
| | โโโ Object.values()
| | โโโ Object.entries()
| โโโ Object destructuring
|
|โโ Promises
| โโโ Promise states
| | โโโ Pending
| | โโโ Fulfilled
| | โโโ Rejected
| โโโ Promise methods
| | โโโ then()
| | โโโ catch()
| | โโโ finally()
| โโโ Promise.all()
|
|โโ Asynchronous JavaScript
| โโโ Callbacks
| โโโ Promises
| โโโ Async/Await
|
|โโ Error Handling
| โโโ try...catch statement
| โโโ throw statement
|
|โโ JSON (JavaScript Object Notation)
|
|โโ Modules
| โโโ import
| โโโ export
|
|โโ DOM Manipulation
| โโโ Selecting elements
| โโโ Modifying elements
| โโโ Creating elements
|
|โโ Events
| โโโ Event listeners
| โโโ Event propagation
| โโโ Event delegation
|
|โโ AJAX (Asynchronous JavaScript and XML)
|
|โโ Fetch API
|
|โโ ES6+ Features
| โโโ Template literals
| โโโ Destructuring assignment
| โโโ Spread/rest operator
| โโโ Arrow functions
| โโโ Classes
| โโโ let and const
| โโโ Default parameters
| โโโ Modules
| โโโ Promises
|
|โโ Web APIs
| โโโ Local Storage
| โโโ Session Storage
| โโโ Web Storage API
|
|โโ Libraries and Frameworks
| โโโ React
| โโโ Angular
| โโโ Vue.js
|
|โโ Debugging
| โโโ Console.log()
| โโโ Breakpoints
| โโโ DevTools
|
|โโ Others
| โโโ Closures
| โโโ Callbacks
| โโโ Prototypes
| โโโ this keyword
| โโโ Hoisting
| โโโ Strict mode
|
|____________ END __________________
https://www.youtube.com/watch?v=jF5oxeeuu6E
The JavaScript Tree ๐
|
|โโ Variables
| โโโ var
| โโโ let
| โโโ const
|
|โโ Data Types
| โโโ String
| โโโ Number
| โโโ Boolean
| โโโ Object
| โโโ Array
| โโโ Null
| โโโ Undefined
|
|โโ Operators
| โโโ Arithmetic
| โโโ Assignment
| โโโ Comparison
| โโโ Logical
| โโโ Unary
| โโโ Ternary (Conditional)
|
|โโ Control Flow
| โโโ if statement
| โโโ else statement
| โโโ else if statement
| โโโ switch statement
| โโโ for loop
| โโโ while loop
| โโโ do-while loop
|
|โโ Functions
| โโโ Function declaration
| โโโ Function expression
| โโโ Arrow function
| โโโ IIFE (Immediately Invoked Function Expression)
|
|โโ Scope
| โโโ Global scope
| โโโ Local scope
| โโโ Block scope
| โโโ Lexical scope
|
|โโ Arrays
| โโโ Array methods
| | โโโ push()
| | โโโ pop()
| | โโโ shift()
| | โโโ unshift()
| | โโโ splice()
| | โโโ slice()
| | โโโ concat()
| โโโ Array iteration
| โโโ forEach()
| โโโ map()
| โโโ filter()
| โโโ reduce()
|
|โโ Objects
| โโโ Object properties
| | โโโ Dot notation
| | โโโ Bracket notation
| โโโ Object methods
| | โโโ Object.keys()
| | โโโ Object.values()
| | โโโ Object.entries()
| โโโ Object destructuring
|
|โโ Promises
| โโโ Promise states
| | โโโ Pending
| | โโโ Fulfilled
| | โโโ Rejected
| โโโ Promise methods
| | โโโ then()
| | โโโ catch()
| | โโโ finally()
| โโโ Promise.all()
|
|โโ Asynchronous JavaScript
| โโโ Callbacks
| โโโ Promises
| โโโ Async/Await
|
|โโ Error Handling
| โโโ try...catch statement
| โโโ throw statement
|
|โโ JSON (JavaScript Object Notation)
|
|โโ Modules
| โโโ import
| โโโ export
|
|โโ DOM Manipulation
| โโโ Selecting elements
| โโโ Modifying elements
| โโโ Creating elements
|
|โโ Events
| โโโ Event listeners
| โโโ Event propagation
| โโโ Event delegation
|
|โโ AJAX (Asynchronous JavaScript and XML)
|
|โโ Fetch API
|
|โโ ES6+ Features
| โโโ Template literals
| โโโ Destructuring assignment
| โโโ Spread/rest operator
| โโโ Arrow functions
| โโโ Classes
| โโโ let and const
| โโโ Default parameters
| โโโ Modules
| โโโ Promises
|
|โโ Web APIs
| โโโ Local Storage
| โโโ Session Storage
| โโโ Web Storage API
|
|โโ Libraries and Frameworks
| โโโ React
| โโโ Angular
| โโโ Vue.js
|
|โโ Debugging
| โโโ Console.log()
| โโโ Breakpoints
| โโโ DevTools
|
|โโ Others
| โโโ Closures
| โโโ Callbacks
| โโโ Prototypes
| โโโ this keyword
| โโโ Hoisting
| โโโ Strict mode
|
|____________ END __________________
https://www.youtube.com/watch?v=jF5oxeeuu6E
YouTube
JavaScript Full Course in #Amharic: แจ JS แแ แฎแญแต แจแแแแชแซ แฅแตแจ แแจแจแป (Complete Beginner to Advanced)
Welcome to the Complete JavaScript Full Course in Amharic! ๐ This course is designed to teach you JavaScript, the programming language that powers the web. Whether you're new to coding or want to enhance your skills, this course will take you from beginnerโฆ
โค4
Quiz:
Can you solve this equation in less than 20 seconds?
1 + 4 = 5
2 + 5 = 12
3 + 6 = 21
8 + 11 = ?
Can you solve this equation in less than 20 seconds?
1 + 4 = 5
2 + 5 = 12
3 + 6 = 21
8 + 11 = ?
๐3๐1
List of Ai tools to use :
chatGPT : https://chat.openai.com/
Bard Ai : https://bard.google.com/
Copilot : https://copilot.microsoft.com/
if you master this . you will be unstoppable!
there is a video on how to use all of this. @EmmersiveLearning แฉแฑแฅ แปแแ แแญ แข
แฉแฑแฅ แก https://www.youtube.com/@EmmersiveLearning/
chatGPT : https://chat.openai.com/
Bard Ai : https://bard.google.com/
Copilot : https://copilot.microsoft.com/
if you master this . you will be unstoppable!
there is a video on how to use all of this. @EmmersiveLearning แฉแฑแฅ แปแแ แแญ แข
แฉแฑแฅ แก https://www.youtube.com/@EmmersiveLearning/
ChatGPT
ChatGPT helps you get answers, find inspiration, and be more productive.
โค4๐3
Start your web development journey with HTML.
Here is how to Master HTML:
The HTML Tree ๐
|
|โโ Document Structure
| โโโ <!DOCTYPE html>
| โโโ <html>
| | โโโ <head>
| | | โโโ <title>
| | | โโโ <meta>
| | โโโ <body>
| | โโโ <header>
| | โโโ <nav>
| | โโโ <main>
| | โโโ <section>
| | โโโ <article>
| | โโโ <aside>
| | โโโ <footer>
| | โโโ <script>
|
|โโ Elements
| โโโ Headings (<h1> to <h6>)
| โโโ Paragraph (<p>)
| โโโ Links (<a>)
| โโโ Images (<img>)
| โโโ Lists
| | โโโ Ordered (<ol>)
| | โโโ Unordered (<ul>)
| | โโโ List item (<li>)
| โโโ Forms
| | โโโ Form (<form>)
| | โโโ Input (<input>)
| | โโโ Textarea (<textarea>)
| | โโโ Select (<select>)
| | | โโโ Option (<option>)
| | โโโ Button (<button>)
| โโโ Tables (<table>)
| | โโโ Table row (<tr>)
| | | โโโ Table heading (<th>)
| | | โโโ Table data (<td>)
| | โโโ Table header (<thead>)
| โโโ Semantic Elements
| | โโโ <header>
| | โโโ <nav>
| | โโโ <main>
| | โโโ <section>
| | โโโ <article>
| | โโโ <aside>
| | โโโ <footer>
| โโโ Comments <!-- -->
| โโโ Inline Elements
| โโโ <span>
| โโโ <strong>
| โโโ <em>
| โโโ <br>
| โโโ <hr>
| โโโ <a> (for inline links)
|
|โโ Attributes
| โโโ src (for <img>, <script>, etc.)
| โโโ href (for <a>, <link>, etc.)
| โโโ alt (for alternative text)
| โโโ width/height (for sizing)
| โโโ class (for styling)
| โโโ id (for unique identification)
| โโโ style (for inline CSS)
|
|โโ Forms and Input
| โโโ Text Input
| โโโ Radio Buttons
| โโโ Checkboxes
| โโโ Dropdowns
| โโโ Submit Button
|
|โโ Multimedia
| โโโ Images
| โโโ Video (<video>)
|
|โโ Links and Navigation
| โโโ Relative URLs
| โโโ Absolute URLs
| โโโ Navigation Links
|
|โโ Lists
| โโโ Ordered Lists
| โโโ Unordered Lists
|
|โโ Tables
| โโโ Table Structure
| โโโ Table Styling
|
|โโ Semantic HTML
| โโโ Using Semantic Elements
|
|โโ Document Metadata
| โโโ Character Encoding
| โโโ Viewport Meta Tag
|
|โโ HTML5 Features
| โโโ New Document Structure
| โโโ Semantic Elements
| โโโ Multimedia Elements
| โโโ Form Enhancements
|
|โโ HTML5 APIs
| โโโ Local Storage
| โโโ Session Storage
| โโโ Web Storage API
|
|โโ HTML Validation
|
|โโ Responsive Design
| โโโ Media Queries
|
|
|____________ END __________________
https://www.youtube.com/watch?v=kDE31AmaIAM
Here is how to Master HTML:
The HTML Tree ๐
|
|โโ Document Structure
| โโโ <!DOCTYPE html>
| โโโ <html>
| | โโโ <head>
| | | โโโ <title>
| | | โโโ <meta>
| | โโโ <body>
| | โโโ <header>
| | โโโ <nav>
| | โโโ <main>
| | โโโ <section>
| | โโโ <article>
| | โโโ <aside>
| | โโโ <footer>
| | โโโ <script>
|
|โโ Elements
| โโโ Headings (<h1> to <h6>)
| โโโ Paragraph (<p>)
| โโโ Links (<a>)
| โโโ Images (<img>)
| โโโ Lists
| | โโโ Ordered (<ol>)
| | โโโ Unordered (<ul>)
| | โโโ List item (<li>)
| โโโ Forms
| | โโโ Form (<form>)
| | โโโ Input (<input>)
| | โโโ Textarea (<textarea>)
| | โโโ Select (<select>)
| | | โโโ Option (<option>)
| | โโโ Button (<button>)
| โโโ Tables (<table>)
| | โโโ Table row (<tr>)
| | | โโโ Table heading (<th>)
| | | โโโ Table data (<td>)
| | โโโ Table header (<thead>)
| โโโ Semantic Elements
| | โโโ <header>
| | โโโ <nav>
| | โโโ <main>
| | โโโ <section>
| | โโโ <article>
| | โโโ <aside>
| | โโโ <footer>
| โโโ Comments <!-- -->
| โโโ Inline Elements
| โโโ <span>
| โโโ <strong>
| โโโ <em>
| โโโ <br>
| โโโ <hr>
| โโโ <a> (for inline links)
|
|โโ Attributes
| โโโ src (for <img>, <script>, etc.)
| โโโ href (for <a>, <link>, etc.)
| โโโ alt (for alternative text)
| โโโ width/height (for sizing)
| โโโ class (for styling)
| โโโ id (for unique identification)
| โโโ style (for inline CSS)
|
|โโ Forms and Input
| โโโ Text Input
| โโโ Radio Buttons
| โโโ Checkboxes
| โโโ Dropdowns
| โโโ Submit Button
|
|โโ Multimedia
| โโโ Images
| โโโ Video (<video>)
|
|โโ Links and Navigation
| โโโ Relative URLs
| โโโ Absolute URLs
| โโโ Navigation Links
|
|โโ Lists
| โโโ Ordered Lists
| โโโ Unordered Lists
|
|โโ Tables
| โโโ Table Structure
| โโโ Table Styling
|
|โโ Semantic HTML
| โโโ Using Semantic Elements
|
|โโ Document Metadata
| โโโ Character Encoding
| โโโ Viewport Meta Tag
|
|โโ HTML5 Features
| โโโ New Document Structure
| โโโ Semantic Elements
| โโโ Multimedia Elements
| โโโ Form Enhancements
|
|โโ HTML5 APIs
| โโโ Local Storage
| โโโ Session Storage
| โโโ Web Storage API
|
|โโ HTML Validation
|
|โโ Responsive Design
| โโโ Media Queries
|
|
|____________ END __________________
https://www.youtube.com/watch?v=kDE31AmaIAM
YouTube
HTML Full Course in #Amharic: แจ HTML แแ แฎแญแต แจแแแแชแซ แฅแตแจ แ แตแซแแตแต (Complete Beginner to Advanced)
Welcome to the Complete HTML Full Course in Amharic! ๐ This course is perfect for anyone who wants to learn web development from scratch. HTML (HyperText Markup Language) is the foundation of every website, and this course will guide you step by step in yourโฆ
โค7
5 Best CSS Generators ๐จ
๐ธBlob maker
๐- blobmaker .app
๐นGlass Morphism
๐- glassgenerator .netlify .app
๐ธFancy Border Radius
๐- https://9elements.github .io/fancy-border-radius
๐น Get Waves
๐ getwaves .io
๐ธNeumorphism
๐- neumorphism. io
๐ธBlob maker
๐- blobmaker .app
๐นGlass Morphism
๐- glassgenerator .netlify .app
๐ธFancy Border Radius
๐- https://9elements.github .io/fancy-border-radius
๐น Get Waves
๐ getwaves .io
๐ธNeumorphism
๐- neumorphism. io
๐4โค1
Data Modeling Mastery ๐
๐บ Plan your schema carefully
๐ Optimize for performance
๐ Ensure data integrity
๐ Normalize data effectively
๐ Scale your database smartly
๐ Use data indexing
Good data models are crucial for efficient databases.
What is your opinion? ๐
@EmmersiveLearning
๐บ Plan your schema carefully
๐ Optimize for performance
๐ Ensure data integrity
๐ Normalize data effectively
๐ Scale your database smartly
๐ Use data indexing
Good data models are crucial for efficient databases.
What is your opinion? ๐
@EmmersiveLearning
โค4๐1
Don't let bugs or setbacks discourage you - every mistake is an opportunity to learn and improve!
Keep coding, and keep growing!
Keep coding, and keep growing!
โค4
Only 1 day is left for the beginning of 2024 G.C.
we can use this new year to
๐ change our selves,
๐ to start learning something,
๐ to start building something worth.
แจแแ แแแญ แแแแแญ แตแแตแฅ แค แแฃแญ แ แแต แค แแฃแญ แแญ แค แแฃแญ แณแแแต แค แฐแ แค แแแ แค แแตแจแจแ แ แแแต แจแแณแแ แ แญแฐแแแค แฅแตแช แญแแแ แแ แ แฅแแ แแแแข
แแ แฅแแต แ แแฃแฉ แ แแต แ 2024 แแ แแตแฐแฉ แฅแแณแฐแฃแฝแ แแแค แฅแ แตแค แแแ แตแณแแก แแแข
แจแแ แ แตแฐแซแค แฐแ แฃ แ แแ 1/1/2024 แจแแตแแแฉแ แต แแ แญแแแข แแฃแญ แ แแต แ แแ แฐแแต แ แ แแต แ แแต (365 แแ) แแ แแญ แฅแแฐแฐแจแณแฝแ แจแแแแซแ แต แญแแแแข
แแฉแ แแญ แฒแตแจแต แแตแจแ แฅแแฝแแแ
we can use this new year to
๐ change our selves,
๐ to start learning something,
๐ to start building something worth.
แจแแ แแแญ แแแแแญ แตแแตแฅ แค แแฃแญ แ แแต แค แแฃแญ แแญ แค แแฃแญ แณแแแต แค แฐแ แค แแแ แค แแตแจแจแ แ แแแต แจแแณแแ แ แญแฐแแแค แฅแตแช แญแแแ แแ แ แฅแแ แแแแข
แแ แฅแแต แ แแฃแฉ แ แแต แ 2024 แแ แแตแฐแฉ แฅแแณแฐแฃแฝแ แแแค แฅแ แตแค แแแ แตแณแแก แแแข
แจแแ แ แตแฐแซแค แฐแ แฃ แ แแ 1/1/2024 แจแแตแแแฉแ แต แแ แญแแแข แแฃแญ แ แแต แ แแ แฐแแต แ แ แแต แ แแต (365 แแ) แแ แแญ แฅแแฐแฐแจแณแฝแ แจแแแแซแ แต แญแแแแข
แแฉแ แแญ แฒแตแจแต แแตแจแ แฅแแฝแแแ
๐5๐ฅ1
แแ แแ
แต แฅแ แแฐแซ แฅแฝแแแ ?
แญแ แฅแแฐ แฐแ แญแแซแซแแข แแแญ แแ แฅแแฐ แแฌแแแญแญ
1. แตแแ แญแต( แแดแณ แจแแ แฐแแ แแตแฅ แแแฃแต แ แญแ แ แ แฃแฝแแ แแ แแตแฃแฝแ แจแแแ แตแชแ แแญ แฅแแฝแ แจแคแณแฝแ แแแญ แตแฝแแแฝแ)
2. แแฎแแญแถแฝแ แค แตแณแญแณแแฝแ แฅแ แขแแแถแฝแ แแแ แญ แฅแ แแแแฃแต แก
if you are a techie you can build Digital Startups:
โฆ SaaS
โฆ Databases
โฆ Web/Mobile app
โฆ Extentions/Plugins
3. แแแ แฅ แฅแ แจ แแญแฐแแ แแแฃแณ แแตแจแ(แซแตแแแแ แแฐแแ แ แฅแแด แแแแณแฝแ )
แแณแฅ แจแแฉแ แต แก ๐
แญแ แฅแแฐ แฐแ แญแแซแซแแข แแแญ แแ แฅแแฐ แแฌแแแญแญ
1. แตแแ แญแต( แแดแณ แจแแ แฐแแ แแตแฅ แแแฃแต แ แญแ แ แ แฃแฝแแ แแ แแตแฃแฝแ แจแแแ แตแชแ แแญ แฅแแฝแ แจแคแณแฝแ แแแญ แตแฝแแแฝแ)
2. แแฎแแญแถแฝแ แค แตแณแญแณแแฝแ แฅแ แขแแแถแฝแ แแแ แญ แฅแ แแแแฃแต แก
if you are a techie you can build Digital Startups:
โฆ SaaS
โฆ Databases
โฆ Web/Mobile app
โฆ Extentions/Plugins
3. แแแ แฅ แฅแ แจ แแญแฐแแ แแแฃแณ แแตแจแ(แซแตแแแแ แแฐแแ แ แฅแแด แแแแณแฝแ )
แแณแฅ แจแแฉแ แต แก ๐
โค5
Forwarded from Muhammed Teshome
if you lack creativity, Picasso has a quote for you.
โGood artists copy. Great artists steal.โ
To โstealโ simply means taking multiple great ideas, and combining them in new ways.
When you combine existing ideas in your own way, you create something new.
Thatโs creativity.
โGood artists copy. Great artists steal.โ
To โstealโ simply means taking multiple great ideas, and combining them in new ways.
When you combine existing ideas in your own way, you create something new.
Thatโs creativity.
โค4
Forwarded from Muhammed Teshome
There are 4 macronutrients of business:
๐ Brand
๐ Content
๐ Product
๐ Marketing
๐ Brand
๐ Content
๐ Product
๐ Marketing
โค3
In which programming language did you write your first line of code?
Anonymous Poll
26%
Python
37%
JavaScript
28%
C++
0%
JAVA
4%
C
2%
C#
2%
PHP
๐2