Re: "Programming in D" on Educative.io

2020-05-15 Thread ShadoLight via Digitalmars-d-announce
On Friday, 15 May 2020 at 03:22:43 UTC, dangbinghoo wrote: On Thursday, 14 May 2020 at 08:42:43 UTC, ShadoLight wrote: On Wednesday, 13 May 2020 at 19:25:43 UTC, welkam wrote: [...] This opinion seems quite common in the D community, but I frankly don't see it. If you are referring to the D

Re: "Programming in D" on Educative.io

2020-05-14 Thread ShadoLight via Digitalmars-d-announce
On Wednesday, 13 May 2020 at 19:25:43 UTC, welkam wrote: On Thursday, 7 May 2020 at 09:18:04 UTC, Ali Çehreli wrote: Because D is a re-engineering of C++ I thought it was re-engineering of C This opinion seems quite common in the D community, but I frankly don't see it. If you are referring

Re: Visual D 0.52.0 released

2020-03-24 Thread ShadoLight via Digitalmars-d-announce
On Tuesday, 24 March 2020 at 12:44:38 UTC, Rainer Schuetze wrote: On 24/03/2020 12:01, ShadoLight wrote: On Tuesday, 24 March 2020 at 10:55:28 UTC, ShadoLight wrote: On Monday, 23 March 2020 at 09:54:46 UTC, Rainer Schuetze wrote: Hi, a new version of Visual D, the Visual Studio extension t

Re: Visual D 0.52.0 released

2020-03-24 Thread ShadoLight via Digitalmars-d-announce
On Tuesday, 24 March 2020 at 10:55:28 UTC, ShadoLight wrote: On Monday, 23 March 2020 at 09:54:46 UTC, Rainer Schuetze wrote: Hi, a new version of Visual D, the Visual Studio extension that adds D language support to VS2008-2019, is available at [snip] As always - VisualD is highly appreci

Re: Visual D 0.52.0 released

2020-03-24 Thread ShadoLight via Digitalmars-d-announce
On Monday, 23 March 2020 at 09:54:46 UTC, Rainer Schuetze wrote: Hi, a new version of Visual D, the Visual Studio extension that adds D language support to VS2008-2019, is available at [snip] As always - VisualD is highly appreciated Rainer! A minor issue (typo probably), the installer sho

Re: Wed Oct 17 - Avoiding Code Smells by Walter Bright

2018-11-04 Thread ShadoLight via Digitalmars-d-announce
On Saturday, 3 November 2018 at 03:58:16 UTC, Ali Çehreli wrote: On 11/02/2018 03:18 AM, ShadoLight wrote: > Maybe you are thinking of the "Prefer non-member non-friend functions to > member functions" rule from Herb Sutter's "Effective C++" books? Scott Meyers. Ali Thanks for the correctio

Re: Wed Oct 17 - Avoiding Code Smells by Walter Bright

2018-11-02 Thread ShadoLight via Digitalmars-d-announce
On Friday, 2 November 2018 at 00:53:52 UTC, H. S. Teoh wrote: And along that line, recent wisdom is that it's better to move things *out* of classes (and structs) if they don't need access to private members. (Sorry, I wanted to include a link for this, but I couldn't find the article -- the

Re: 'static foreach' chapter and more

2018-06-26 Thread ShadoLight via Digitalmars-d-announce
On Tuesday, 26 June 2018 at 01:52:42 UTC, Ali Çehreli wrote: I've made some online improvements to "Programming in D" since September 2017. http://ddili.org/ders/d.en/index.html Ali Hi Ali, Thanks for your book - it is the definitive go-to resource for D newcomers as well as "refresh

Re: Article: Why Const Sucks

2018-03-05 Thread ShadoLight via Digitalmars-d-announce
Very interesting and well written! Jonathan, your experiences with const in C++/Java just about matches my experiences with it. I also feel that the situation in D is less than ideal in this regard. First, a small (for sure copy-pasta) typo in your article: const(int[]) arr1 = getArray(); con