extrawurst's blog

Worth Reading (Februar 2016)

• reading, unity, and dlang

The following stuff is what caught my eye in the last couple of weeks. Consider these kind of posts as an entry in my personal knowledge base ;)

Unity

Article: “Compile-time Argument Lists” on dlang.org

This is an awesome article differntiating compiletime tuples from generic compile time argument lists that allow for crazy stuff like this in D:

import std.meta;
alias Params = AliasSeq!(int, double, string);
void foo(Params); // void foo(int, double, string);

Book: “D Web Development”

As I already twittered I finally received a copy of the book about D web development by Kai Nacke that I reviewed:

Post: “Declarative OpenGL (sort of) in D” by profan

Great article about automatic wrapping of C based APIs using D’s strong meta programming features:

blog post

###Post: “Practical tips to make the most out of your first GDC” by Eline Muijres

Last but not least, a guide how to survive GDC San Francisco on Gamasutra:

link to post

Hope to see you there!

comments powered by Disqus