Ashutosh Dubey
@_ashutoshdubey
Followers
15
Following
100
Media
15
Statuses
72
Software Developer Engineer. Fullstack Developer | NodeJs | Loopback | SQL | ReactJs | Javascript
मुंबई, भारत
Joined February 2020
Here’s how to build a Slack clone with Claude 3.7 Sonnet and Cursor Agent in v0.46. Perfect for *anyone* wanting to pick up AI coding tools. Learn how to build an app 100% from scratch with the newest AI coding workflows. Watch for 1hr+ of agentic coding.
81
175
2K
🛠️ Confused about the difference between shallow and deep cloning in JavaScript? 🤔 My latest article breaks down these concepts and shows how to master object duplication. 💻 Check it out on Medium: https://t.co/L6nhwB2fBr
#JavaScript #CodingTips #DeepClone #ShallowClone #JS
0
0
1
Did you know why AI chat bots can’t answer “how many r in strawberry.” correctly ?
16
23
133
Syntax difference: A functional component is a function returning JSX, while a class-based component extends React.Component and uses a render method to return JSX. #react #reactjs #javascript #LearningJourney
0
0
1
When an object is created through the .create method. The properties and functions we assign to that object go into a prototype. To delete prototype properties use delete obj.__proto__.age Learned from @piyushgarg_dev
#buildinpublic #javascript
1
0
1
component2 is a stateful functional component because it uses the useState hook to manage the name state variable. Whenever the name state variable changes, it triggers a re-render of the component, updating the displayed content accordingly.
0
0
0
component1 is a stateless functional component because it only renders a static <h1> element with the text "Hello". It always renders the same content regardless of any internal state changes.
1
0
0
Which component is stateful and stateless? import {useState} from 'react' function component1(){ const [name, setName] = useState('') return (<h1>Hello</h1>) } function component2(){ const [name, setName] = useState('') return (<h1>Hello, {name}</h1>) } #reactjs
1
0
0
a well-rested programmer can get more done in 2 hours than a tired programmer can in 5 hours
34
57
466
apt list -> for all availabe packages apt list --installed -> for installed packages apt update -> to update the list of packages apt update pk -> to update a specific package apt upgrade -> to upgrade all installed packages to their latest version.
0
0
0
Exciting match between Zimbabwe and Pakistan more happy on Zimbabwe win than India win on Netherlands. @ZimCricketv @T20WorldCup
0
0
0
Forget DSA, try this. It's actual software engineering. Thread 👇
242
848
3K
Learned new term today for #DevOps . CAMS C --> Culture A --> Automation M --> Measurement S --> Sharing
0
0
0
Linux command every developer should know 1. find - https://t.co/syQ0cVzlbD 2. grep - https://t.co/BG7MJg3IfV 3. curl - https://t.co/SUnYNB0fJi 4. lsof - https://t.co/0Zc2iVxVVv 5. chmod - https://t.co/FdjM96WdKj 6. tar - https://t.co/MDP9OzS0UL need more? see this by @b0rk
48
661
3K