Skip to content

Instantly share code, notes, and snippets.

View arjunrao87's full-sized avatar
👋

Arjun Rao arjunrao87

👋
View GitHub Profile
@arjunrao87
arjunrao87 / t-shirt-sizes.md
Last active January 25, 2023 01:05
T-shirt sizes
T-shirt size Approx. time to complete
Small Days
Medium Weeks
Large Months
X-Large Quarters

Keybase proof

I hereby claim:

  • I am arjunrao87 on github.
  • I am arjunrao87 (https://keybase.io/arjunrao87) on keybase.
  • I have a public key ASCb2C4ez2Mg3EiKYdJzyaGIWKFsZt4QxoUNexlXw2-IEwo

To claim this, I am signing this object:

@arjunrao87
arjunrao87 / changelog_template.md
Last active July 16, 2019 22:58
Changelog Template

x.y.z

Added

Changed

Fixed

Removed

Post Sprint checklist

  • Retrospective
  • Provide summary metrics for sprint
    • Velocity ( Story Points )
    • Merge Requests completed
    • Burnup/burndown
    • Control Chart
  • Highlight 1-3 big items that happened in the sprint
  • Write a blog post on 1-2 items that got done in the sprint
  • Write up the release notes for the sprint

Step 1 - Create table

create table madrid_air (
date text,
BEN text,
CO text,
EBE text,
NMHC text,
NO text,
NO_2 text,
@arjunrao87
arjunrao87 / athena2-s3-postgres-data-lake.md
Created October 22, 2018 02:04
athena2-s3-postgres-data-lake
minikube addons enable ingress
kubectl create ns <ns-name> 
export TILLER_NAMESPACE=<ns-name>
helm init  --tiller-namespace default
helm repo update
helm install stable/nginx-ingress --namespace kube-system
helm install stable/minio 
helm install --name "timescaledb" -f values.yaml stable/postgresql  
kubectl apply -f ingress.yaml 
SNIPPET 1
// Before Java 7
List<Integer> myList = new ArrayList<Integer>();
// After Java 7
List<Integer> myList = new ArrayList<>();
// Before Java 9
return new Callable<String>() {
@Override
public String call() throws Exception {
return null;
@arjunrao87
arjunrao87 / node-debugging-vscode.md
Last active May 15, 2018 03:46
Node Debugging in VSCode

Debugging Express server in VSCode ( As of 5/2018 )

Node + Express + Babel

Setup

  • Using Babel to transpile ES6 -> ES5
  • Add breakpoints in the src/ folder ( NOT the dist/ folder ) 🔥

Folder structure

  • kvm
  • kubernetes API