VS Code 1.115 is out and it's packed with improvements you'll actually use 🔧 Background terminals now notify agents automatically. SSH remotes set themselves up. File edits are tracked and restorable. There's a lot here. I broke down every update in plain English so you don't have to dig through the changelog yourself 👀 New post on hamidrazadev.com — link in bio! #vscode #webdev #javascript #programminglife #devtools #codenewbie #100daysofcode
VS Code 1.115 Updates: Background Terminals and SSH Remotes
More Relevant Posts
-
Dependabot: upgrade lib X, you have 1 crit vuln. Me: ok... Dependabot: you now have 20 high vulns and no work around. #javascript #code #cve
To view or add a comment, sign in
-
The Dev Journal #6 Debugging is not just fixing errors — it’s understanding how systems behave. The better your debugging skills, the stronger your development skills. #Debugging #FrontendEngineer #JavaScript #SoftwareEngin #learning
To view or add a comment, sign in
-
-
JavaScript Array Trick (Most Devs Miss This!) Problem: let arr = [1, 2, 3, 4, 5]; arr[10] = 42; console.log(arr); console.log(arr.length); What will be the output? #javascript #mern #webdevelopment #coding #developer
To view or add a comment, sign in
-
DOM Manipulation Challenge: Are you doing it WRONG? Let's test your JavaScript logic! 🧠 Look at the code in the image. We added click listeners to 1,000 items. Then, we added a brand new item to the list. Question: When you click that NEW item, what happens in the console? A) "Item clicked!" B) Nothing at all C) Error If you guessed B, you're right! This is why "Event Delegation" is a senior-level skill every developer needs to master. It saves memory and handles new items automatically. 💻✨ Tell me your answer in the comments! 👇 Hashtags: #JavaScript #CodingQuiz #WebDev #100DaysOfCode #LearnToCode #CodeWithSarir #FrontendDevelopment #ProgrammingTips #JSLogic #codinglife #programmer
To view or add a comment, sign in
-
-
Version 2.4.0.1 has been released with significant enhancements for those pairing IC with a JetBrains 2026.1+ free IDE, leveraging their newly-added first-class JavaScript, TypeScript, and CSS language support and adding full integration of LWC Jest test execution, debugging, and coverage analysis in those free IDEs. Release notes: https://lnkd.in/gpSrF7Qr Demo: https://lnkd.in/g_6J3Rcy
IC2 JavaScript/TypeScript/CSS/Jest in free IntelliJ IDEA 2026.1 demo
https://www.youtube.com/
To view or add a comment, sign in
-
JavaScript Logical Series – Day 1 👉 What will be the output? console.log(1 + "2" + "2"); console.log(1 + +"2" + "2"); console.log(1 + -"1" + "2"); console.log(+"1" + "1" + "2"); Output : 122 32 02 112 Explanation • "2" → string → concatenation happens • +"2" → converts string to number • -"1" → converts to number (-1) • Order of operations matters 🔥 Key Point JavaScript type coercion can change output unexpectedly. Always be careful with + operator. #JavaScript #NodeJS #WebDevelopment #Programming #CodingChallenge #FrontendDevelopment #SoftwareEngineering
To view or add a comment, sign in
-
-
I spent 2 hours debugging my React code today. The problem? I forgot to add a key prop inside .map() 2 hours. Gone. We always check the big things first — API calls, state management, component logic... But the bug is always something embarrassing Here are 3 mistakes I make almost every week — ❌ Forgetting key prop in .map() ❌ Calling setState and expecting instant update ❌ Spending 1 hour on a bug that console.log solves in 2 minutes 3 years of experience and I still do this Tell me your most embarrassing bug in the comments 👇 I promise I won't judge. We have ALL been there. #reactjs #javascript #frontenddeveloper #webdevelopment #coding #100daysofcode #programminghumor
To view or add a comment, sign in
-
-
Still using VS Code after trying everything else — and here's exactly why 🔧⚡ From extensions to Git integration to the built-in debugger, VS Code just works. I broke down every real reason it keeps winning — plus common mistakes most developers make with it. Read the full post at 👉 hamidrazadev.com 💬 Drop a comment — are you still on VS Code or did you switch to something else? #vscode #webdev #javascript #developertools #productivity #frontenddevelopment #programminglife #hamidrazadev
To view or add a comment, sign in
-
-
Just realized something interesting about JavaScripts memory optimisation behaviour with primitives while digging into runtime behavior 👇 Values like true, false, undefined, null, and even common string literals (like "") aren’t recreated every time you declare them. JS engines (like V8) treat these as shared, immutable values: • They exist only once internally • Variables just hold references to them So when you write: let a = true; let b = true; You’re not creating two true values — both just point to the same underlying value. Same idea applies to: • false • undefined • null • frequently used string literals 👉 Small detail, but shows how much memory optimization happens under the hood, a neat reminder that JavaScript does more for performance than we often think. #JavaScript #V8 #Performance #Programming #Backend
To view or add a comment, sign in
-
Instead of creating separate state for every input… You can manage all inputs using one state object. 👉 Use one state → store all form fields 👉 Use name attribute → identify input 👉 Update dynamically using onChange 📌 Example fields: • name • email • password 📌 How it works: 1️⃣ Create one state object 2️⃣ Add name to inputs 3️⃣ Use one onChange handler 4️⃣ Update using [name]: value ⚡ This makes your form: ✔ Cleaner ✔ Scalable ✔ Easy to manage Master this to build real-world forms in React. Follow TFSC for practical frontend learning. #reactjs #reactforms #frontenddevelopment #javascript #webdevelopment #coding #learnreact #programming #tfsc
To view or add a comment, sign in
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development