February 13, 2012
What exact version of dmd/druntime/phobos are you using?
Is this related to the GC locking changes?
February 13, 2012
I'm getting some odd regression in this that worked in an earlier beta. Tracking down test case...

February 13, 2012
From: "Nick Sabalausky" <bus_dmdbeta at semitwist.com>
> I'm getting some odd regression in this that worked in an earlier beta. Tracking down test case...
> 

Gah! I was using an old DMD instead of this beta. Nevermind.

February 13, 2012
On Monday, February 13, 2012 20:00:44 Nick Sabalausky wrote:
> From: "Nick Sabalausky" <bus_dmdbeta at semitwist.com>
> 
> > I'm getting some odd regression in this that worked in an earlier beta. Tracking down test case...
> 
> Gah! I was using an old DMD instead of this beta. Nevermind.

Is that like an anti-beta then?

You shouldn't play around with anti-matter. It can be dangerous. :)

- Jonathan M Davis
February 14, 2012
This is a great idea for anyone who has an uncommon name, but there is no way it'd work for me.  For example, https://github.com/DanielMurphy is not me.  Same problem on every other site.

As for searching, 'yebblies' is a much better way to find me online than 'Daniel Murphy'.  Try it, you'll see what I mean.

On Tue, Feb 14, 2012 at 7:23 AM, Walter Bright <walter at digitalmars.com> wrote:
>
> I have a hard time mentally connecting which name is used on the mailing list with which pseudonym on github. I know if I click on yebblies I get Daniel Murphy, but it would be more convenient if you used DanielMurphy as the github handle. This applies to everyone.
>
> And btw, using your own name for the commits will increase your professional ranking in Google searches, as Google will be able to find your contributions easily :-).
>
February 13, 2012
On Tuesday, February 14, 2012 12:56:00 Daniel Murphy wrote:
> This is a great idea for anyone who has an uncommon name, but there is no way it'd work for me. For example, https://github.com/DanielMurphy is not me. Same problem on every other site.
> 
> As for searching, 'yebblies' is a much better way to find me online than 'Daniel Murphy'. Try it, you'll see what I mean.

Which would be one reason why I use my middle initial. But my name is so insanely common, that even if you search my _exact_ name, you have to add programming to the search, or you won't find me.

- Jonathan M Davis
February 13, 2012

On 2/13/2012 6:04 PM, Jonathan M Davis wrote:
>
> Which would be one reason why I use my middle initial. But my name is so insanely common, that even if you search my _exact_ name, you have to add programming to the search, or you won't find me.
>
> - Jonathan M Davis
>

jonathanmdavis.com appears to be available!
February 14, 2012

On 13 Feb, 2012,at 10:51 PM, Steve Schveighoffer <schveiguy at yahoo.com> wrote:

> This can be any number of things.  It seems like a corruption issue.
>
>
> Just for your info, however, the code you quoted below is wasteful -- Starting with 2.041 or around there, the code you give will allocate a new array, then throw it away on the first append.
>
> You are better off with this:
>
> Attribute[] attrs;
> attrs.reserve(tag.attr.length);
>
> No, I don't think this will solve your problem.  But it should avoid the throw-away initial array allocation.
>
>
> -Steve

That was the first thing I tried when I found the correct method, actually I tried to not reserve anything. This is an old habit from D1 I have. Since this project supports both D1 and D2 I used the old D1 version. But now when I think about it that code is only for D2 so I should changed that.?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puremagic.com/pipermail/dmd-beta/attachments/20120214/8faf3b78/attachment.html>
February 14, 2012
I don't know, that one that ships with this beta.?

On 13 Feb, 2012,at 11:37 PM, Martin Nowak <dawg at dawgfoto.de> wrote:

> What exact version of dmd/druntime/phobos are you using?
> Is this related to the GC locking changes?
> _______________________________________________
> dmd-beta mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puremagic.com/pipermail/dmd-beta/attachments/20120214/eff54996/attachment.html>
February 14, 2012
On 13 Feb, 2012,at 11:37 PM, Martin Nowak <dawg at dawgfoto.de> wrote:

> What exact version of dmd/druntime/phobos are you using?
> Is this related to the GC locking changes?
> _______________________________________________
> dmd-beta mailing list
> dmd-beta at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/dmd-beta

These changes:

https://github.com/D-Programming-Language/druntime/commit/f4d798b0138030b80c8d898e237948046e191c0d

Do not appear to be present in the latest beta, at least not in the druntime sources that are bundled.

--?
/Jacob Carlborg
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puremagic.com/pipermail/dmd-beta/attachments/20120214/5c77e0f2/attachment.html>