Re: Proposal: Database Engine for D

2016-01-04 Thread Zz via Digitalmars-d
What is Boost.Sprint? I haven't heard of it, and can't find it. Thanks! -- Andrei I believe he meant Boost Spirit http://www.boost.org/doc/libs/1_60_0/libs/spirit/doc/html/spirit/introduction.html Zz

Re: Kinds of containers

2015-10-21 Thread Zz via Digitalmars-d
On Wednesday, 21 October 2015 at 22:12:32 UTC, Zz wrote: On Wednesday, 21 October 2015 at 19:17:52 UTC, Andrei Alexandrescu wrote: On 10/21/2015 02:18 PM, Zz wrote: While looking at containers take a look at Jiri Soukup's work some good ideas could come from there. http://www.amaz

Re: Kinds of containers

2015-10-21 Thread Zz via Digitalmars-d
On Wednesday, 21 October 2015 at 19:17:52 UTC, Andrei Alexandrescu wrote: On 10/21/2015 02:18 PM, Zz wrote: While looking at containers take a look at Jiri Soukup's work some good ideas could come from there. http://www.amazon.ca/Serialization-Persistent-Objects-Structures-Efficie

Re: Kinds of containers

2015-10-21 Thread Zz via Digitalmars-d
es-Efficient/dp/3642393225/ref=sr_1_1?ie=UTF8&qid=1386946808&sr=8-1&keywords=SERIALIZATION+AND+PERSISTENT+OBJECTS#productPromotions%22%20target=%22_blank Intrusive Data Structures. http://www.codefarms.com/home http://www.codefarms.com/dol http://www.codefarms.com/ppf http://www.codefarms.com/ptl Zz

Re: Compile failing with D 2.068.2 works with 2.068.1

2015-10-01 Thread Zz via Digitalmars-d
On Thursday, 1 October 2015 at 17:16:47 UTC, Meta wrote: On Thursday, 1 October 2015 at 16:37:25 UTC, Zz wrote: Hi, When using D 2.068.2 I get the following error with some code I have. Assertion failure: 'minst->isRoot() || minst->rootImports()' on line 8013 in file &

Compile failing with D 2.068.2 works with 2.068.1

2015-10-01 Thread Zz via Digitalmars-d
Hi, When using D 2.068.2 I get the following error with some code I have. Assertion failure: 'minst->isRoot() || minst->rootImports()' on line 8013 in file 'template.c' dmd failed with exit code 1. It work with 2.068.1. No idea why it fails, moved back to 2.068.1. Regards, Zz

Problem with paths and dub

2015-09-26 Thread Zz via Digitalmars-d
k with dub? Zz

Re: Graphics Library for D

2014-01-07 Thread Zz
More interesting was the link that Herb Sutter provided. Lightweight Drawing Library http://isocpp.org/files/papers/n3791.html Looks like he nailed the problem very well - it will be interesting to see what they come up with. On Monday, 6 January 2014 at 18:34:53 UTC, Keesjan wrote: Anothe

Re: Graphics Library for D

2014-01-06 Thread Zz
article on how AGG works in Haiku and covers some of the compile time properties of AGG https://www.haiku-os.org/documents/dev/painter_and_how_agg_works There is also a c# port. Zz

Re: Need sounding board for GUI library

2013-12-15 Thread Zz
Hi Boyd, Here something that might be interesting for you the gui is rendered using the C++ version of AntiGrain Geometry (with C# wrappers). http://www.creativedocs.net/devs/gui http://www.creativedocs.net/devs/agg http://www.creativedocs.net/screenshots/ Zz On Sunday, 15 December 2013 at

Re: Building DFL errors.

2013-10-25 Thread Zz
Which version of DMD should I use? I'm currently using 2.063.2. Zz On Friday, 25 October 2013 at 12:53:42 UTC, Jacob Carlborg wrote: On 2013-10-25 14:30, Zz wrote: Hi, Tried building DFL from github.com/Rayerd/dfl and I get the following errors when trying to build. Any ideas on h

Building DFL errors.

2013-10-25 Thread Zz
dfl' in file richtextbox.d conflicts with usage as a module name in file package.d Error: module dfl.picturebox package name 'dfl' in file picturebox.d conflicts with usage as a module name in file package.d Zz

Re: DQuick a GUI Library (prototype)

2013-08-27 Thread Zz
Here is an old IUP wrapper in D. https://code.google.com/p/iupd/ Zz On Friday, 23 August 2013 at 16:26:37 UTC, Michael wrote: On Thursday, 22 August 2013 at 21:44:57 UTC, Andrej Mitrovic wrote: On 8/22/13, Michael wrote: For me it's no problem) How are other people supposed to track

Re: D "Swing"

2012-12-24 Thread Zz
Have a look at Sciter (http://www.terrainformatica.com/sciter), Andrew Fedoniouk of Terra Informatica once did Harmonia for D1, Hope he would do a Sciter version or wrapper for D2. Zz On Monday, 24 December 2012 at 10:57:48 UTC, evilrat wrote: On Monday, 24 December 2012 at 10:34:42 UTC

Ideas for Phobos.

2012-03-16 Thread Zz
Win32 Wrapper http://aswang.sourceforge.net/ Simple and straight forward. Zz

Re: Implementing std.log

2011-04-22 Thread Zz
I currently use the logger written by Masahiro Nakagawa and it has handled what I need. You can get it from: http://www.bitbucket.org/repeatedly/scrap/src/tip/logger.d Zz Robert Clipsham Wrote: > Hey folks, > > I've just finished porting my web framework from D1/Tango to D2/Pho

Re: [GSoC] Container proposals by Ishan and Christian

2011-04-04 Thread Zz
You can look at IUP which is simple written in C and comes with the MIT licence. http://www.tecgraf.puc-rio.br/iup/ Zz Matthias Pleh Wrote: > On 2011-04-03 21:05, Andrei Alexandrescu wrote: > > I think it's not too late to improve our GSoC ideas page > > So here come my id

Proposal to expand existing OO languages (Jiri Soukup)

2010-10-07 Thread Zz
Here is an interesting paper by Jiri Soukup. http://www.codefarms.com/docs/proposal.pdf

Intrusive Data Structures

2010-10-07 Thread Zz
The following libraries by Jiri Soukup are quite interesting and could stir up some ideas for phobos. Data Object Library http://www.codefarms.com/dolclasses Persistent Pointer Factory http://www.codefarms.com/ppf Pattern Template Library http://www.codefarms.com/ptl Tutorial for the C++ versi

Re: Using glog's design for Phobos?

2010-08-27 Thread Zz
looks interesting. Other interesting libs to look at are: Simple Log - Just plain straight forward https://simple-log.dev.java.net/ Some of you might remember Matthew Wilson and he has Pantheios which looks interesting, http://www.pantheios.org/ Zz

Re: lexertl

2009-11-17 Thread Zz
know if anyone is interested in this. > > Thanks, > > Ben Looks very interesting. Zz

Re: Std Phobos 2 and logging library?

2009-04-11 Thread Zz
Andrei Alexandrescu Wrote: > Frank Benoit wrote: > > Andrei Alexandrescu schrieb: > >> Zz wrote: > >>> Hi, > >>> > >>> Are there any plans for a logging library in Std Phobos 2.0? > >>> > >>> Zz > >> I wanted t

Std Phobos 2 and logging library?

2009-04-10 Thread Zz
Hi, Are there any plans for a logging library in Std Phobos 2.0? Zz