Best of HashnodeMay 2022

  1. 1
    Article
    Avatar of hashnodeHashnode·4y

    The Complete Modern React Developer 2022

    This course will give you the skills and knowledge to become a Software Developer across the full stack. We will be building a super basic Twitter clone that has CRUD functionality for posting, reading and deleting tweets. In this section you will learn how to setup a Node backend using both Express.js and Nestjs. And as a bonus you will also learn some DevOps when we put a MongoDB and Postgres database inside of a Docker container.

  2. 2
    Article
    Avatar of hashnodeHashnode·4y

    Learn Go: The complete course

    Go (also known as Golang ) is a programming language developed at Google in 2007 and open-sourced in 2009. It was designed to combine the efficacy, speed, and safety of a statically typed and compiled language with the ease of programming of a dynamic language. Go has just 25 keywords which makes it easy to read, write and maintain.

  3. 3
    Article
    Avatar of hashnodeHashnode·4y

    Don't lose your Github contributions when you leave an organization

    A Github profile for software engineers is like their resume or at least I treat it like one, hence it's important to keep it up-to-date, authentic and relevant. Having a consistent contributions graph on your Github profile helps you get noticed by possible future recruiters and in general, it shows your consistency.

  4. 4
    Article
    Avatar of hashnodeHashnode·4y

    Sessions vs JWTs - A Complete Guide to Authentication

    Authentication or auth for short is the process where a server recognizes the identity of a user. Authorization is then done, to allocate a role to the authenticated user and allocate the required services to that particular user. There are 2 ways you can implement auth:Server-side sessions and JWTs.

  5. 5
    Article
    Avatar of hashnodeHashnode·4y

    Why You Should Ditch Create-React-App for Vite

    Vite is a build tool similar to Webpack. It can be used for React, Preact, Svelte, Vue, Vanilla JS, and LitElements. Vite uses route-based code-splitting to figure out what parts of the code actually need to be loaded, and doesn't have to pre-bundle everything.

  6. 6
    Article
    Avatar of hashnodeHashnode·4y

    Traits of a senior software engineer

    Senior engineers are already expected to be technically deep and to deliver on time. Being a “technically deep” engineer is merely a tiny drop in the ocean for a promotion. Being reliable is particularly significant when collaborating with your manager. You should ensure that your work is visible to everyone on your team.

  7. 7
    Article
    Avatar of hashnodeHashnode·4y

    Get good at Git

    Git was created by Linus Torvalds, a guy much smarter than us. He knew if he made it too easy, it would make us weak. In this blog, we will look at a bunch of different tips and tricks to make you more productive.

  8. 8
    Article
    Avatar of hashnodeHashnode·4y

    Pure vs Impure Functions

    Pure and Impure functions are the two terms that you always hear in a programming language. Pure Function is always dependent on arguments and there should not be any side effects. Side Effects are when you try to use external code in the function or if you are mutating a variable then it creates a Side Effect.

  9. 9
    Article
    Avatar of hashnodeHashnode·4y

    12 Awesome Shape Generators for Your Web Projects 😍🚀

    In this article, I have compiled some of my favorite shape generators. I have further sorted them across the categories like blogs, waves, separators, and miscellaneous. I will provide a direct link, a short description, and a preview image, so you can get the initial impression of each generator and its features.

  10. 10
    Article
    Avatar of hashnodeHashnode·4y

    How to Improve Coding skills by doing 100 Days Of Code? Here are the 16 benefits that I got from it.

    On 26 May 2022, I completed the 100 Days of code series on Twitter. I was consistent for the first 48 days but after that, due to my family problem I broke that consistency. By doing code daily and sharing projects on Twitter I grew my Audience from 0 to 3200+.That's all about this article.

  11. 11
    Article
    Avatar of hashnodeHashnode·4y

    The Top 12 Node.js Frameworks on GitHub️

    These are the top 12 Node.js frameworks on GitHub️ at the time of writing. I have no doubt that these numbers are going to increase but at least then you can see how much they have grown.Express.js is the most popular Node.JS backend framework.

  12. 12
    Article
    Avatar of hashnodeHashnode·4y

    7 Free Terminal Tools and Emulators to Boost Development Productivity

    The terminal has been around for decades and is an essential part of a developer's toolbox. I've noticed that there have been a ton of new tools and emulators popping up into the terminal ecosystem. It has been exciting to see that the terminal is still getting some love even after all these years. This list will contain the top terminal tools andEmulators ranging from battle-tested veterans to the new kids on the block.

  13. 13
    Article
    Avatar of hashnodeHashnode·4y

    Hoisting in JavaScript explained visually 🔥 😍

    This blog post aims to explain one such peculiarity, i.e. hoisting using animated gifs. Let’s learn hoisting in let, const keywords and functions. To keep this article concise we would be learning more about the scope in let and const.

  14. 14
    Article
    Avatar of hashnodeHashnode·4y

    React.js Deep Dive as a beginner

    React is an Open Source project created by Facebook. It is one of the most popular JavaScript library with over 187k stars on GitHub. It's used to build user interfaces on the font end. Let's see why you should use react over vanilla JavaScript or any other library/frameworks.

  15. 15
    Article
    Avatar of hashnodeHashnode·4y

    react optimization

    React is a JavaScript library for building user interfaces. It ships with several ways to minimize the number of costly DOM operations required to update the UI. Using React will lead to a fast user interface for many applications without doing much work to specifically optimize for performance. Re-rendering a component only happens when necessary. Lazy for Lazy Loading Components.

  16. 16
    Article
    Avatar of hashnodeHashnode·4y

    5 Rules to master ‘this’ in Javascript

    The value of this will be determined by the block from where it gets called, but in an order of precedence that we'll discuss here. Invoking Function with a new keyword, the this inside function will refer to a new empty object. Free Function Invocation means calling the function without any of the conditions discussed above (without using new operator, or as a method belonging to an object)

  17. 17
    Article
    Avatar of hashnodeHashnode·4y

    5 Amazing React Component Libraries to Consider for your Next Project

    As web developers, it is often hard and time-consuming to make accessible UIs. This gets even worse when we have to make special components like Modals or Popovers from scratch. Today, we are going to focus on React component libraries that are accessible, have a decent base style, have good docs, and come with components like Popovers, Tooltips, etc.

  18. 18
    Article
    Avatar of hashnodeHashnode·4y

    Infinite scrolling

    In this guide, I will create a movie listing react app with infinite scroll using tmdb which allow us to fetch paginated data. We will use the IntersectionObserver API to implement an infinite scroll. We also need to use useRef Hooks to get the DOM node to observe.

  19. 19
    Article
    Avatar of hashnodeHashnode·4y

    Designing Scalable Frontend Systems

    In this article, we will discuss the rest of the items in our frontend system design framework. We will talk about API design, managing the data store, accessibility, performance optimization techniques, and more. Let's get it started. The first point we need to discuss is the API and network design and how we will manage the communication with the BE.

  20. 20
    Article
    Avatar of hashnodeHashnode·4y

    As a software engineer, it’s important to build good habits

    As a software engineer or developer, it’s important to build good habits. Good habits speed you and your team up and help you write maintainable code. Don’t treat your IDEA as a simple text editor; use it as the powerful tool it is.

  21. 21
    Article
    Avatar of hashnodeHashnode·4y

    Can You Resolve Merge Conflicts Before They Happen?

    Merging conflicts are an event that occurs when Git is unable to automatically resolve differences in code between two commits. They can happen as a result of merging branches, during a rebase or when you’re cherry-picking in Git. We can either solve them manually or use a Git GUI such as the ones built into VS Code or Jetbrains IDEs.

  22. 22
    Article
    Avatar of hashnodeHashnode·4y

    Introducing ReactPlay - Learn, Create, Share ReactJS projects

    ReactPlay is an Opensource platform to learn, create and share ReactJS projects with the developer community. It allows you to learn from the code, explanation, articles, and videos related to a project and inspire you to create one. When you create a play with a few simple guided steps, it goes through some serious code reviews by experienced ReactJS developers.

  23. 23
    Article
    Avatar of hashnodeHashnode·4y

    Git And GitHub For Beginners

    Git and GitHub are very important tools for a developer and it doesn't matter at what stage of your career you are, you can learn them. In the first part we are going to learn what is Git and GitHub and how can we use them? And then in the second article i.e., Getting Started With Open Source (coming soon!), we will discuss what is open source and how you can contribute.

  24. 24
    Article
    Avatar of hashnodeHashnode·4y

    Machine Learning: Creating an animated avatar that reacts to your voice

    This week I created an animated avatar based on my photo that was turned into an digital avatar with an amazing Python tool. How can we use a Python Machine Learning Tool to create an animated PNG-Tuber avatar. V-Tubing originated in Japan in 2010 but grew popularity in the western world in 2020.

  25. 25
    Article
    Avatar of hashnodeHashnode·4y

    Web Performance

    Rendering is the process of turning a web page's assets ( HTML, CSS, JS, and other static assets) into interactive content on the browser. A typical request travels through the internet before it reaches a server that sends back a response to the client. The response manifests different entities such as Styles , Markup , Scripts , and other files. They represent the different life forms on Renderland.