D Programmers in Colombia

2016-06-14 Thread Felipe via Digitalmars-d-announce
Anybody from Colombia here? Looking to find Programmers who enjoy D and live in Bogota. anybody?

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2016-06-13 22:12, Walter Bright wrote: It's the "first 5 minutes" thing. Every hiccup there costs us maybe half the people who just want to try it out. Even the makefiles have hiccups. I've had builds fail with the dmd system because I had the wrong version of make installed. And it doesn't

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread ketmar via Digitalmars-d-announce
On Tuesday, 14 June 2016 at 07:45:10 UTC, Jacob Carlborg wrote: I couldn't agree more. With the D compiler being so fast it's reasonable to just recompile everything at once instead of trying to track what's changed. i'm agree with that. i'm so used to do just "rdmd main.d" in my projects (ra

std.experimental.checkedint is ready for comments!

2016-06-14 Thread Robert burner Schadek via Digitalmars-d-announce
http://forum.dlang.org/post/jxaisipbdqfifpncn...@forum.dlang.org

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Fool via Digitalmars-d-announce
On Sunday, 12 June 2016 at 22:59:15 UTC, Jason White wrote: - "system1: Dependency on system information" (Because tasks with no dependencies are only run once. This could be changed easily enough, but I don't see the point.) Switching the compiler version seems to be a valid use case. You mi

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread drug via Digitalmars-d-announce
14.06.2016 13:04, ketmar пишет: On Tuesday, 14 June 2016 at 07:45:10 UTC, Jacob Carlborg wrote: I couldn't agree more. With the D compiler being so fast it's reasonable to just recompile everything at once instead of trying to track what's changed. i'm agree with that. i'm so used to do just "

Re: LDC+Dub+Vibe.d work on SmartOS 64bit now

2016-06-14 Thread flamencofantasy via Digitalmars-d-announce
On Monday, 13 June 2016 at 06:10:22 UTC, Alexandr Basko wrote: On Friday, 10 June 2016 at 21:40:22 UTC, flamencofantasy wrote: On Thursday, 9 June 2016 at 12:30:30 UTC, Alexandr Basko wrote: [...] Thank you very much! I followed the instructions and I was able to build ldc, dub but not vibe

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Jacob Carlborg via Digitalmars-d-announce
On 2016-06-14 14:04, drug wrote: I don't agree if you don't mind. I have two almost identical implementation of the same thing in D and C++. And if I rebuild them totally - yes, dmd is faster than gcc: dmd5 secs ldmd2 6 secs make 40 secs make -j10 11 secs But i

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Andrei Alexandrescu via Digitalmars-d-announce
On 6/12/16 8:27 PM, Walter Bright wrote: On 5/30/2016 12:16 PM, Jason White wrote: Here is an example build description for DMD: https://github.com/jasonwhite/dmd/blob/button/src/BUILD.lua I'd say that's a lot easier to read than this crusty thing: https://github.com/dlang/dmd/blob/ma

Re: dlang-requests 0.1.7 released

2016-06-14 Thread Andrei Alexandrescu via Digitalmars-d-announce
On 6/11/16 7:03 PM, ikod wrote: Hello, Dlang-requests is library created under influence of Python-requests, with primary goal of easy to use and performance. It provide interfaces for HTTP(S) and FTP requests. You can tune request details, but for most cases you will need single and simple API

July D Boston Meetup gathering

2016-06-14 Thread Steven Schveighoffer via Digitalmars-d-announce
Just announced. If you are in the area, come join us! http://www.meetup.com/Boston-area-D-Programming-Language-Meetup/events/231887464/ -Steve

Re: July D Boston Meetup gathering

2016-06-14 Thread Andrei Alexandrescu via Digitalmars-d-announce
On 06/14/2016 12:00 PM, Steven Schveighoffer wrote: Just announced. If you are in the area, come join us! http://www.meetup.com/Boston-area-D-Programming-Language-Meetup/events/231887464/ -Steve Can't wait! -- Andrei

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread sarn via Digitalmars-d-announce
On Monday, 13 June 2016 at 20:12:27 UTC, Walter Bright wrote: On 6/12/2016 4:27 PM, Jason White wrote: I don't understand this dependency-phobia. It's the "first 5 minutes" thing. Every hiccup there costs us maybe half the people who just want to try it out. ... The makefiles, especially p

Re: dlang-requests 0.1.7 released

2016-06-14 Thread ikod via Digitalmars-d-announce
On Tuesday, 14 June 2016 at 14:59:37 UTC, Andrei Alexandrescu wrote: On 6/11/16 7:03 PM, ikod wrote: Hello, Dlang-requests is library created under influence of ... Code and docs available at https://github.com/ikod/dlang-requests or as dub package. Thanks Dlang authors and community for ex

Re: dlang-requests 0.1.7 released

2016-06-14 Thread Seb via Digitalmars-d-announce
On Tuesday, 14 June 2016 at 22:46:00 UTC, ikod wrote: On Tuesday, 14 June 2016 at 14:59:37 UTC, Andrei Alexandrescu wrote: On 6/11/16 7:03 PM, ikod wrote: Hello, Dlang-requests is library created under influence of ... Code and docs available at https://github.com/ikod/dlang-requests or as

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Jason White via Digitalmars-d-announce
On Tuesday, 14 June 2016 at 10:47:58 UTC, Fool wrote: Switching the compiler version seems to be a valid use case. You might have other means to detect this, though. If you want to depend on the compiler version, then you can add a dependency on the compiler executable. It might be a good idea

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread H. S. Teoh via Digitalmars-d-announce
On Wed, Jun 15, 2016 at 05:04:28AM +, Jason White via Digitalmars-d-announce wrote: > On Tuesday, 14 June 2016 at 10:47:58 UTC, Fool wrote: [...] > > A possible use case is creating object files first and packing them > > into a library as a second step. Then single object files are of not > >

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Jason White via Digitalmars-d-announce
On Tuesday, 14 June 2016 at 14:57:52 UTC, Andrei Alexandrescu wrote: On 6/12/16 8:27 PM, Walter Bright wrote: On 5/30/2016 12:16 PM, Jason White wrote: Here is an example build description for DMD: https://github.com/jasonwhite/dmd/blob/button/src/BUILD.lua I'd say that's a lot easier t

Re: Button: A fast, correct, and elegantly simple build system.

2016-06-14 Thread Jason White via Digitalmars-d-announce
On Monday, 13 June 2016 at 20:12:27 UTC, Walter Bright wrote: On 6/12/2016 4:27 PM, Jason White wrote: I don't understand this dependency-phobia. It's the "first 5 minutes" thing. Every hiccup there costs us maybe half the people who just want to try it out. I suppose you're right. It is ju