DDhruvindhruvblogs.xyz·Apr 1, 2023 · 2 min readRust01 : The IntroductionWhat is Rust? Rust is a General purpose programming language. Which emphasizes performance and type safety. Rust was created as a personal project while working at Mozilla by Graydon Hoare. It is the Most Loved Language on StackOverFlow Survey since ...00
DDhruvindhruvblogs.xyz·Jan 27, 2023 · 2 min readDjango Todo AppCreate Django Project django-admin startproject todoproject Create Django App First, cd into todoproject then create django app python manage.py todoapp Create urls.py file in todoapp . Your file structure should look like this. Open todop...00
DDhruvindhruvblogs.xyz·Jan 11, 2023 · 5 min read10 Linux Commands Every Programmer Should KnowIntroduction If you've never used Linux, then you're in for a treat. It's one of the most versatile operating systems out there, and it can do anything from browsing the web to playing games. But if you want to get good at using Linux, then knowing t...00
DDhruvindhruvblogs.xyz·Dec 19, 2022 · 1 min readBest Way to Start Your Neovim journeyI will discuss about minimalistic and under 400 lines Lua configuration for neovim in this article. Installing NeoVim For Mac Users Open Terminal Install Homebrew Write this command brew install neovim and then press Return. Boom. That is How yo...00
DDhruvindhruvblogs.xyz·Dec 3, 2022 · 1 min readTS02: BuiltIn DataTypes and ArraysToday, We are going through builtin types : number, string, boolean and also any types, and arrays. Builtin Types There are 5 built-in types in Typescript. number: only allows a number string: only allows characters and string boolean: only allow ...00