Best of HashnodeJanuary 2022

  1. 1
    Article
    Avatar of hashnodeHashnode·4y

    My Terminal Has SUPER Powers!

    Fig.io has full autocomplete and IntelliSense just like inside of VS Code. This plugin is completely free (Mac only though), so you can head to the website now to download and install. The install process should be pretty straightforward, and after you have it set up you should immediately see it in action.

  2. 2
    Article
    Avatar of hashnodeHashnode·4y

    Setting up a terminal you will love to use

    The terminal is easily the most powerful tool at your disposal in your desktop environment. So learning to use the terminal and setting it up to fit your workflow will give you a huge productivity boost. In this post, I'll walk you through how I set up my Linux terminal workflow with very little effort. When we're finished, you will have a cool looking, productivity improving terminal.

  3. 3
    Article
    Avatar of hashnodeHashnode·4y

    How to build a CLI using NodeJS 💻

    The command line interface (CLI) is one of the most basic and powerful applications ever created by mankind. We are going to be building a CLI which would generate starter templates with TailwindCSS, and Prettier pre-installed. We will be using a NodeJS framework called Tailwind CSS.

  4. 4
    Article
    Avatar of hashnodeHashnode·4y

    Customizing your ZSH terminal in less than 5minutes

    Oh-my-zsh is an open-source framework that will help you managing your zsh configuration. It allows you to use built-in helpers, themes, plugins... and much more. At the end of this tutorial, you will be able to configure it according to your own needs.

  5. 5
    Article
    Avatar of hashnodeHashnode·4y

    Console.log() is not JavaScript

    console.log() is not a part of the Javascript language. The console object (whose log method is used to print data on the web console) is one of the Web APIs provided by the Browser to the JavaScript Engine. The parts of Javascript that are standard across all environments are detailed in the ECMA Specs.

  6. 6
    Article
    Avatar of hashnodeHashnode·4y

    shell scripting, bash

    The shell is a command interpreter, it takes each command and passes it to the operating system kernel to be acted upon. The most commonly available shells are: Bourne shell (sh), C shell (csh), Korn shell (ksh), TC Shell (tcsh) and Bourne Again Shell (bash)

  7. 7
    Article
    Avatar of hashnodeHashnode·4y

    Getting Started with Ethereum and Solidity

    Smart contracts are just like physical paper contracts except they don't need manual work to execute them. All the instructions are automated and these instructions get executed when certain conditions are met. Solidity is programming language which is needed to write smart contracts. We will be using Remix.io, a browser base compiler and code editor which will help us write and deploy our smart contracts on Ethereum.

  8. 8
    Article
    Avatar of hashnodeHashnode·4y

    Cherry-Pick Your Teammate's Changes Without Push 'n Pull-ing To Your Repo In PyCharm

    GitLive allows you to cherry-pick your teammate's changes straight from their local files without having to push and pull to Git. Clicking on a file will open a diff of the changes so we can make sure it contains only the changes we need. You can also perform the cherry pick at the level above if you want to pick all changes from multiple files at once.

  9. 9
    Article
    Avatar of hashnodeHashnode·4y

    How to build a REST API using NodeJS

    In this blog post we are doing to build a REST API which would serve as a source of motivation for developers using NodeJS and MongoDB. API stands for "Application Programming Interface" which is a tool which allows two applications to talk to each other. These type of APIs follow the client-server model, where one program send a request and the other response with some data.

  10. 10
    Article
    Avatar of hashnodeHashnode·4y

    The Ultimate Guide to GitHub

    Git is a version control system technology used for managing source codes of various software. GitHub is one of the most popular platforms among developers all over the world. It has a wide variety of users ranging from beginner programmers to Multinational Companies like Google and Amazon. In this article, we are going to take a deeper look at GitHub and its attributes.

  11. 11
    Article
    Avatar of hashnodeHashnode·4y

    TwNFT - Mint your tweets as NFTs easily and for free

    TwNFT is a simple web application that allows you to mint your tweets as NFTs for free. It is my submission for the Thirdweb x Hashnode Hackathon. TwNFT was announced back on the 5th of January, 2022 but I didn't get a solid idea until the 18th.

  12. 12
    Article
    Avatar of hashnodeHashnode·4y

    Creating Three-dimensional React Components!

    Three.js uses JavaScript to create GPU-accelerated 3D animations that can be included in a website without the need for proprietary browser plugins. In this article, I will walk thru the whole process of integrating three.js into a react component without the use of any react packages. We will try to integrate Red Stapler's star diving 3D animation into a cinema reservation react app.