Skip to content

Instantly share code, notes, and snippets.

@amansatija
amansatija / kubectl_ubuntu_wsl.sh
Created December 3, 2020 10:59 — forked from cmendible/kubectl_ubuntu_wsl.sh
Install kubectl on ubuntu (WSL) and use kubectl config from Windows
#!/bin/bash
# Receives your Windows username as only parameter.
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.16.0/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
windowsUser=$1
@amansatija
amansatija / index.html
Created November 16, 2018 21:35
Progress Bar Liquid Bubble
<!--
Inspired by Code Pen User
Jamie Dixon, with this pen
https://codepen.io/JamieDixon/pen/Pqrjvv
I cleaned up a lot of errors and redundant stuff
then made it more awesome and customizeable
-->
<div class="wrapper">
@amansatija
amansatija / git-php-webhook.php
Created March 24, 2017 09:56 — forked from hawkins/git-php-webhook.php
A basic webhook for deploying updates to repos on Github to your local server
<?php
/**
* This script is for easily deploying updates to Github repos to your local server. It will automatically git clone or
* git pull in your repo directory every time an update is pushed to your $BRANCH (configured below).
*
* Read more about how to use this script at http://behindcompanies.com/2014/01/a-simple-script-for-deploying-code-with-githubs-webhooks/
*
* INSTRUCTIONS:
* 1. Edit the variables below
* 2. Upload this script to your server somewhere it can be publicly accessed