Re: Syncing files without a dynamic DNS service with D, Gmail and cURL

2014-01-23 Thread Andrei Alexandrescu
On 1/22/14 6:43 PM, Ben wrote: On Thursday, 23 January 2014 at 02:12:20 UTC, Andrei Alexandrescu wrote: On 1/22/14 12:15 PM, Ben wrote: I figured I would share this project here since I wrote it in D and this is a D forum! I basically built two small programs to send and get a computer's IP

Re: std.signal : voting results

2014-01-23 Thread Kagamin
On Tuesday, 21 January 2014 at 09:26:14 UTC, Dicebot wrote: As an additional comment I wonder if existing signal module should be deprecated and removed completely from Phobos even desite lack of replacement. It sits in the very same niche as this proposal and has even worse implementation

Re: std.signal : voting results

2014-01-23 Thread ilya-stromberg
On Wednesday, 22 January 2014 at 23:19:08 UTC, David Nadlinger wrote: This is also the reason why I would have voted no if I made it in time. Documentation and implementation can be fixed later, but we would have had to support a borderline-broken API (with regards to type stringification) for

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Mathias LANG
On Wednesday, 22 January 2014 at 13:09:19 UTC, Leandro Lucarella wrote: There is a fairly popular de-facto standard for versioning: semver. Yes, it is incompatible with Debian (and I guess FreeBSD) but you can make it compatible by just changing one character (- - ~). Since apparently a

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Walter Bright
On 1/22/2014 5:37 AM, Sönke Ludwig wrote: I'm getting deprecation warnings inside std.datetime to use any instead of canFind. Also DMD now warns about using FP operators, such as =, for detecting NaN's. What's the rationale for this? One issue with this is that isNaN cannot be used for CTFE.

Re: So, You Want To Write Your Own Programming Language?

2014-01-23 Thread Chris
On Wednesday, 22 January 2014 at 18:46:06 UTC, Walter Bright wrote: On 1/22/2014 3:40 AM, Chris wrote: Syntax is getting simplified due to the fact that the listener knows what we mean, e.g. buy one get one free. I wonder to what extent languages will be simplified one day. But this is a

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Jacob Carlborg
On 2014-01-23 10:15, Mathias LANG wrote: As Jacob already said, we will either need to go back to a major of 0, or improve our major number almost everytime there is a release. Ruby has just adopted the semantic versioning scheme[1] . They added a fourth digit. The first digit will be the

VS2013 shell debug build can not find PDB's

2014-01-23 Thread dbjdbj
I have the same issue with the same VS2013 Shell. I am using W7 PROF 32bit I have tried with mago and that works. I am new to D. What is wrong with using mago, if anything ? Thanks DBJ

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Dejan Lekic
On Tuesday, 21 January 2014 at 22:22:01 UTC, Andrew Edwards wrote: Due to building an packaging requirements and a need to address the concerns of the community, I changed the naming convention for this and all future releases. The following is our new naming convention:

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Martin Nowak
On Wednesday, 22 January 2014 at 03:43:51 UTC, Andrew Edwards wrote: 1) The link for nsisunz.zip per readme.txt does not work. I wrote the author of the plugin.

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Martin Nowak
On Thursday, 23 January 2014 at 06:50:47 UTC, Brad Anderson wrote: This of course is relying on the zip file getting uploaded to downloads.dlang.org. You could use the digitalmars urls for betas, I suppose, since those don't end up on the download site anyway. The url template is just a bit

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Daniel Murphy
Martin Nowak wrote in message news:jcszzsgkwldowcmwz...@forum.dlang.org... Mmh, we could simply upload the intermediate zip files for each platform, that fall out of create_dmd_release before they are combined. Sounds good.

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Leandro Lucarella
Jacob Carlborg, el 23 de January a las 11:39 me escribiste: On 2014-01-23 10:15, Mathias LANG wrote: As Jacob already said, we will either need to go back to a major of 0, or improve our major number almost everytime there is a release. Ruby has just adopted the semantic versioning

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Martin Nowak
On 01/23/2014 01:33 PM, Dejan Lekic wrote: It would be nice, IMHO, to have release information in the same fashion VisualD does it. Check: https://github.com/D-Programming-Language/visuald/releases . Notice that each release has changelog. -Very nice and professional I think. Yeah, maybe we

Re: std.signal : voting has begun

2014-01-23 Thread Martin Nowak
On 01/21/2014 02:48 AM, David Nadlinger wrote: I completely missed the review/voting, sorry, though mine would have been a no too, for the in my opinion inappropriate use of string mixins in the API. If you find yourself to be needing to stringify a passed in type for use in a string mixin, you

D Mode for ACE editor

2014-01-23 Thread Robik
Hello everyone. I am happy to announce that updated D Language mode for Ace editor has been merged and included in latest build. For those who don't know, Ace is an open source code editor written in JavaScript and used by c9.io, koding.com and hopefully will be used on DPaste soon as well.

Dmitry Olshansky is now a github committer

2014-01-23 Thread Andrei Alexandrescu
Congratulations to Dmitry! (His github ID is blackwhale.) Andrei

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread Walter Bright
On 1/23/2014 9:38 AM, Andrei Alexandrescu wrote: Congratulations to Dmitry! (His github ID is blackwhale.) Congrats, too! BTW, Dmitry, can you use Dmitry for your github ID, too? I often lose track of which handle goes with which name. I feel like I need to make a cheat sheet and tape it to

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread Jakob Ovrum
On Thursday, 23 January 2014 at 17:38:04 UTC, Andrei Alexandrescu wrote: Congratulations to Dmitry! (His github ID is blackwhale.) Andrei Great! This is fairly overdue, std.regex and std.uni have proven utterly invaluable and he's a frequent reviewer. Congratulations :)

Re: D Mode for ACE editor

2014-01-23 Thread Martin Nowak
On 01/23/2014 06:06 PM, Robik wrote: I am happy to announce that updated D Language mode for Ace editor has been merged and included in latest build. Yes!

Re: So, You Want To Write Your Own Programming Language?

2014-01-23 Thread Nick Sabalausky
On 1/23/2014 5:24 AM, Chris wrote: I find it extremely interesting how the human mind (not just language) is reflected in programming languages. They way I usually see it is that the human mind HAS to be reflected in programming languages as that's the whole point. We already knew how to

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread Martin Nowak
On 01/23/2014 06:38 PM, Andrei Alexandrescu wrote: Congratulations to Dmitry! (His github ID is blackwhale.) Andrei This has been overdue.

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread Brad Anderson
On Thursday, 23 January 2014 at 21:13:10 UTC, Martin Nowak wrote: On 01/23/2014 06:38 PM, Andrei Alexandrescu wrote: Congratulations to Dmitry! (His github ID is blackwhale.) Andrei This has been overdue. Yeah, I was surprised he wasn't already a committer. It's pretty easy to overlook

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Brad Anderson
On Wednesday, 22 January 2014 at 03:43:51 UTC, Andrew Edwards wrote: On 1/21/14, 5:29 PM, Brad Anderson wrote: On Tuesday, 21 January 2014 at 22:22:01 UTC, Andrew Edwards wrote: Note: An installer is not yet prepared for Windows. Let me know if you need any guidance on getting the Windows

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Brad Anderson
On Thursday, 23 January 2014 at 13:29:31 UTC, Martin Nowak wrote: On Thursday, 23 January 2014 at 06:50:47 UTC, Brad Anderson wrote: This of course is relying on the zip file getting uploaded to downloads.dlang.org. You could use the digitalmars urls for betas, I suppose, since those don't end

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Jordi Sayol
El 24/01/14 00:24, Brad Anderson ha escrit: On Thursday, 23 January 2014 at 13:29:31 UTC, Martin Nowak wrote: On Thursday, 23 January 2014 at 06:50:47 UTC, Brad Anderson wrote: This of course is relying on the zip file getting uploaded to downloads.dlang.org. You could use the digitalmars

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Martin Nowak
On 01/22/2014 02:37 PM, Sönke Ludwig wrote: I'm getting deprecation warnings inside std.datetime to use any instead of canFind. https://github.com/D-Programming-Language/phobos/pull/1876

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread vitaly_m
On Tuesday, 21 January 2014 at 22:22:01 UTC, Andrew Edwards wrote: For a description of these packages, visit http://dlang.org/downloads.html. The link should be http://dlang.org/download.html (no 's' before .html)

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Andrew Edwards
On 1/23/14, 7:25 PM, vitaly_m wrote: On Tuesday, 21 January 2014 at 22:22:01 UTC, Andrew Edwards wrote: For a description of these packages, visit http://dlang.org/downloads.html. The link should be http://dlang.org/download.html (no 's' before .html) Thanks

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread Walter Bright
On 1/23/2014 3:07 PM, Brad Anderson wrote: (presumably putting it forward to Walter and possibly others for a vote or however the decision is made). Andrei and I sacrifice a small animal and examine its entrails for guidance. It's a system that has worked well for us.

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread David Nadlinger
On Friday, 24 January 2014 at 01:17:28 UTC, Walter Bright wrote: On 1/23/2014 3:07 PM, Brad Anderson wrote: (presumably putting it forward to Walter and possibly others for a vote or however the decision is made). Andrei and I sacrifice a small animal and examine its entrails for guidance.

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Brad Anderson
On Thursday, 23 January 2014 at 23:44:09 UTC, Jordi Sayol wrote: El 24/01/14 00:24, Brad Anderson ha escrit: On Thursday, 23 January 2014 at 13:29:31 UTC, Martin Nowak wrote: On Thursday, 23 January 2014 at 06:50:47 UTC, Brad Anderson wrote: This of course is relying on the zip file getting

Re: dmd 2.065 beta 1 #2

2014-01-23 Thread Sönke Ludwig
Am 23.01.2014 10:38, schrieb Walter Bright: On 1/22/2014 5:37 AM, Sönke Ludwig wrote: (...) There is also a build issue that sometimes occurred at the same place in 2.064 in the form of template instantiation failures and now produces linker errors:

Re: Dmitry Olshansky is now a github committer

2014-01-23 Thread eles
On Thursday, 23 January 2014 at 17:38:04 UTC, Andrei Alexandrescu wrote: Congratulations to Dmitry! (His github ID is blackwhale.) Congrats to Dmitry!