Skip to content

Instantly share code, notes, and snippets.

View Cryptomamy's full-sized avatar
👋
Working from home

Cryptomamy Cryptomamy

👋
Working from home
View GitHub Profile
@mubix
mubix / infosec_newbie.md
Last active July 4, 2024 21:11
How to start in Infosec
@highfestiva
highfestiva / bitmex-liquidation-calculator.py
Created October 26, 2019 20:54
cli bitmex liquidation calculation formula, minimal implementation
#!/usr/bin/env python3
import argparse
from math import ceil, floor
sign = lambda amt: -1 if amt<0 else (1 if amt>0 else 0)
class dobj: