VS Code

Browse posts by tag

Static Website (VS Code, GitHub, netlify)

February 24, 2026

Summary

This guide walks you through creating and deploying a static website using VS Code, GitHub, and netlify. You’ll learn how to build a simple website with AI assistance, set up version control, and establish an automated CI/CD pipeline that deploys your changes automatically whenever you push to GitHub.

Install VS Code and Plugins

Download and install VS Code from https://code.visualstudio.com/download

Install Plugins

  • Live Preview or Live Server (for previewing your website locally)
  • Co-Pilot or Amazon Q (for AI-powered coding assistance)

Setup Python Environment

June 11, 2025

Step-by-Step Python Environment on MacOS

This guide walks through setting up a Python development environment on MacOS using Visual Studio Code, including package management, virtual environments, and recommended configurations.

1. Install/Verify Homebrew

# Check if Homebrew is installed
brew --version

# If not installed, install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

2. Install/Update Python using Homebrew

# Install Python
brew install python

# Verify Python installation
python3 --version

3. Verify pip Installation

pip (Python package installer) comes with Python installed via Homebrew. Verify it:

How to Disable Sounds in vs Code

February 18, 2025

How to disable sounds in VS Code.

  1. Open the Command Palette (Ctrl + Shift + P).

  2. Search for “Preferences: Open Settings (JSON)” and select it.

  1. Add the following line inside the JSON file:
"editor.accessibilitySupport": "off",

How to Setup PasteImage

February 9, 2025

How to Paste Images into Your Hugo Blog in VS Code on Mac

1. Install the “Paste Image” Extension in VS Code

  • Open VS Code
  • Press Cmd + Shift + X to open Extensions
  • Search for “Paste Image” by mushanh
  • Click Install

2. Configure the Extension to Save Images in Your Blog Folder

  • Open Settings (Cmd + ,)

  • Search for “pasteImage.path”

  • Set it to:This ensures images are saved inside the same folder as the Markdown file.