November 23, 2018
On Friday, 23 November 2018 at 12:56:49 UTC, Robert M. Münch wrote:

>
> Hi, will I get a donation certificate? I haven't found anything about it.

Not a certificate, but a receipt with all the information you need for tax deductions.
November 28, 2018
On Friday, 23 November 2018 at 13:18:55 UTC, Mike Parker wrote:
> On Friday, 23 November 2018 at 10:20:22 UTC, Martin Tschierschke wrote:
>
>>
>> Sorry for annoy you, but this links have to be integrated into the donate page
>> https://dlang.org/foundation/donate.html
>
> Yes, I know. I want to do more than just add the link, however. I want to integrate the campaign menu, and that means I have to set aside some time to determine how best to add the integration code into the DDOC for the site. It's one of many items on my TODO list and I'll get to it soon.

Just to let this pop up again :-)

The campaign (https://www.flipcause.com/secure/cause_pdetails/NDUwNTY=)
is now at $764 given from 23 supporters.

=> With the new average of ~$33.2, we need another 67 supporters to reach the $3000 goal.

> I'll do another push in the first week of December, on Twitter and the blog. And as we get closer to the deadline, I'll send out more reminders.
Very good!




December 04, 2018
On Wednesday, 28 November 2018 at 09:34:33 UTC, Martin Tschierschke wrote:
> On Friday, 23 November 2018 at 13:18:55 UTC, Mike Parker wrote:
>> On Friday, 23 November 2018 at 10:20:22 UTC, Martin Tschierschke wrote:
>>
[...]

The campaign (https://www.flipcause.com/secure/cause_pdetails/NDUwNTY=)
just received a big push:

Aaron Sanchez Donation $250 12/03/18
Jason Briggs Donation & Mailing list $500 12/03/18

"D Lang is incredible let's all donate more."

This deserves a big thank you!

We are now at: $1,614 Raised of $3,000 Goal from 27 supporters.

This has lifted the average to app $60 and only the need of another 23 giving this amount.

Now I am convinced, that the missing amount will be in in time.

So Mike, you may start to prepare the next funding goal...

Regards mt.

p.s. And still: Please put the campaign logo/button beside the general donation logo/button
at: https://dlang.org/foundation/donate.html
December 04, 2018
On Tuesday, 4 December 2018 at 10:20:10 UTC, Martin Tschierschke wrote:
> p.s. And still: Please put the campaign logo/button beside the general donation logo/button
> at: https://dlang.org/foundation/donate.html

You could do a PR to https://github.com/dlang/dlang.org/blob/master/foundation/donate.dd You've probably got a better Idea of what to do for that than I do (also I can't approve my own PRs)
December 04, 2018
On Tuesday, 4 December 2018 at 13:36:18 UTC, Nicholas Wilson wrote:
> On Tuesday, 4 December 2018 at 10:20:10 UTC, Martin Tschierschke wrote:
>> p.s. And still: Please put the campaign logo/button beside the general donation logo/button
>> at: https://dlang.org/foundation/donate.html
>
> You could do a PR to https://github.com/dlang/dlang.org/blob/master/foundation/donate.dd You've probably got a better Idea of what to do for that than I do (also I can't approve my own PRs)

I tried my best, not sure how to see if the result looks ok?
January 02, 2019
On Saturday, 10 November 2018 at 16:09:12 UTC, Mike Parker wrote:
[...]
> Please read the blog post for more details:
>
> https://dlang.org/blog/2018/11/10/the-new-fundraising-campaign/
>
> For the impatient:
>
> https://www.flipcause.com/secure/cause_pdetails/NDUwNTY=
I just want this topic to stay on top, so I am giving the updated numbers:
Now we are at

        $2,364 Raised of $3,000 Goal from 45 supporters.

This makes an average of: $53 / donor and means we need an other 12 supporters.

This campaign will end in 43 day, so the question after app. 50% is, what next?
Will we start collecting for something else or should we first try to extend the job of our pull request manager?

I would love to have a campaign to increase compilation speed for std.regex and std.format...

January 02, 2019
On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote:
>
> I would love to have a campaign to increase compilation speed for std.regex and std.format...

You could defer the generation of utf-tables to runtime, which should yield some improvement. But I'll measure the reasons for slowness again and post em.
January 02, 2019
On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote:
> This campaign will end in 43 day, so the question after app. 50% is, what next?
> Will we start collecting for something else or should we first try to extend the job of our pull request manager?

Thanks Martin for the reminder. From my observations of the activities on github it seems like Nicholas Wilson is doing an excellent job :-)

Regards, Joakim B.
January 02, 2019
On Wednesday, 2 January 2019 at 13:07:23 UTC, Joakim Brännström wrote:
> On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote:
>> This campaign will end in 43 day, so the question after app. 50% is, what next?
>> Will we start collecting for something else or should we first try to extend the job of our pull request manager?
>
> Thanks Martin for the reminder. From my observations of the activities on github it seems like Nicholas Wilson is doing an excellent job :-)
>
> Regards, Joakim B.

Thank you! So here an update of the update:
$2,464 Raised of $3,000 Goal by 46 Supporters

=> We only need another 10 Supporters giving an average of $54. :-)
January 03, 2019
On 03/01/2019 12:11 AM, Stefan Koch wrote:
> On Wednesday, 2 January 2019 at 10:16:11 UTC, Martin Tschierschke wrote:
>>
>> I would love to have a campaign to increase compilation speed for std.regex and std.format...
> 
> You could defer the generation of utf-tables to runtime, which should yield some improvement. But I'll measure the reasons for slowness again and post em.

I spent the last couple of hours trying to hunt down the performance cost in std.regex.

Its seems to be caused by std.uni. When I say caused by, I mean pretty much 100% of the slowness is happening there. It gets a little worse, the slow parts? Yeah they are being called directly and they are marked package. Something is off about this.