Skip to content

Instantly share code, notes, and snippets.

@AnthonyAkentiev
Created March 20, 2019 22:46
Show Gist options
  • Save AnthonyAkentiev/c2e3c2f177ba4288b4034c5310789dfc to your computer and use it in GitHub Desktop.
Save AnthonyAkentiev/c2e3c2f177ba4288b4034c5310789dfc to your computer and use it in GitHub Desktop.
// Calculate how much event Organizer gets
X = (((markup_cents * feeOrg_ppm) / 10000) / 100);
// Which can be simplified:
X = (markup_cents * feeOrg_ppm) / 1000000;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment