Skip to content

A simple program written in Python to help companies project pay-outs from a progressive equity arrangement. Under "progressive equity", once an equity holder reaches the pre-set financial independence number during an exit, 50% of their additional equity will be re-distributed to other equity holders.

Notifications You must be signed in to change notification settings

gustavz/progressive-equity-calculator

 
 

Repository files navigation

Progressive Equity Calculator App

A simple program written in Python to explore pay-out scenarios from a progressive equity arrangement. Under "progressive equity", once an equity holder reaches the pre-set financial independence number from the earnings received from an exit, 50% of their additional equity will be re-distributed to other equity holders on a pro-rata basis.

This concept was popularized by one of the co-founders of Groupon, who reasoned that after a certain amount of money or the "financial independence threshold", a portion of the earnings from a large exit should be shared with the many employees who made huge contributions, but owned far less equity.

View it Live

The progressive equity calculator is available online and explains the genesis of the project.

Learn More about Progressive Equity

Check out this blog post: Introducing Progressive Equity and this Hacker News Thread for more information on progressive equity.

Technlogies Used

  • Python
  • Flask
  • Pandas
  • Docker

The app was deployed on AWS Elastic Beanstalk. Blog post with the details coming soon!

Use Docker to Run the Program

To run this program using Docker, using two simple commands:

  1. Pull the image from DockerHub:
docker pull nadaataiyab/pe-calculator:latest
  1. Run the app locally in the Docker container: -p specifies the ports used on your computer and the Docker container
docker run -p 5000:5000 nadaataiyab/pe-calculator:latest

To edit the files locally and have the changes update in real time on the Docker container, mount the folder in which you saved the files when you run the Docker container using this command:

docker run -p 5000:5000 -v [file path to the project files on your computer]:/app nadaataiyab/pe-calculator

Run the program in your local environment

  1. Ensure that you have installed python, flask, and pandas
  2. Go to the root director of the app
  3. Use the following command:
python application.py

Contribute!

This is an open source project. Please feel free to fork the repo and make a pull request and/or provide feedback on how to improve the app.

Get in Touch

Github | Docker Hub | Twitter | LinkedIn | Medium Blog

About

A simple program written in Python to help companies project pay-outs from a progressive equity arrangement. Under "progressive equity", once an equity holder reaches the pre-set financial independence number during an exit, 50% of their additional equity will be re-distributed to other equity holders.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.5%
  • HTML 2.6%
  • C++ 0.8%
  • C 0.7%
  • Jupyter Notebook 0.4%
  • Fortran 0.0%