Skip to content

Instantly share code, notes, and snippets.

View samperay's full-sized avatar
💭
working remotely

Sunil Amperayani samperay

💭
working remotely
  • Infrastructure Engineer
  • Bengaluru
View GitHub Profile
@samperay
samperay / books.json
Created February 7, 2023 04:57
books database
{
"books":[
{
"id": "1",
"isbn":"9781593279509",
"title":"Eloquent JavaScript, Third Edition",
"subtitle":"A Modern Introduction to Programming",
"author":"Marijn Haverbeke",
"published":"2018-12-04T00:00:00.000Z",
"publisher":"No Starch Press",
@samperay
samperay / virt-install
Last active October 21, 2022 13:27
Create KVM/QUMU nested virtulization
# How do you install QEMU/KVM within virtual box
sudo apt update
sudo apt install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils
sudo apt install virt-manager
virsh list
@samperay
samperay / vimrc
Created April 18, 2022 13:51
vimrc settings
set ignorecase
set autoindent
set tabstop=2
set expandtab
set cursorcolumn
@samperay
samperay / start_minikube.md
Created February 7, 2022 12:23
start minikube with 192.168.56.1 network in MacOS

minikube start --driver=virtualbox --host-only-cidr "192.168.56.1/24"