GithubHelp home page GithubHelp logo

Comments (22)

rohitpaulk avatar rohitpaulk commented on July 17, 2024 2

!m @chadwhitacre

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Gratipay allocates profits and losses at the end of the year based on the
amount of money each member otherwise takes in guaranteed payments during the
year. For example, if there are two members, and during the year one takes
$150,000 in guaranteed payments and the other $75,000, then if there is $36,000
in undistributed profit at the end of the year, Gratipay allocates $24,000 to
the first and $8,000 to the second.
The United States' Internal Revenue Service (IRS) taxes Gratipay as a
partnership. Each year, between January 1 and March 15, Gratipay files a [Form
1065](https://www.irs.gov/pub/irs-pdf/f1065.pdf) with the IRS, and sends a
[Schedule K-1](https://www.irs.gov/pub/irs-pdf/f1065sk1.pdf) to each member
showing their income through Gratipay for the year. Members are responsible for
paying all taxes on their income through Gratipay, including any quarterly
taxes. Member income through Gratipay includes both the distributions of
guaranteed payments that members take for themselves, <i>and</i> the year-end
profit/loss allocations that stay within Gratipay and are not distributed to
members. For example, if a member takes $75,000 in guaranteed payments during
the year, and is allocated $8,000 in profit at the end of the year, then their
taxable income through Gratipay for the year is $83,000.

gratipay-bak=# select sum(amount) from payments where team='Gratipay' and direction='to-participant' and participant='whit537' and "timestamp"::text > '2017-01-01' and "timestamp"::text < '2018';
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  sum  โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 11.24 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
(1 row)

gratipay-bak=# select sum(amount) from payments where team='Gratipay' and direction='to-participant' and participant='clone1018' and "timestamp"::text > '2017-01-01' and "timestamp"::text < '2018';
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ sum  โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 0.52 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
(1 row)

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024
  $    %
--------
 0.52  4
11.24 96
-----
11.76

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Braintree 1099-K shows 36,464, refunds in dashboard sum to 137, == 36,327 gross profit.

gratipay-bak=# select sum(amount) from payments where team='Gratipay' and direction='to-team' and "timestamp"::text > '2017-01-01' and "timestamp"::text < '2018';
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚   sum   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ 4366.85 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
(1 row)

Leaving 31,960 in escrow liability.

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Now, expenses ...

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Unfortunately, we don't have PNC CSVs for the fourth quarter of 2017 because I neglected to download them in time. ๐Ÿ˜ž

$ find . -name pnc.csv -or -name pnc.pdf|sort
./01/pnc.csv
./01/pnc.pdf
./02/pnc.csv
./02/pnc.pdf
./03/pnc.csv
./03/pnc.pdf
./04/pnc.csv
./04/pnc.pdf
./05/pnc.pdf
./06/pnc.pdf
./07/pnc.csv
./07/pnc.pdf
./08/pnc.csv
./08/pnc.pdf
./09/pnc.csv
./09/pnc.pdf
./10/pnc.pdf
./11/pnc.pdf
./12/pnc.pdf
$

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

I guess the thing to do is to produce those three CSVs by hand, and then load all 12 into a Google Sheet for further analysis according to the categories needed for reporting.

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Bah, copy/paste is worthless. :rage1:

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

๐Ÿ‘

$ ./check.py < 10/pnc.csv 
333.70 476.09
$

screen shot 2018-04-05 at 4 21 37 pm

#!/usr/bin/env python

import csv, sys
from decimal import Decimal as D


data = csv.reader(sys.stdin)
headers = next(data)

income = D(0)
expenses = D(0)

for raw in data:
    row = dict(zip(headers, raw))
    w, d = [x[1:] for x in (row['Withdrawals'], row['Deposits'])]
    if w:
        expenses += D(w)
    else:
        assert d, d
        income += D(d)

print(income, expenses)

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

๐Ÿ‘

$ ./check.py < 11/pnc.csv 
288.10 259.21
$

screen shot 2018-04-05 at 4 16 03 pm

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024
$ ./check.py < 12/pnc.csv
200.10 137.51
$

screen shot 2018-04-05 at 4 17 12 pm

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

https://github.com/gratipay/logs/commit/8d125ac155d68ed6cdb2c12ba52b133dc2af04ea

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Okay! Into a sheet!

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

No contractors above the 1099 minimum. ๐Ÿ‘

gratipay-bak=# select participant, sum(amount) from payments where team='Gratipay' and direction='to-participant' and "timestamp"::text > '2017-01-01' and "timestamp"::text < '2018' and participant != 'Gratipay' and participant != 'whit537' and participant != 'clone1018' group by participant order by sum desc;
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ participant โ”‚  sum   โ”‚
โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค
โ”‚ mattbk      โ”‚ 219.54 โ”‚
โ”‚ rohitpaulk  โ”‚  21.31 โ”‚
โ”‚ JessaWitzel โ”‚   4.40 โ”‚
โ”‚ Lurtz       โ”‚   2.60 โ”‚
โ”‚ chrisdev    โ”‚   0.52 โ”‚
โ”‚ aandis.     โ”‚   0.52 โ”‚
โ”‚ sseerrggii  โ”‚   0.52 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
(7 rows)

gratipay-bak=#

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

249.41

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

First pass shows a loss of 957.

screen shot 2018-04-05 at 4 51 53 pm

screen shot 2018-04-05 at 4 52 25 pm

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

So @clone1018 do you want a Schedule K that shows a loss of $38 (4% of 957)? Or do we cut you loose as a partner before you even started (#1223) to avoid you getting sucked into #1220?

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Per #1223 (comment) @clone1018's owner draws were actually only 28ยข, so his percentage of the loss is actually 2% == $23.

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Talked to @clone1018 and we're going to cut him loose to avoid complicating his life (#1223). Proceeding with a Schedule C ...

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

cc: @JessWhit

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

We don't have a clear answer on #1220 but will file 2017 according to the same pattern as our amended 2015.

from inside.gratipay.com.

chadwhitacre avatar chadwhitacre commented on July 17, 2024

Filed!

from inside.gratipay.com.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.