I'll be presenting at NWCPP on Jan 21 at Microsoft

2015-01-04 Thread Walter Bright via Digitalmars-d-announce
http://nwcpp.org/ All are invited. Now I just have to write the presentation :-(

DMD's lexer available on code.dlang.org

2015-01-04 Thread Daniel Murphy via Digitalmars-d-announce
I've created a dub package for the D version of DMD's lexer, generated automatically from the C++ source. github: https://github.com/yebblies/ddmd dub: http://code.dlang.org/packages/ddmd There are a few annoying limitations, such that it uses dmd's error printing and allocation functions,

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Rikki Cattermole via Digitalmars-d-announce
On 5/01/2015 2:07 a.m., Daniel Murphy wrote: I've created a dub package for the D version of DMD's lexer, generated automatically from the C++ source. github: https://github.com/yebblies/ddmd dub: http://code.dlang.org/packages/ddmd There are a few annoying limitations, such that it uses dmd's

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Daniel Murphy via Digitalmars-d-announce
Rikki Cattermole wrote in message news:m8be2m$1dlp$1...@digitalmars.com... I saw that. I'm really looking forward to getting my teeth into it and doing some good old refactoring. Although that will be a while because of the auto generated thing. There's plenty of refactoring to be done on

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Daniel Murphy via Digitalmars-d-announce
Kiith-Sa wrote in message news:nffxogzwpmayydyom...@forum.dlang.org... (sorry if you get this question too often) How is DDMD as a whole going? Is it getting closer or are ongoing DMD changes slowing it down too much? It's been sitting still for 8 nearly months because of

Re: GCCJIT Bindings for D

2015-01-04 Thread Iain Buclaw via Digitalmars-d-announce
On Saturday, 27 December 2014 at 09:53:42 UTC, Iain Buclaw wrote: For a more practical example, I've added an example jit compiled brainf*** interpreter. https://github.com/ibuclaw/gccjitd/blob/master/tests/brainf.d Another practical example has been published which implements a made up

Bindings for libmRSS: for parsing, writing and creating RSS/ATOM files or streams.

2015-01-04 Thread Laeeth Isharc via Digitalmars-d-announce
https://github.com/Laeeth/d_rss/ d_rss: D Programming Language bindings for libmRSS. http://www.autistici.org/bakunin/libmrss/doc/ mRss is a C library written by Andrea Marchesini for parsing, writing and creating RSS/ATOM files or streams. This library supports: RSS 0.91 -

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Jacob Carlborg via Digitalmars-d-announce
On 2015-01-04 14:07, Daniel Murphy wrote: I've created a dub package for the D version of DMD's lexer, generated automatically from the C++ source. This is very cool :), keep up to good work. -- /Jacob Carlborg

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Laeeth Isharc via Digitalmars-d-announce
I've created a dub package for the D version of DMD's lexer, generated automatically from the C++ source. very cool. on a related note, have you considered sharing your translation tool (c++ - D)? I completely understand if you would rather not of course. Laeeth.

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Kiith-Sa via Digitalmars-d-announce
On Sunday, 4 January 2015 at 17:27:57 UTC, Daniel Murphy wrote: Kiith-Sa wrote in message news:nffxogzwpmayydyom...@forum.dlang.org... (sorry if you get this question too often) How is DDMD as a whole going? Is it getting closer or are ongoing DMD changes slowing it down too much? It's

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Walter Bright via Digitalmars-d-announce
On 1/4/2015 5:07 AM, Daniel Murphy wrote: I've created a dub package for the D version of DMD's lexer, generated automatically from the C++ source. github: https://github.com/yebblies/ddmd dub: http://code.dlang.org/packages/ddmd Great! Thank you!

Re: DOtherSide: QML bindings for both D and Nim

2015-01-04 Thread michaelc37 via Digitalmars-d-announce
On Wednesday, 31 December 2014 at 13:11:39 UTC, filcuc wrote: Hi all, i'll like to share my project for building the bindings for QML in both D and Nim programming languages. The project is young and it's not complete, however at the current state slots, signals and properties can be exposed

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Rikki Cattermole via Digitalmars-d-announce
On 5/01/2015 2:39 a.m., Daniel Murphy wrote: Rikki Cattermole wrote in message news:m8be2m$1dlp$1...@digitalmars.com... I saw that. I'm really looking forward to getting my teeth into it and doing some good old refactoring. Although that will be a while because of the auto generated thing.

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Daniel Murphy via Digitalmars-d-announce
Daniel Murphy wrote in message news:m8bdul$1dke$1...@digitalmars.com... I've created a dub package for the D version of DMD's lexer, generated automatically from the C++ source. github: https://github.com/yebblies/ddmd dub: http://code.dlang.org/packages/ddmd I've pushed a new version

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Daniel Murphy via Digitalmars-d-announce
Laeeth Isharc wrote in message news:vtgirvyjsalkzjvlz...@forum.dlang.org... Thanks v much - this will be very helpful indeed. Let me know if you have any questions about it.

D port of the Dynamic Window Manager (DWM)

2015-01-04 Thread stewart h via Digitalmars-d-announce
Hi, I've ported DWM to D as a learning exercise and thought I'd share it. The repository can be found here: https://bitbucket.org/growlercab/ddwm (Beware, I've only tested it on Arch-Linux 64 bit for about 1 day!) DWM is a minimalist dynamic window manager from suckless. More details on

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Laeeth Isharc via Digitalmars-d-announce
On Monday, 5 January 2015 at 02:51:17 UTC, Daniel Murphy wrote: Laeeth Isharc wrote in message news:yzmwemaevaltcmkyw...@forum.dlang.org... on a related note, have you considered sharing your translation tool (c++ - D)? I completely understand if you would rather not of course. The

Re: DMD's lexer available on code.dlang.org

2015-01-04 Thread Daniel Murphy via Digitalmars-d-announce
Laeeth Isharc wrote in message news:yzmwemaevaltcmkyw...@forum.dlang.org... on a related note, have you considered sharing your translation tool (c++ - D)? I completely understand if you would rather not of course. The translation tool is available on github and is boost licensed. This