Re: This Week in D #23 - Interview with Dmitry Olshansky, dmd beta, std.experimental.color

2015-07-02 Thread Dmitry Olshansky via Digitalmars-d-announce
On 29-Jun-2015 06:46, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/jun-28.html I should have probably said on the day one - AMA. P.S. Thanks to Joakim for editing my stream of consciousness into this tidy text ;) -- Dmitry Olshansky

D goes business! Bindings for SAP NetWeaver RFC SDK

2015-07-02 Thread Kai Nacke via Digitalmars-d-announce
Hi all! My latest project is D bindings for the SAP NetWeaver RFC SDK. The first code is available at https://github.com/redstar/sapnwrfc-d. It is currently only a port of the main header file but I plan to add a high-level API, too. See the README for current limitations and ideas. I

Re: This Week in D #23 - Interview with Dmitry Olshansky, dmd beta, std.experimental.color

2015-07-02 Thread Joakim via Digitalmars-d-announce
On Thursday, 2 July 2015 at 10:26:36 UTC, Dmitry Olshansky wrote: On 29-Jun-2015 06:46, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/jun-28.html I should have probably said on the day one - AMA. P.S. Thanks to Joakim for editing my stream of consciousness into this tidy text ;)

FancyPars

2015-07-02 Thread Stefan Koch via Digitalmars-d-announce
Small announcement. I uploaded my parser-generator onto github. It is work in progress and unfinished! I cannot continue working on it anymore. Because it is quite idiomatic D-code. I hope that it will be suitable to beginners. Unfortunately I will not be available to take any questions.

Re: D extensions to python, inline in an ipython/jupyter notebook

2015-07-02 Thread John Colvin via Digitalmars-d-announce
On Thursday, 2 July 2015 at 19:51:19 UTC, Laeeth Isharc wrote: What is the benefit from using distutils for working with D in a notebook? There are two standards - the Python one, and the D one. The advantage of using dub is that it becomes wonderfully easy to pull in D projects from

Re: This Week in D #23 - Interview with Dmitry Olshansky, dmd beta, std.experimental.color

2015-07-02 Thread Mathias Lang via Digitalmars-d-announce
Very interesting interview ! On the question about love/hate of D, there's this sentence: ' for, works with any range or something that can be sliced to get a range.'. Didn't you mean foreach ? 2015-06-29 5:46 GMT+02:00 Adam D. Ruppe via Digitalmars-d-announce

Re: This Week in D #23 - Interview with Dmitry Olshansky, dmd beta, std.experimental.color

2015-07-02 Thread Nicholas Wilson via Digitalmars-d-announce
On Monday, 29 June 2015 at 03:46:55 UTC, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/jun-28.html Adam. At least on safari you can't scroll down the archive panel. The first 20 editions are visible, but not the rest.

Repost of Chuck Allison's dconf 2015 talk

2015-07-02 Thread Jonathan M Davis via Digitalmars-d-announce
It looks like they re-edited Chuck's talk and reposted it (so the old link is invalid): https://www.youtube.com/watch?v=iTJnkF0H6S8 - Jonathan M Davis

3 more dconf 2015 talks (Andy, Jonathan, and Mark)

2015-07-02 Thread Jonathan M Davis via Digitalmars-d-announce
It looks like the UVU folks posted some more. Andy Smith -- Title: Hedge Fund Development Case Study dconf link: http://dconf.org/2015/talks/smith.html video link: https://www.youtube.com/watch?v=0KBhb0iWsWQ Jonathan M Davis Title: Introduction to Ranges dconf link:

Re: D extensions to python, inline in an ipython/jupyter notebook

2015-07-02 Thread Laeeth Isharc via Digitalmars-d-announce
It would be v helpful to have a Datetime conversion from D. Looks like there is a macro for converting from ymd in datetime.h, so I guess one could just write some code against this API in C, D, or Cython and link it in with D so one can transfer data structures over more easily. I know

Re: Looking for part-time developer for app back-end and webviews in D

2015-07-02 Thread bachmeier via Digitalmars-d-announce
On Thursday, 2 July 2015 at 16:14:55 UTC, David Gill wrote: I'd be looking for an experienced D developer to take over the project and give it its final touches. I've added this to the wiki http://wiki.dlang.org/Jobs If you provide more complete information, I can add it there, or you can

Looking for part-time developer for app back-end and webviews in D

2015-07-02 Thread David Gill via Digitalmars-d-announce
Hello D Programming community. How I'm glad I found you :). We've developed a super simple iOS and Android app, which was originally built with Cake PHP and some other frameworks. In order to increase stability, we completely rebuilt everything from scratch and chose to go with vide.d for our

Re: This Week in D #23 - Interview with Dmitry Olshansky, dmd beta, std.experimental.color

2015-07-02 Thread Meta via Digitalmars-d-announce
On Thursday, 2 July 2015 at 14:16:41 UTC, Joakim wrote: On Thursday, 2 July 2015 at 10:26:36 UTC, Dmitry Olshansky wrote: On 29-Jun-2015 06:46, Adam D. Ruppe wrote: http://arsdnet.net/this-week-in-d/jun-28.html I should have probably said on the day one - AMA. P.S. Thanks to Joakim for

Re: D extensions to python, inline in an ipython/jupyter notebook

2015-07-02 Thread Russel Winder via Digitalmars-d-announce
On Tue, 2015-06-30 at 18:20 +, John Colvin via Digitalmars-d -announce […] Ditched distutils in favour of dub. This is easier for me to maintain and fits much better with the rest of the D ecosystem I am not convinced by this, though cleary my feeling carry no weight in decision making

Re: initial port of excel sdk headers to D

2015-07-02 Thread Laeeth Isharc via Digitalmars-d-announce
On Wednesday, 1 July 2015 at 23:56:51 UTC, Øivind wrote: On Sunday, 28 June 2015 at 23:23:07 UTC, Laeeth Isharc wrote: https://github.com/Laeeth/d_excelsdk probably many rough edges - a couple of functions still to fix Can you provide an example of how to use it? I am interested in this

Re: D extensions to python, inline in an ipython/jupyter notebook

2015-07-02 Thread John Colvin via Digitalmars-d-announce
On Thursday, 2 July 2015 at 18:28:50 UTC, Russel Winder wrote: On Tue, 2015-06-30 at 18:20 +, John Colvin via Digitalmars-d -announce […] Ditched distutils in favour of dub. This is easier for me to maintain and fits much better with the rest of the D ecosystem I am not convinced by

Re: D extensions to python, inline in an ipython/jupyter notebook

2015-07-02 Thread Laeeth Isharc via Digitalmars-d-announce
On Thursday, 2 July 2015 at 18:28:50 UTC, Russel Winder wrote: On Tue, 2015-06-30 at 18:20 +, John Colvin via Digitalmars-d -announce […] Ditched distutils in favour of dub. This is easier for me to maintain and fits much better with the rest of the D ecosystem I am not convinced by

Re: D extensions to python, inline in an ipython/jupyter notebook

2015-07-02 Thread Laeeth Isharc via Digitalmars-d-announce
On Thursday, 2 July 2015 at 18:28:50 UTC, Russel Winder wrote: On Tue, 2015-06-30 at 18:20 +, John Colvin via Digitalmars-d -announce […] Ditched distutils in favour of dub. This is easier for me to maintain and fits much better with the rest of the D ecosystem I am not convinced by