I was just wondering what you could do that would be patron exclusive, as an extra incentive to help fund you.

Even Scrawl had to do some work on the side to fund himself. I am not expecting to ever hit the goal to fully cover rent and food. Just enough that I can justify spending a lot more time on the Example Suite. I think you shouldn´t expect to make a living out of it unless it gets insanely popular.ezze wrote:This sounds quite interesting, in six months or so I'll finish my PhD in computer science and make a living out of FOSS project would be great.
So the basic idea is to join FOSS projects and use patreon.com to incentive people to support me and the projects?
Making a living out of FOSS projects (or anything on which you rely on the public) necessitates more than a PhD, thought. You must have the will to work, a love for your craft and be ready to sacrifice a lot of time to put into that project. Also perphaps your family too... But don't do that, alright?ezze wrote:This sounds quite interesting, in six months or so I'll finish my PhD in computer science and make a living out of FOSS project would be great.
So the basic idea is to join FOSS projects and use patreon.com to incentive people to support me and the projects?
Code: Select all
int counter = 1
list multOfTwo = new list
while counter <= 100
if counter % 2 == 0
multOfTwo.append(counter)
endif
counter++
endwhile