Kirstykirsty.hashnode.dev·Jun 14, 2024A Week of React Learning: Key Takeaways and Future PlansIntroduction This week has been a fun week; it's my first week without any assignments for computer science and purely a week where I learned all sorts of React jazz. ✨ Not to mention, this week was the first week where I considered myself officially...Discuss·36 readsReact
Marcia Crippsmarciac95.hashnode.dev·Jun 4, 2024From Farmer/Agronomist to Developer: My 4.5 Month Journey to Landing a Remote Job (Without a CS Degree!)Imagine this: you're contemplating a career change where you can work remotely and solve problems. The tech world keeps calling your name on social media and mainstream media. You dream of coding, but a bootcamp seems expensive, and a CS degree feels...Discusssoftware development
Shubh Sharmashubhsharma19.hashnode.dev·Apr 21, 2024Self taught developers should avoid these traps1. Tutorial hell trap I think this was very obvious but still wanted to add this as well in this list. When you will be learning to code there will be a phase of your learning journey when you will get stuck in this for atleast once. Tutorial hell is...Roshan Khetpal and 2 others are discussing this3 people are discussing thisDiscuss·54 likes·224 readsBeginner Developers
Shubh Sharmashubhsharma19.hashnode.dev·Apr 15, 20244 Habits to Avoid Bugs related to Hoisting in your JavaScript CodeDeclaring variables at the beginning of the scope By declaring variables at the beginning of the scope you ensure that these variables are accessible throughout that scope, avoiding any confusion caused by hoisting. const data = 12; const variable = ...Discuss·5 likes·34 readsJavaScript
Kirstykirsty.hashnode.dev·Mar 29, 2024Serving Webpages in Multiple Languages: A GuideThis guide explores how to create webpages that display content in multiple languages. Many developers rely on the default HTML boilerplate generated by the Emmet shortcut (! + Tab) in VS Code. This boilerplate often includes the lang="en" attribute,...Discuss·12 likes·36 readsHTML
Quincy LarsonforfreeCodeCampfreecodecamp.org·Mar 29, 2024Leon Noel has Helped THOUSANDS of People Learn to Code [100Devs founder on freeCodeCamp Podcast #117]On this week's episode of the podcast, I interview Leon Noel, founder of 100Devs and head of engineering at Resilient Coders. Growing up, Leon had it drilled into him that he had to become a doctor, lawyer, or dentist. But his ambitions grew and he w...Discuss#100devs
Chavhan Bharatbharatchavhan.hashnode.dev·Dec 17, 2023"Mastering TypeScript: From Loose to Strong Typing" Part: 02Understanding Arrays, Tuples, Objects, and Enums in TypeScript TypeScript is a statically typed superset of JavaScript that includes static typing. This means that you can specify variable types such as arrays, tuples, objects, and enums. We'll look ...Discuss#TypeScript #Programming #CodeReliability #StaticTyping #WebDevelopment #SoftwareEngineering #TypeSafety #Enums #Arrays #Tuples #Objects #HappyCoding
Abdul Shaikabdulshaik.hashnode.dev·Dec 5, 2023Mastering TypeScript Generics: From Arrays to Arrow Functions with Type SafetyMastering Generics with Arrays and Arrow Functions in TypeScript Example 1: Generics in Arrays // Without Generics function getFirstItem(arr: (string | number)[]): (string | number) { return arr[0]; } let arr1 = getFirstItem([1, 2, 3]); ...Discuss100DaysOfCode
Abdul Shaikabdulshaik.hashnode.dev·Dec 4, 2023Understanding TypeScript GenericsGenerics: Generics in TypeScript enable the creation of flexible and reusable functions or components that work seamlessly with various data types, enhancing code type safety and maintainability. Example 1: Without Generics // Without Generics functi...Discuss2Articles1Week
Vinit Guptathevinitgupta.hashnode.dev·Aug 17, 2023Day 5 : The Comprehensive guide to GitHub REST APIHave you ever wondered how to use GitHub for your projects? Well, I used to and it seemed like a difficult task. Trust me it is not. With the REST API Github provides and some simple setup, you can easily use GitHub for your personal projects and por...Discuss100 Days of Learning GitHub