With the website now released I've gone back to a project that began with my participation in the Learning Jam over at Handmade Network.
I initially chose to learn about BRDFs but quickly found that the Micro Facet Model was the subject I was actually interested in. The micro facet model forms the basis of any physically based rendering ("PBR") scheme, nowadays common in both games and films.
The end showcase of my learnings is a renderer implemented in Shadertoy. I went that route since it's nice to have people be able to easily run the software on their own computer.
For more information, check out the project page.
I was not happy with my current workflow. I would much rather use my text editor of choice (4Coder Fleury) but it's a hassle to manually be copying every change to Shadertoy, as well as not really getting the benefit of recompiling on the go.
So I decided to implement my own program that does the same thing as Shadertoy but now everything is local, which means no more copy-paste. The original source file is used instead.

This setup also provides some additional benefits.
Cons.
I chose to compile and run the shader as a compute shader, mostly because I like compute shaders. The result is then drawn onto screen with the usual screen-quad approach or not drawn at all in the case of batch batch rendering.
Note that batch rendering is currently it's own program.
The demo has come a long way and I hope to be able to finish it soon. Currently diffuse materials are tending to look metallic which I'm currently investigating.
The demo will still be published on Shadertoy and I will need to write an additional parser that converts the code.
Until next time, enjoy a turntable batch render!