Re: Nov 16 - Memory Safety and the D Programming Language

2016-11-21 Thread Wyatt via Digitalmars-d-announce
On Monday, 21 November 2016 at 16:01:27 UTC, Antonio Corbi wrote: Maybe some ideas could be taken from here: https://wiki.debconf.org/wiki/Videoteam The only thing they don't seem to do that I'd additionally recommend is take another separate audio recording using a separate voice recorder.

Re: Battle-plan for CTFE

2016-10-25 Thread Wyatt via Digitalmars-d-announce
On Tuesday, 25 October 2016 at 12:36:56 UTC, Stefam Koch wrote: LLVM Backend (-ctfe-bc -version=UseLLVMBackend) : real0m0.039s user0m0.027s sys 0m0.010s I think 20,000% is a pretty good speedup! ;) Great stuff. Now that JIT works, are you returning to focusing on feature

Re: D-Man culture

2016-07-27 Thread Wyatt via Digitalmars-d-announce
On Wednesday, 27 July 2016 at 19:50:13 UTC, Walter Bright wrote: While I appreciate the effort and the offer, it is inappropriate to have a woman with a miniskirt and partially unbuttoned blouse as an official mascot for D. Depressingly enough, it doesn't hold a candle to the Unity mascot

Re: Next London D Meetup: Wednesday 20th January 2016

2016-01-21 Thread Wyatt via Digitalmars-d-announce
On Sunday, 10 January 2016 at 22:01:05 UTC, Kingsley wrote: This time we peek into the mind and code of Ross McKinlay who will give us a tour of some of his D efforts. I'm watching the recording right now. It's pretty exciting to see anything like F# discriminated unions in D. video

Re: Please vote for the DConf logo

2015-11-04 Thread Wyatt via Digitalmars-d-announce
On Wednesday, 4 November 2015 at 09:30:30 UTC, Andrei Alexandrescu wrote: Reply to this with 1.1, 1.2, 2, or 3: At some level, none of them? 3 gives me the best feeling so far, but I think it could be refined. It's neat how the "D" has heavier weight, but then the "Conf" looks like a

Re: Walter and I talk about D in Romania

2015-10-05 Thread Wyatt via Digitalmars-d-announce
On Friday, 2 October 2015 at 13:30:46 UTC, Andrei Alexandrescu wrote: On 10/02/2015 08:01 AM, Per Nordlöw wrote: Will there be video recordings? I don't think so. -- Andrei Can you at least get an audio recording?

Re: clayers - Update 1.1.0

2015-07-07 Thread Wyatt via Digitalmars-d-announce
On Wednesday, 1 July 2015 at 19:16:28 UTC, Vladde Nordholm wrote: So today I released version 1.1.0 of my console rendering library clayers! What this new update offers is support for colors, where you can set the text- and background-color! This is thanks to the library 'colorize'

Re: Scott Meyers' DConf 2014 keynote The Last Thing D Needs

2014-05-29 Thread Wyatt via Digitalmars-d-announce
On Thursday, 29 May 2014 at 10:01:17 UTC, Jonathan M Davis via Digitalmars-d-announce wrote: ??? C, C++, and D all have multi-dimensional arrays. e.g. int a[5][6]; // C/C++ int[6][5] a; // D int** a; // C/C++ int[][] a; // D int* a[5]; // C/C++ int[5][] a; // D