codemarch Profile picture
Tech edu reimagined🎓 • Empowering through coding👩‍💻👨‍💻, development & personal branding • Bridging the gap to dream jobs
Agung Haryono Profile picture TheSamurai Profile picture Erik Viana Profile picture 0 9 Profile picture 4 subscribed
Jan 31 9 tweets 2 min read
Learn React in 30 Days.

Complete Structure: Pre-Requisite:

Javascript Before React - Content Added. Image
Jan 4 12 tweets 3 min read
Components in React.

Explained: Image Real-Life Example:

Imagine building a house 🏠.

Each room (kitchen, bedroom, bathroom) represents a component.

React components contain particular UI and behaviour, just as rooms have particular purposes and looks.

Let's explore these "rooms" in the world of React!
Jan 3 32 tweets 4 min read
How to Master React in 2024.

Thread: 1. Setting the Stage:

➔ JavaScript ES6+:

• Understand arrow functions
• Destructuring
• spread/rest operator
• async/await

➔ Node & NPM:

Basic understanding and using Create React App (CRA).
Sep 1, 2023 10 tweets 3 min read
JavaScript Roadmap 2023 (Part-1): Image Image
Aug 31, 2023 12 tweets 3 min read
CSS Text & Box Model: Image Image
Aug 30, 2023 9 tweets 2 min read
CSS Margins(Part-2): Image Image
Aug 29, 2023 9 tweets 2 min read
CSS Margins: Image Image
Aug 22, 2023 11 tweets 3 min read
CSS Backgrounds: Image Image
Jul 10, 2023 7 tweets 2 min read
Youtube Channels to learn Frontend Development

Thread🧵
May 26, 2023 10 tweets 5 min read
Top websites to learn Java.

Thread🧵 1. Oracle - Official Java Documentation

◦ Comprehensive Java guides
◦ Official best practices and patterns
◦ Tutorials and examples for all levels

🔗 docs.oracle.com/en/java/ Image
May 24, 2023 10 tweets 5 min read
Top websites to learn Ruby

Thread: 🧵 1. Ruby Official Documentation

◦ Comprehensive Ruby guides
◦ Official best practices and patterns
◦ Tutorials and examples for all levels

🔗 ruby-lang.org/en/documentati… Image
May 20, 2023 9 tweets 4 min read
Top websites to learn Node.js.

Thread 🧵 1. Node.js Official Documentation
◦ Comprehensive Node.js guides
◦ Official best practices and patterns
◦ Tutorials and examples for all levels

🔗 nodejs.org/en/docs/ Image
May 18, 2023 10 tweets 5 min read
Top websites to learn Vue.js.

Thread🧵👇 1. Vue.js Official Documentation

◦ Comprehensive Vue.js guides
◦ Official best practices and patterns
◦ Tutorials and examples for all levels

🔗v3.vuejs.org/guide/introduc… Image
May 3, 2023 13 tweets 4 min read
Tips for writing efficient JavaScript code:

Thread 🧵 Writing efficient JavaScript code can improve your application's performance and maintainability. Here are some tips along with examples:
May 2, 2023 15 tweets 4 min read
Tips for debugging React applications:

Thread 🧵 Debugging React applications can be challenging, but there are several tips and tools that can help you identify and fix issues more efficiently:
May 1, 2023 13 tweets 2 min read
Tips for optimizing images for the web:

Thread🧵 Optimizing images for the web is essential for improving your website's performance, user experience, and search engine rankings. Here are some tips for effective image optimization:
Apr 22, 2023 11 tweets 2 min read
Debugging JavaScript.

Tips and tricks for finding and fixing common JavaScript issues.

Thread: 🧵 ➪ Debugging JavaScript can sometimes be challenging, but there are several tips and tricks that can help you find and fix common issues. Here's a list of suggestions to improve your debugging experience:
Apr 21, 2023 13 tweets 4 min read
Hoisting in JavaScript.

A Comprehensive guide.

Thread:🧵 Image ➪ Hoisting is JavaScript's default behavior of moving declarations to the top.

➪ In JavaScript, a variable can be declared after it has been used.
Apr 20, 2023 19 tweets 7 min read
ES6+ Features.

A thread on the most important modern JavaScript features and how to use them: Image 1. The let keyword.

let is a keyword that is used to declare a block scoped variable.
let cannot be redeclared. Image
Apr 19, 2023 8 tweets 4 min read
Earn $1000+ Online.

Strategy for Earning Money from Your Home..

The Thread: 1. Scribe [@ScribeHow]

- Turn any process into a
step-by-step guide, instantly.
- Create Tutorials.
- A Complete guide to do something online.
- Use Scribe Pages to include written content.
- Compile it to an eBook.

🔗 getscribe.how/chrome
Apr 19, 2023 25 tweets 8 min read
JavaScript Array Methods.

Exploring powerful array methods for more efficient and readable code.

Thread 🧵 JavaScript Arrays

➪ What is a JavaScript Arrays.
An array in JavaScript is a variable that can hold several values.
Example: Image