RSSAmplifier

Blog

Saud Chougle

Learner, Software Developer, Freelancer

blog.saudchougle.comRSS feed ↗10 posts

Latest posts

Simple Trick to Auto-Sync Obsidian Vault - 100% Private, Encrypted and Free

I’ve been using Obsidian for the past 3 years — it’s basically my second brain now 🧠 Here is the simple trick to auto-sync your entire vault No Obsidian Sync No GetHub setup 100% private, encrypted and free When you use Obsidian long enough, it...

My Journey to Landing an International Client

Story After my first successful client. I was searching for my next client. I approach local businesses. However, as I come from a small town, it is extremely difficult to locate businesses that require websites or applications. However, after some a...

Cracking the Code: My Journey to Landing My First Freelance Client

Introduction Hi, I am Saud Chougle, Software Developer from India. In this blog, I am thrilled to share my personal story of how I secured my very first freelance client and the process I undertook to successfully complete the project. Story I wanted...

How to Setup Vue Test Utils for Vue2 Application

I was working on the vue2 app and wanted to set up a unit test. Since vue3 is now available, and their testing libraries have also been updated to support vue3, Because of versioning, I had difficulty configuring vue2 with test-utils. That is why I a...

Graph Representation

☝️This is a graph. How? A graph is a collection of nodes and edges in a way that nodes are connected by edges. How does the computer understand what is a graph? and what are nodes and edges? There are two commonly used techniques for representing gra...

What is Pointer?

What is this 👇? var favoriteNumber int = 7 a variable of the name "favoriteNumber" of a type integer that stores 7. similarly var favoriteColor string = "black" a variable of the name "favoriteColor" of a type string that stores "black". pretty si...

Introduction To Graph Data Structure

What is a Graph data structure? A Graph is a collection of nodes and edges in a way that nodes are connected by an edge. Graph Terminologies fig01 Vertex or Node Every individual point that holds or represents some kind of data is called vertex or n...

Repositree - Github Repository Explorer

I have been working on this project for a couple of months it seems a perfect time to share. #christmashackathon Repositree is a GitHub repository or file explorer that helps to navigate the files like your IDE. Features IDE-like code tree for GitH...

Simplify google-auth-library

google-auth-simplify is a npm package that simplifies google-auth-library in 3 steps: Generate auth URL Get auth token Get user info So basically, it's just a wrapper that wraps all complex parts of google-auth-library. you can say it's a facade...

My Little Automation Script

It's a simple script that helps to launch VSCode and Terminal at the provided path. I have to just type node project.js const { exec } = require('child_process'); const fullpath = '/desire/path'; main(); function main() { launchVSCodeAt(fullpath...