Skip to content

Instantly share code, notes, and snippets.

View kishaningithub's full-sized avatar

Kishan B kishaningithub

View GitHub Profile
var sourceArr = [
{
"article_id": 71942,
"event_code": "A9",
"start_date": "2016-11-25",
"end_date": "2016-12-30",
"quantity_alloted": 120,
"first_delivery_date": "2016-11-25",
"year": 2016,
@kishaningithub
kishaningithub / bootstrap.sh
Last active March 27, 2026 15:16
This script installs the bare minimum for a new machine
set -e
exists()
{
command -v "$1" >/dev/null 2>&1
}
if exists brew; then
echo "homebrew already exists... skipping..."
else