Re: Complexity nomenclature

2015-12-10 Thread Jonny via Digitalmars-d
On Monday, 7 December 2015 at 16:15:46 UTC, Andrei Alexandrescu wrote: On 12/07/2015 09:43 AM, Timon Gehr wrote: 1-2) BigO("1") 3) BigO("count") 4) BigO("distance(first,last)") 5) BigO("ilist.size()") There's also this: On 12/06/2015 12:55 AM, Andrei Alexandrescu wrote: Well you'd need

Re: Microsoft to contribute to Clang and LLVM project

2015-12-09 Thread Jonny via Digitalmars-d
On Thursday, 10 December 2015 at 02:22:34 UTC, Ola Fosheim Grøstad wrote: On Thursday, 10 December 2015 at 01:09:30 UTC, Joakim wrote: Let's see, did I miss a reason? These are all the ones I've read on the forum in the past. But the real question is whether it is a strategic good move? Go

Re: Complexity nomenclature

2015-12-08 Thread Jonny via Digitalmars-d
On Friday, 4 December 2015 at 01:27:42 UTC, Andrei Alexandrescu wrote: Consider the collections universe. So we have an imperative primitive like: c.insertAfter(r, x) where c is a collection, r is a range previously extracted from c, and x is a value convertible to collection's element type.

Re: Is there anyone willing to do the videos 18sex website?

2015-11-30 Thread Jonny via Digitalmars-d-announce
On Sunday, 29 November 2015 at 12:23:16 UTC, tired_eyes wrote: On Sunday, 29 November 2015 at 02:19:30 UTC, mcss wrote: I want to find a partner to do the world's largest 18sex video site. Lol, such an ambitious project! Dlang definetely needs a success story of that kind :) Please keep us

Re: Graillon 1.0, VST effect fully made with D

2015-11-28 Thread Jonny via Digitalmars-d-announce
On Saturday, 28 November 2015 at 01:31:22 UTC, Guillaume Piolat wrote: On Friday, 27 November 2015 at 17:12:05 UTC, Jonny wrote: You have no idea what you are talking about! It is mentalities like yours that cause headaches for musicians and engineers who work with RT audio. Do you realize

Re: Graillon 1.0, VST effect fully made with D

2015-11-28 Thread Jonny via Digitalmars-d-announce
On Saturday, 28 November 2015 at 20:56:28 UTC, deadalnix wrote: On Friday, 27 November 2015 at 18:09:08 UTC, Adam D. Ruppe wrote: On Friday, 27 November 2015 at 17:12:05 UTC, Jonny wrote: On Thursday, 26 November 2015 at 15:48:48 UTC, Guillaume Piolat I don't really have a point to prove, but

Re: Graillon 1.0, VST effect fully made with D

2015-11-27 Thread Jonny via Digitalmars-d-announce
On Thursday, 26 November 2015 at 15:48:48 UTC, Guillaume Piolat wrote: OT: Readers of this NG probably know me under the name "ponce", however over the year I was made aware that it's an english swear word so I'll post under my IRL name from now on. I'm happy to release my first commercial

Re: foreach and element type inference

2015-11-23 Thread Jonny via Digitalmars-d
On Friday, 20 November 2015 at 19:37:09 UTC, Nicolas F. wrote: " Allowing "auto" here, as somebody pointed out, would lead to two styles which may be confusing as one might mistake "foreach (e" to be different from "foreach (auto e", and even worse, might be led to believe that "e" was

Pattern Based Design

2015-11-17 Thread Jonny via Digitalmars-d
Being able to factor a project into well understood patterns that are loosely bound yet cohesive is fundamental for a successful project. Does D have an ability to template patterns(or even better yet, a uml like interface that can emit D code) effectively? i.e., saves much more time than

Re: Pattern Based Design

2015-11-17 Thread Jonny via Digitalmars-d
On Tuesday, 17 November 2015 at 23:41:21 UTC, Idan Arye wrote: On Tuesday, 17 November 2015 at 19:05:30 UTC, Jonny wrote: Being able to factor a project into well understood patterns that are loosely bound yet cohesive is fundamental for a successful project. Does D have an ability to