DPDheeraj Purohitinutkrshtdev.hashnode.dev·Feb 7, 2025 · 1 min readCleaning data with pandasLet’s import our super tool for data cleaning | data wrangling : import pandas as pd Reading a CSV file in pandas: df = pd.read_csv("data/sample-data.csv") The df.head() method returns the top 5 rows by default and can accept an argument n to disp...00
DPDheeraj Purohitinutkrshtdev.hashnode.dev·Mar 16, 2024 · 3 min readSvelte - 103 (build a simple layout)Hey all, today will explore some nitty gritty of svelte for building layouts concepts we will learn today: Svelte basic project setup Svelte routing Slot - composable UI Styling Let's Begin npm create vite@latest - select project name - select ...02P
DPDheeraj Purohitinutkrshtdev.hashnode.dev·Mar 14, 2024 · 3 min readSvelte - 102Reactive Values this is something we want to compute every time component mounts Svelte automatically updates the DOM when your component's state changes. Often, some parts of a component's state need to be computed from other parts (such as a fullna...00
DPDheeraj Purohitinutkrshtdev.hashnode.dev·Mar 14, 2024 · 2 min readSvelte - 101Why Svelte frontend framework small bundle size ease of use inbuilt state management animations and transitions (overrated framework is weak in this part, you know which framework! :D) Overall fast scoped styles + global styles what is Svelt...01A
DPDheeraj Purohitinutkrshtdev.hashnode.dev·Feb 18, 2024 · 4 min readTypeScript Basics: Setting Up and Project EssentialsTypeScript Project Essentials: A Simple Setup Guide Section 1 - Setup Create a project folder: Create a folder named /typescript-basic-project. Create HTML file: Inside the folder, create an index.html file. Install TypeScript globally: npm i...00