Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mubaris on github.
  • I am mubaris (https://keybase.io/mubaris) on keybase.
  • I have a public key ASCMk6NPJ-yT13Pl6prvO-cm1fduSjq6mFTtBvNHR_ihOgo

To claim this, I am signing this object:

@mubaris
mubaris / uni_vs_sushi.ipynb
Last active January 6, 2021 10:22
Uniswap vs Sushiswap [Volume / Liquidity]
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box.
✅ did:3:bafyreiby6aduoxpnwyprqlkqhfgjghna2zchyyam6ueljpepukzctrpoiy ✅
Create your profile today to start building social connection and trust online at https://3Box.io/

Keybase proof

I hereby claim:

  • I am mubaris on github.
  • I am mubaris (https://keybase.io/mubaris) on keybase.
  • I have a public key ASC_jnt1I2ruR6Z8JaqikEzpTSZzpOjMzUChZHOt_LRmUgo

To claim this, I am signing this object:

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

Chat bots are great for many purposes. They make life easier. It's even powerful if the user can interact with the messages.

Buttons to interact with messages

Buttons make it easier to interact with messages.

Example 👇

Slack Button

@mubaris
mubaris / levelsio-by.html
Created April 16, 2018 13:55 — forked from levelsio/levelsio-by.html
Maker Link (aka the @levelsio by link)
<!-- Maker Link by @levelsio -->
<!-- MIT License -->
<style>
body {
background:#333;
}
.levelsio-by {
font-family:"Helvetica Neue",sans-serif;
right:0;
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mubaris
mubaris / xor_keras.py
Created December 31, 2017 21:10
XOR Neural Network Keras
import numpy as np
from keras.models import Sequential
from keras.layers.core import Dense
# the four different states of the XOR gate
training_data = np.array([[0,0],[0,1],[1,0],[1,1]], "float32")
# the four expected results in the same order
target_data = np.array([[0],[1],[1],[0]], "float32")