Difference between revisions of "Articles"
(introduction to d templates instead of 'short intro') |
(author annotation) |
||
Line 1: | Line 1: | ||
== Beginning == | == Beginning == | ||
− | * [http://semitwist.com/articles/article/view/dispelling-common-d-myths Dispelling Common D Myths] - Nicholas Sabalausky | + | * [http://semitwist.com/articles/article/view/dispelling-common-d-myths Dispelling Common D Myths] - [[Author::Nicholas Sabalausky]] |
− | * [http://www.informit.com/articles/article.aspx?p=1381876 "D"iving Into the D Programming Language] - Andrei Alexandrescu | + | * [http://www.informit.com/articles/article.aspx?p=1381876 "D"iving Into the D Programming Language] - [[Author::Andrei Alexandrescu]] |
* [http://compsci.ca/v3/viewtopic.php?t=9518 D: A Newbie-Oriented Tutorial] | * [http://compsci.ca/v3/viewtopic.php?t=9518 D: A Newbie-Oriented Tutorial] | ||
== General == | == General == | ||
− | * [http://www.drdobbs.com/cpp/nans-just-dont-get-no-respect/240005723 NaNs Just Don't Get No Respect] -- Walter Bright, 16-Aug-2012 | + | * [http://www.drdobbs.com/cpp/nans-just-dont-get-no-respect/240005723 NaNs Just Don't Get No Respect] -- [[Author::Walter Bright]], 16-Aug-2012 |
− | * [http://www.drdobbs.com/cpp/voldemort-types-in-d/232901591 Voldemort Types In D] -- Walter Bright, 07-May-2012 | + | * [http://www.drdobbs.com/cpp/voldemort-types-in-d/232901591 Voldemort Types In D] -- [[Author::Walter Bright]], 07-May-2012 |
− | * [http://www.drdobbs.com/cpp/uniform-function-call-syntax/232700394 Uniform Function Call Syntax] (UFCS) -- Walter Bright, 28-Mar-2012 | + | * [http://www.drdobbs.com/cpp/uniform-function-call-syntax/232700394 Uniform Function Call Syntax] (UFCS) -- [[Author::Walter Bright]], 28-Mar-2012 |
* [http://3d.benjamin-thaut.de/?p=20 Real World Comparison, GC vs. Manual Memory Management] | * [http://3d.benjamin-thaut.de/?p=20 Real World Comparison, GC vs. Manual Memory Management] | ||
== Features == | == Features == | ||
* [[Introduction to D templates]] | * [[Introduction to D templates]] | ||
− | * [https://semitwist.com/articles/article/view/template-primer-in-d Templates Primer, In D] - Nicholas Sabalausky | + | * [https://semitwist.com/articles/article/view/template-primer-in-d Templates Primer, In D] - [[Author::Nicholas Sabalausky]] |
− | * [https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/dtemplates.pdf?raw=true Understanding Templates in D2] ([https://docs.google.com/viewer?url=https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/dtemplates.pdf?raw%3Dtrue&pli=1 Google Viewer]) - Philippe Sigaud | + | * [https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/dtemplates.pdf?raw=true Understanding Templates in D2] ([https://docs.google.com/viewer?url=https://github.com/PhilippeSigaud/D-templates-tutorial/blob/master/dtemplates.pdf?raw%3Dtrue&pli=1 Google Viewer]) - [[Author::Philippe Sigaud]] |
− | * [http://klickverbot.at/blog/2012/05/purity-in-d/ Purity in D] – David Nadlinger | + | * [http://klickverbot.at/blog/2012/05/purity-in-d/ Purity in D] – [[Author::David Nadlinger]] |
− | * [http://www.drdobbs.com/cpp/inheriting-purity/232601305 Inheriting Purity] -- Walter Bright, 22-Feb-2012 | + | * [http://www.drdobbs.com/cpp/inheriting-purity/232601305 Inheriting Purity] -- [[Author::Walter Bright]], 22-Feb-2012 |
== Architecture and Design == | == Architecture and Design == | ||
− | * [http://www.drdobbs.com/architecture-and-design/component-programming-in-d/240008321 Component Programming in D] - Walter Bright, 02-Oct-2012 | + | * [http://www.drdobbs.com/architecture-and-design/component-programming-in-d/240008321 Component Programming in D] - [[Author::Walter Bright]], 02-Oct-2012 |
== Concurrency == | == Concurrency == | ||
Line 26: | Line 26: | ||
* [[Compiling and linking with DMD on Windows]] | * [[Compiling and linking with DMD on Windows]] | ||
* [[Using Windows Resource Files with D2]] | * [[Using Windows Resource Files with D2]] | ||
− | * [https://github.com/AndrejMitrovic/DWinProgramming Programming Windows code samples translated to D2] - Andrej Mitrovic | + | * [https://github.com/AndrejMitrovic/DWinProgramming Programming Windows code samples translated to D2] - [[Author::Andrej Mitrovic]] |
Revision as of 23:44, 17 December 2012
Contents
Beginning
- Dispelling Common D Myths - Nicholas Sabalausky
- "D"iving Into the D Programming Language - Andrei Alexandrescu
- D: A Newbie-Oriented Tutorial
General
- NaNs Just Don't Get No Respect -- Walter Bright, 16-Aug-2012
- Voldemort Types In D -- Walter Bright, 07-May-2012
- Uniform Function Call Syntax (UFCS) -- Walter Bright, 28-Mar-2012
- Real World Comparison, GC vs. Manual Memory Management
Features
- Introduction to D templates
- Templates Primer, In D - Nicholas Sabalausky
- Understanding Templates in D2 (Google Viewer) - Philippe Sigaud
- Purity in D – David Nadlinger
- Inheriting Purity -- Walter Bright, 22-Feb-2012
Architecture and Design
- Component Programming in D - Walter Bright, 02-Oct-2012
Concurrency
- Getting more fiber in your diet - OctarineParrot DevLog