Re: https everywhere update - dlang.org gets an "A" now!

2015-12-07 Thread Kapps via Digitalmars-d-announce
On Monday, 7 December 2015 at 14:38:39 UTC, Steven Schveighoffer 
wrote:

On 12/6/15 11:32 AM, Marc Schütz wrote:
On Sunday, 6 December 2015 at 14:17:18 UTC, Steven 
Schveighoffer wrote:
On 12/6/15 3:29 AM, Adil Baig via Digitalmars-d-announce 
wrote:

+1 Same error. This part may help :

This server could not prove that it is *www.dlang.org
*; its security certificate is 
from*dlang.org

*
*
*
You will need a wild-card certificate (cheaper) or a 
certificate that
allows multiple domain names (more expensive, and probably 
not required)

for the cert to work.



Or redirect www.dlang.org to dlang.org


That won't help if someone already starts at 
https://www.dlang.org/ .


I'm surprised it wouldn't. I wouldn't think a redirect would 
need to be encrypted.


-Steve


It does. Otherwise you could bypass HTTPS entirely by replacing 
the redirect page with a non-encrypted copy of the dlang website 
with whatever modifications you like.


Re: https everywhere update - dlang.org gets an "A" now!

2015-12-07 Thread Steven Schveighoffer via Digitalmars-d-announce

On 12/6/15 11:32 AM, Marc Schütz wrote:

On Sunday, 6 December 2015 at 14:17:18 UTC, Steven Schveighoffer wrote:

On 12/6/15 3:29 AM, Adil Baig via Digitalmars-d-announce wrote:

+1 Same error. This part may help :

This server could not prove that it is *www.dlang.org
*; its security certificate is from*dlang.org
*
*
*
You will need a wild-card certificate (cheaper) or a certificate that
allows multiple domain names (more expensive, and probably not required)
for the cert to work.



Or redirect www.dlang.org to dlang.org


That won't help if someone already starts at https://www.dlang.org/ .


I'm surprised it wouldn't. I wouldn't think a redirect would need to be 
encrypted.


-Steve


DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Andrei Alexandrescu via Digitalmars-d-announce

We're over 20% full and seats are going fast!

We planned to send an announcement when we're 50% sold out. However, 
this time around registrations are coming quite a bit quicker than 
before so we thought we'd keep you posted earlier.


At this time DConf is over 20% sold out. That's only three weeks after 
opening early bird registration and without having announced the 
program. (Which, of course, will be great.) The point here is, if you're 
considering going to DConf, you may want to secure your early bird 
registration now at http://dconf.org/2016/registration.html.


On another vein, we're pleased to announce a book signing session by D 
book authors. Kai Nacke, Mike Parker, Ali Çehreli, and Andrei 
Alexandrescu will sign their respective books. Bring your copy (it 
better be dog-eared) or buy one on site (limited quantities available). 
Details forthcoming.


Looking forward to seeing you at DConf!


Andrei


Re: https everywhere update - dlang.org gets an "A" now!

2015-12-07 Thread Chris Wright via Digitalmars-d-announce
On Mon, 07 Dec 2015 14:48:52 +, Kapps wrote:
> On Monday, 7 December 2015 at 14:38:39 UTC, Steven Schveighoffer wrote:
>> I'm surprised it wouldn't. I wouldn't think a redirect would need to be
>> encrypted.
>>
>> -Steve
> 
> It does. Otherwise you could bypass HTTPS entirely by replacing the
> redirect page with a non-encrypted copy of the dlang website with
> whatever modifications you like.

Well, only if you're trying to protect against MITM attacks. If you're 
only worried about people packet sniffing, you can redirect from an 
unencrypted page without a care.

In a situation like this, where approximately no sensitive information is 
going back and forth, MITM isn't much of a concern (and packet sniffing 
isn't, either, for the most part, except if you're logging in with a 
password you reuse elsewhere).


Re: Release D 2.069.0

2015-12-07 Thread Márcio Martins via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:06:48 UTC, Jean-Yves Vion-Dury 
wrote:
On Wednesday, 4 November 2015 at 15:25:04 UTC, Márcio Martins 
wrote:

[...]



FYI, I just installed the 2.069 version, and now I'm unable to 
compile some modules, getting the same "Error: out of memory". 
I isolated a tiny one raising the issue, and its all about a 
moderately complex ctRegex expression (see below) that seems to 
brake the compiler. Other modules also raise the problem, but 
they are bigger in term of code lines.


[...]


Windows?


Re: Release D 2.069.0

2015-12-07 Thread Jean-Yves Vion-Dury via Digitalmars-d-announce
On Wednesday, 4 November 2015 at 15:25:04 UTC, Márcio Martins 
wrote:
On Wednesday, 4 November 2015 at 01:50:38 UTC, Martin Nowak 
wrote:

Glad to announce D 2.069.0.

http://dlang.org/download.html 
http://downloads.dlang.org/releases/2.x/2.069.0/


This is the first release with a self-hosted dmd compiler and 
comes with even more rangified phobos functions, 
std.experimental.allocator, and many other improvements.


See the changelog for more details. 
http://dlang.org/changelog/2.069.0.html


-Martin


Seems like memory usage went up by a significant amount, as I 
can no longer compile our project on my Windows machine.


DMD 2.068.2 uses up to 1100MB of memory during our build and 
succeeds
DMD 2.069 used up to 1600MB of memory before crashing with 
"Error: out of memory"


Are there any plans to release a dmd64.exe?



FYI, I just installed the 2.069 version, and now I'm unable to 
compile some modules, getting the same "Error: out of memory". I 
isolated a tiny one raising the issue, and its all about a 
moderately complex ctRegex expression (see below) that seems to 
brake the compiler. Other modules also raise the problem, but 
they are bigger in term of code lines.


So, at a first glance it looks like a deeper problem that just a 
"higher memory consumption" issue, to me. I'm a bit frustrated, 
this was working so well so far...



auto r=ctRegex!(
`\s*(?:`
~   `(?P#.*)|`
~   
`(?:@prefix\s+(?P\pL+):\s+<(?P[^<>\s]+)>\s*\.\s*)|`
~   
`(?:(_|\pL+):((?:\pL|[\.\-_0-9])*(?:\pL|\d))\s+(\pL+):((?:\pL|[\.\-_0-9])*(?:\pL|\d))\s+`

~ `(?:(?:(_|\pL+):((?:\pL|[\.\-_0-9])*(?:\pL|\d)))|`
~ 
`(?:(?:(?:"{3}(?P.*)"{3})|(?:"(?P.*)"))`

~   `(?:`
~   
`(?:@(?P[A-Za-z]+(?:\-[A-Za-z0-9]+)*))|`
~   
`(?:\^\^(?P\pL+):(?P\w+))`

~   `)?`
~   `)`
~   `)\s*`
~   `\.\s*)`
~`)`
);

Thank you for any help beyond splitting down the regex above (any 
magic memory-oriented option somewhere?) ...


Jean-Yves

PS I would like to take the opportunity to thank all contributors 
for their great work on D...




Re: learningd.org

2015-12-07 Thread Mike Parker via Digitalmars-d-announce

On Monday, 7 December 2015 at 00:50:08 UTC, Ali Çehreli wrote:

On 12/06/2015 11:34 AM, Mike Parker wrote:

> I intend to gradually add tutorial content to it as time goes
by

That is exactly what Andrew Edwards used to want to do. I 
haven't seen him on the forums lately though.


Yeah, he and I had a some discussions about that starting back at 
DConf 2013. The last I talked to him about it was shortly after I 
started working on the book. I promised him I'd contribute a 
tutorial series on a simple text-based game. Haven't heard from 
him since then.




> I'll be in the States for three weeks from the middle of
December.

Will you have time to join us?

  http://www.meetup.com/D-Lang-Silicon-Valley/events/226112281/

If you would like to present something, perhaps as a warm-up 
for your DConf talk ;), just let me know and I will add you to 
the agenda.


I wish I could! I'm currently scheduled to fly out of Korea on 
the 18th, though I may have to push it back a few days (can't 
miss Christmas -- haven't been home for it since '93). And even 
if I could fly out a couple days earlier, I wouldn't. The new 
Star Wars opens in Korea on the 17th and I've already got my 
reservations! Korean cinemas are much more civilized than those 
in the States -- assigned seats and crowds that aren't screaming 
and shouting. The last night of Dconf 2013 I saw Iron Man 3 in a 
crowded cinema in Mountain View and swore I'd never do it again. 
There's no way I'm going to even bother trying to watch Star Wars 
in the States. All these years in Korea have got me spoiled.



At the least, I want my book signed! :)



Ditto! We'll have to swap copies in Berlin :)




Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Andrei Alexandrescu via Digitalmars-d-announce

On 12/7/15 1:58 PM, Daniel Kozak wrote:

On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu wrote:

We're over 20% full and seats are going fast!



I hope I was the first one :D.


Indeed you were. Thanks! -- Andrei



Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread John Colvin via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu 
wrote:

We're over 20% full and seats are going fast!

We planned to send an announcement when we're 50% sold out. 
However, this time around registrations are coming quite a bit 
quicker than before so we thought we'd keep you posted earlier.


At this time DConf is over 20% sold out. That's only three 
weeks after opening early bird registration and without having 
announced the program. (Which, of course, will be great.) The 
point here is, if you're considering going to DConf, you may 
want to secure your early bird registration now at 
http://dconf.org/2016/registration.html.


On another vein, we're pleased to announce a book signing 
session by D book authors. Kai Nacke, Mike Parker, Ali Çehreli, 
and Andrei Alexandrescu will sign their respective books. Bring 
your copy (it better be dog-eared) or buy one on site (limited 
quantities available). Details forthcoming.


Looking forward to seeing you at DConf!


Andrei


Booked now. Looking forward to it :)


Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread deadalnix via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu 
wrote:

We're over 20% full and seats are going fast!

We planned to send an announcement when we're 50% sold out. 
However, this time around registrations are coming quite a bit 
quicker than before so we thought we'd keep you posted earlier.


At this time DConf is over 20% sold out. That's only three 
weeks after opening early bird registration and without having 
announced the program. (Which, of course, will be great.) The 
point here is, if you're considering going to DConf, you may 
want to secure your early bird registration now at 
http://dconf.org/2016/registration.html.


On another vein, we're pleased to announce a book signing 
session by D book authors. Kai Nacke, Mike Parker, Ali Çehreli, 
and Andrei Alexandrescu will sign their respective books. Bring 
your copy (it better be dog-eared) or buy one on site (limited 
quantities available). Details forthcoming.


Looking forward to seeing you at DConf!


Andrei


Adam won't be coming ?



Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Adam D. Ruppe via Digitalmars-d-announce

On Monday, 7 December 2015 at 19:37:11 UTC, deadalnix wrote:

Adam won't be coming ?


I haven't decided for sure yet, but probably not. I don't like 
travel at all and the thought of a trans-atlantic flight strikes 
me as the worst.


Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Daniel Kozak via Digitalmars-d-announce

On Monday, 7 December 2015 at 20:42:21 UTC, Adam D. Ruppe wrote:

On Monday, 7 December 2015 at 19:37:11 UTC, deadalnix wrote:

Adam won't be coming ?


I haven't decided for sure yet, but probably not. I don't like 
travel at all and the thought of a trans-atlantic flight 
strikes me as the worst.


I just bought print version of your book, so I hope you will 
change your decision, so I can have all my D books with author's 
signature ;)


Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Moritz Maxeiner via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu 
wrote:

We're over 20% full and seats are going fast!

We planned to send an announcement when we're 50% sold out. 
However, this time around registrations are coming quite a bit 
quicker than before so we thought we'd keep you posted earlier.


[...]


A fellow student and me just booked.
Looking forward to it quite a bit :)

calrama


Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Mathias Lang via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu 
wrote:

We're over 20% full and seats are going fast!

We planned to send an announcement when we're 50% sold out. 
However, this time around registrations are coming quite a bit 
quicker than before so we thought we'd keep you posted earlier.


[...]

Looking forward to seeing you at DConf!


Andrei


Awesome !
Can we get an approximation of how many persons is 100% full ? :)


Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Andrei Alexandrescu via Digitalmars-d-announce

On 12/7/15 1:21 PM, Mathias Lang wrote:

On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu wrote:

We're over 20% full and seats are going fast!

We planned to send an announcement when we're 50% sold out. However,
this time around registrations are coming quite a bit quicker than
before so we thought we'd keep you posted earlier.

[...]

Looking forward to seeing you at DConf!


Andrei


Awesome !
Can we get an approximation of how many persons is 100% full ? :)


198. -- Andrei


Re: DConf 2016 news: 20% sold out, book signing

2015-12-07 Thread Daniel Kozak via Digitalmars-d-announce
On Monday, 7 December 2015 at 17:39:14 UTC, Andrei Alexandrescu 
wrote:

We're over 20% full and seats are going fast!



I hope I was the first one :D.

We planned to send an announcement when we're 50% sold out. 
However, this time around registrations are coming quite a bit 
quicker than before so we thought we'd keep you posted earlier.


At this time DConf is over 20% sold out. That's only three 
weeks after opening early bird registration and without having 
announced the program. (Which, of course, will be great.) The 
point here is, if you're considering going to DConf, you may 
want to secure your early bird registration now at 
http://dconf.org/2016/registration.html.


On another vein, we're pleased to announce a book signing 
session by D book authors. Kai Nacke, Mike Parker, Ali Çehreli, 
and Andrei Alexandrescu will sign their respective books. Bring 
your copy (it better be dog-eared) or buy one on site (limited 
quantities available). Details forthcoming.


I allready have print version of yours and Ali's book but only 
ebook version of Learning D, so I have to ( or must to I never 
known which one is correct) upgrade to print one and pre-order 
Kai's book about vibe.d  :).


Looking forward to seeing you at DConf!


Andrei


Me too :)