welcome image

Welcome to My Portfolio/Blog App

馃What is it about? This is my personal Portfolio/Blog app. This app is powered by the technologies such as Hugo, PWA etc. 馃憠What is Hugo? Hugo is the fastest static-site generator powered by Googles鈥檚 Go programming language. By default it ships only HTML which makes website faster. 馃憠What is PWA ? PWA stands for Progressive Web Apps. It is a way of turning the existing web-apps into native-like app with some native capabilities....

September 5, 2022 路 2 min 路 230 words 路 Me
blog image

Nodejs Simplified With Native Typescript and Watch Mode Support

Starting from node 22.6.0, you can directly start writing on the .ts file without installing any dependencies: index.ts function main(message: string): void { console.log("Message: " + message); } main("Hello! world"); For running with watch mode: package.json "dev": "node -w index.ts" Recommended base tsconfig tsconfig.json { "compilerOptions": { "target": "esnext", "module": "nodenext", "allowImportingTsExtensions": true, "rewriteRelativeImportExtensions": true, "verbatimModuleSyntax": true, "erasableSyntaxOnly": true } }

May 19, 2025 路 1 min 路 61 words 路 Me
Ky.js vs Axios comparison

Ky.js: A Delightful Alternative to Axios

jump to code Do You Really Need Another HTTP Client? You might not need any additional HTTP client. The native fetch API, built into modern browsers and Node.js, is powerful and capable of handling many common use cases. If you鈥檙e making simple HTTP requests, fetch might be all you need. However, real-world applications often require more sophisticated features. You might need to: Create reusable API instances with predefined base URLs and authentication Implement request/response interceptors for token refresh flows Transform request/response data consistently across your application Track file upload/download progress Handle retries for failed requests Manage request cancellation Show toast notifications for various HTTP responses This is where Ky....

January 15, 2025 路 5 min 路 1025 words 路 Me
Complete Guide to Building and Running Expo(React Native) Apps

Complete Guide to Building and Running Expo(React Native) Apps

Summary This guide covers five main methods to build and run Expo applications: Expo Go - Fastest method for development and testing, limited to built-in native modules Expo Prebuild - Generates native code when additional native modules are needed Native Builds - Direct builds through Android Studio or Xcode EAS (Expo Application Service) - Cloud-based build service for production releases Debugging Tools - Various options for debugging your Expo app 1....

January 13, 2025 路 2 min 路 395 words 路 Me
Tailwind CSS V4 got simpler,lighter and faster.

Tailwind CSS V4 got simpler,lighter and faster.

Tailwind CSS is one of my favorite and go-to tools. It鈥檚 almost a standard way of writing CSS these days. Even LLMs and AI tools are giving Tailwind CSS code these days. Here are some of the highlights of V4: Build time 10X faster, Incremental build 100X faster. 35% smaller footprint. Power of Rust and Lightning CSS. 2X Faster parser. CSS-first config, Unified toolchain. Modern CSS features. Getting Started (with Vite) Here鈥檚 a quick guide to get started with Tailwind CSS V4 and Vite:...

January 13, 2025 路 1 min 路 114 words 路 Me
blog image

Install and Activate Office 2021 [EASIEST WAY]

Download Office 2021 from Here. Install Download this activation script from Here. Run the script as Administrator. 馃挌 THANK YOU 馃挌

December 29, 2022 路 1 min 路 21 words 路 Me
blog image

Install and Activate Windows 11 [EASIEST WAY]

Download Windows 11 ISO from Here. Install Download this activation script from Here. Run the script as Administrator. 馃挌 THANK YOU 馃挌

December 29, 2022 路 1 min 路 22 words 路 Me