Skip to content

Instantly share code, notes, and snippets.

@jargnar
jargnar / duplicated_accumulator.go
Last active December 9, 2018 14:09
Find duplicated accumulator from a stream
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"github.com/AndreasBriese/bbloom"
)
@jargnar
jargnar / mysqrt.rkt
Last active October 7, 2018 08:39
Square-rooting in Racket
#lang racket
(define (mysqrt x)
;; a procedure to calculate square root of a number
;; starts with a guess and improves it until it is good enough
;; a guess can be improved by averaging itself with x/guess
(define (avg a b) (/ (+ a b) 2.0))
(define (improve-guess guess x) (avg guess (/ x guess)))
@jargnar
jargnar / restoreS3DeletedObjects.sh
Created July 28, 2018 08:57
Restore deleted S3 Objects by Prefix
bucket="SOME_BUCKET_NAME"
prefix="SOME_PREFIX"
objects="["
printf "\n\n>>> SALVAGING LOST DATA NOW\n\n"
while :
do
count=0
@jargnar
jargnar / .vimrc
Created July 15, 2018 09:51
vimrc
" Suhas vimrc
" MIT License
" Copyright 2018, <[email protected]>
"----------------------------------------
" System: plugin manager
"----------------------------------------
call plug#begin('~/.vim/plugged')
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
@jargnar
jargnar / lightitup.ino
Last active May 6, 2018 13:01
Light it up - use photo resistor to light LED automatically in darkness
#define LED 8
#define PHOTORESISTOR A0
#define THRESHOLD 200
void setup()
{
Serial.begin(9600);
pinMode(LED, OUTPUT);
pinMode(PHOTORESISTOR, INPUT_PULLUP);
Serial.println("Hello, Arduino");
@jargnar
jargnar / hello.ino
Last active May 6, 2018 12:18
Hello Arduino
#define BUTTON 5
#define LED 8
void setup()
{
Serial.begin(9600);
pinMode(LED, OUTPUT);
pinMode(BUTTON, INPUT_PULLUP);
Serial.println("Hello, Arduino");
}
@jargnar
jargnar / asciiart.scala
Last active December 11, 2017 11:00
ASCII Art from Codingame
/*
MIT License
Copyright 2017 Suhas SG <[email protected]>
*/
import scala.util._
object Solution extends App {
val l = readInt
val h = readInt
@jargnar
jargnar / style.mss
Last active May 4, 2017 03:35
Example carto css
Map {
background-color: #444;
}
#countries {
::outline {
line-color: #aaa;
line-width: 1;
line-join: round;
}
@jargnar
jargnar / BinaryTreeMinDepth.java
Last active March 21, 2017 11:27
Minimum Depth of a Binary Tree
/**
* Created by suhas on 21/03/17.
*/
class BinaryTree<T> {
class Node<T> {
T val;
BinaryTree left;
BinaryTree right;
Node(T val, BinaryTree left, BinaryTree right) {

What I Wish I'd Known About Equity Before Joining A Unicorn

Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.

This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would