Re: Dreams come true: Compiling and running linux apps on windows :)

2016-08-06 Thread Martin Nowak via Digitalmars-d-announce
On Saturday, 6 August 2016 at 17:34:14 UTC, Andre Pany wrote: The build script is working fine: curl -fsS https://dlang.org/install.sh | bash -s dmd Good news, I'm really not that keen to write a powershell script. What OS does it detect and download?

Re: Battle-plan for CTFE

2016-08-06 Thread Stefan Koch via Digitalmars-d-announce
On Saturday, 6 August 2016 at 19:07:10 UTC, Rory McGuire wrote: Hi Stefan, Are you saying we can play around with ascii string slicing/appending already? No, not now, but very soon. I want to have _basic_ utf8 support before I am comfortable with enabling string operations. The gist with

Re: Autotesting dub packages with dmd nightly

2016-08-06 Thread Seb via Digitalmars-d-announce
On Saturday, 6 August 2016 at 19:06:34 UTC, Sebastiaan Koppe wrote: - code.dlang.org has an api but doesn't provide an endpoint to retrieve all packages/version. Now I just scrape the site instead (thanks Adam for your dom implementation). Why don't you make a PR to the dub registry

Re: Autotesting dub packages with dmd nightly

2016-08-06 Thread Seb via Digitalmars-d-announce
On Saturday, 6 August 2016 at 19:06:34 UTC, Sebastiaan Koppe wrote: I have just finished a first iteration of dubster, a test runner that runs `dub test` on each package for each dmd release. see https://github.com/skoppe/dubster Please provide feedback as it will determine the

Re: Battle-plan for CTFE

2016-08-06 Thread Rory McGuire via Digitalmars-d-announce
On 06 Aug 2016 16:30, "Stefan Koch via Digitalmars-d-announce" < digitalmars-d-announce@puremagic.com> wrote: > > Time for an update. > (ASCII)-Strings work reasonably well. > > I am now working on supporting general Sliceing and Appending. > The effort on function calls is also still ongoing. > >

Re: Dreams come true: Compiling and running linux apps on windows :)

2016-08-06 Thread Andre Pany via Digitalmars-d-announce
On Saturday, 6 August 2016 at 17:48:43 UTC, Rattle Weird Hole wrote: what are concret applications ? For me it is the possibility to develop applications for the amazon web services cloud while not leaving my windows system. I am used to windows but now I have the possibility to also develop

Re: Dreams come true: Compiling and running linux apps on windows :)

2016-08-06 Thread Rattle Weird Hole via Digitalmars-d-announce
On Saturday, 6 August 2016 at 17:34:14 UTC, Andre Pany wrote: Hi, there is a new feature with the recent windows 10 update. You now can compile and run your linux apps (console only) on windows. The build script is working fine: curl -fsS https://dlang.org/install.sh | bash -s dmd The only

Dreams come true: Compiling and running linux apps on windows :)

2016-08-06 Thread Andre Pany via Digitalmars-d-announce
Hi, there is a new feature with the recent windows 10 update. You now can compile and run your linux apps (console only) on windows. The build script is working fine: curl -fsS https://dlang.org/install.sh | bash -s dmd The only thing you need is to install the build-essential package sudo

Re: Battle-plan for CTFE

2016-08-06 Thread Stefan Koch via Digitalmars-d-announce
Time for an update. (ASCII)-Strings work reasonably well. I am now working on supporting general Sliceing and Appending. The effort on function calls is also still ongoing. I added a switch to my version of dmd which allows to toggle the ctfe engine. So now I can compare apples to apples when

Re: The Origins of the D Cookbook

2016-08-06 Thread A D dev via Digitalmars-d-announce
On Saturday, 6 August 2016 at 01:01:59 UTC, Mike Parker wrote: There are two goals behind the blog: to market D to the world at large and to let users know what's going on in the ... posts in the coming weeks. So the acceptance rate so far is 100% :) Thanks, H Loom and Mike. Fair enough.

Re: unit-threaded v0.6.26 - advanced unit testing in D with new features

2016-08-06 Thread Nicholas Wilson via Digitalmars-d-announce
On Friday, 5 August 2016 at 15:31:34 UTC, Atila Neves wrote: https://code.dlang.org/packages/unit-threaded What's new: . Mocking support. Classes, interfaces and structs can be mocked (see README.md or examples) . Shrinking support for property-based testing, but only for integrals and arrays

Re: unit-threaded v0.6.26 - advanced unit testing in D with new features

2016-08-06 Thread Sebastiaan Koppe via Digitalmars-d-announce
On Saturday, 6 August 2016 at 01:50:15 UTC, Øivind wrote: I have started using unit_threaded, and love it. Most of my unittests now run in < 100ms; it is great. Keep up the good work.