Mac tutorials and examples

Chrome enable webgl on old macbooks

Steps to enable WebGL on old MAcbook (e.g. later 2011) Visit chrome://settings and make sure under advanced settings > System > Use hardware available when read more

How to change computer display name on Mac

Display name on Mac device can decide how your Mac appears on network and at other places like command line shell. Mac display name can read more

How to change default system voice for text-to-speech on Mac

Mac lets you convert text to speech and play it. It can be done in many applications (Chrome, Firefox and other browsers, textedit, etc.) by read more

How to install drupal on Mac usin MAMP

Drupal is an open source popular cms system powering millions of websites and applications. This article covers how to install Drupal on Mac using MAMP. read more

How to remove hard drive icon from mac desktop

Mac shows some icons by default on desktop including hard drive. In case you want to save space and keep desktop tidy, you can remove read more

How to use rrdtool plot traffic from network interface

rrdtool open source tool is used to log time series data and create nice graphs form that data. Official information can be obtained from rrdtool‘s read more

How to view your WiFi password on Mac

Sometime we connect to a Wi-Fi on Mac and then later forget the password we entered earlier. It can be easily viewed on Mac if read more

Mac – how to change desktop icons size

Mac desktop icons size can be increased or decreased using Desktop view options. There are steps: Click anywhere on blank Desktop area. Click on View read more

Mac – how to take timed screenshot

At times we need to take timed screenshots on Mac. Here are two approaches we can use to take timed screenshot on Mac. Screenshot using read more

Mac – how to always show scroll bar

Mac by default show scroll bars automatically based on mouse pointer. This setting can be changed to always show scroll bars. Note that this settings read more

Mac – how to change default location for screenshots

Mac screenshots are saved on Desktop by default. It can cause Desktop to get cluttered very fast. Here are the steps to change default screenshot read more

Mac – how to open apps not from App Store

By default security settings of Mac does not allow apps by unknown developers not downloaded from app store to be opened by double clicking on read more

Mac – how to take screenshots

Mac supports full screen, window and a specific selection for taking screenshots. You can either store screenshot in a file on Desktop or in clipboard. read more

Mac – how to use kubernetes with Lima-VM

Lima is Linux virtual machines (on macOS, in most cases). Lima launches Linux virtual machines with automatic file sharing and port forwarding (similar to WSL2), read more

Mac – kubernetes minikube – create deployment

This tutorial assumers that minikube kubernetes is already installed. Steps to install deploy a test application on kubernetes cluster: create deployment kubectl create deployment hello-minikube read more

Mac – make spotlight search faster

Mac spotlight search is one of the most frequently used tool on Mac. It searches various folders on Mac and shows results. Here are steps read more

Mac – show volume icon on menu bar

To show volume icon on Mac top menu bar follow these steps: Open system preferences by using spoltlight search. Click on sound icon Select sound read more

Mac m1 – How to Install Kubernetes with kind

Steps to install kubernetes on Mac m1: Install docker on mac (m1) from the link. Run docker. Install kind. kind lets you run Kubernetes on read more

Mac m1 – How to Install Kubernetes with minikube

Steps to install kubernetes on Mac m1: Install docker on mac (m1) from the link. Run docker. Install minikube. minikube lets you run Kubernetes on read more

Mac m1 – minikube – create multi node kubernetes cluster

This tutorial assumers that minikube kubernetes is already installed. Steps to create multi node cluster : Start a cluster with 2 nodes: minikube start –nodes read more

Mac podman quick start guide

Steps to install podman on mac Instal podman and podman-desktopbrew install podmanbrew install podman-desktop Init and start podmanpodman machine initpodman machine start Start podman deskop read more

NestJS Quick start tutorial on Mac

Quick start tutorial steps for installing NestJS: Install Node on Mac Install NestJSnpm i -g @nestjs/cli Create new nest projectnest new proj1 To create a read more

NextJS Quick start tutorial on Mac

Quick start tutorial steps for installing NextJS: Install Node on Mac Create NextJS projectnpx create-next-app@latest –javascript(We can name it proj1) Run the app in dev read more

Vagarant quick start guide on Mac

Vagrant is an excellent tool to create and configure lightweight, reproducible, and portable development environments. Here is a quick start guide to use vagrant on read more

minikube kubernetes – create deployment with multiple replica and load balancer

This tutorial assumers that minikube kubernetes is already installed. Steps to create a deployment with 3 replicas and load balancer: Start a cluster with 2 read more

minikube kubernetes – how to access service IP endpoint using curl

This tutorial assumers that minikube kubernetes is already installed. Steps to access service IP endpoint using curl Instal minikube and kubernetes create multi replica deployment read more

minikube kubernetes – how to access specific pod IP endpoint using curl

This tutorial assumers that minikube kubernetes is already installed. Steps to access pod IP endpoint using curl Instal minikube and kubernetes create multi replica deployment read more