brain baking works - fooled around a bit more

This commit is contained in:
Wouter Groeneveld 2022-10-11 20:23:47 +02:00
parent e113b55eae
commit 79233c9808
18 changed files with 59 additions and 7 deletions

View File

@ -6,7 +6,7 @@ aliases:
icontag: tag
---
An archive of neatly preserved and once freshly baked thoughts.<br/> Not finding what you're looking for? Try browsing the archives:
The preservation of once freshly baked but now perhaps stale thoughts.<br/> Not finding what you're looking for? Try browsing the archives:
### By search

View File

@ -4,4 +4,4 @@ type: archive
icontag: bulb
---
A featured collection of crispy Brain Baked works that left the counter and was served to the world---napkin not included. Stick around to enjoy the aroma or take a bite by exploring the crust and crumb of these treats. <br/>For those interested in smaller but technical buns of baked goodness, have fun exploring my open source projects at [https://git.brainbaking.com/](https://git.brainbaking.com/).
A featured collection of crispy Brain Baked works that left the counter and was served to the world---napkin not included. Take a bite to explore the crust and crumb of these treats.

View File

@ -0,0 +1,8 @@
---
title: "Brain Baking"
image: "/img/works/brainbaking.jpg"
description: "You're looking at it!"
link: "/"
type: "writing"
date: 2013-08-01
---

View File

@ -0,0 +1,8 @@
---
title: "The Stone Dragon"
image: "/img/works/destenendraak.jpg"
description: "A NaNoWriMo novel inspired by popular fantasy in Dutch."
link: "https://www.lulu.com/shop/wouter-groeneveld/de-stenen-draak/hardcover/product-1epmvz6d.html?q=wouter+groeneveld&page=1&pageSize=4"
type: "writing"
date: 2011-12-01
---

View File

@ -4,4 +4,5 @@ image: "/img/works/gbaspriteengine.jpg"
link: "https://git.brainbaking.com/wgroeneveld/gba-sprite-engine"
description: "An object-oriented Game Boy Advance sprite engine for students to learn C++."
date: 2018-12-01
type: "code"
---

View File

@ -2,7 +2,9 @@
title: Go-jamming
image: "/img/works/gojamming.jpg"
description: "A minimalistic Go-powered JAMStack-augmented microservice for the IndieWeb."
date: 2022-03-01
date: 2021-05-01
type: "code"
link: "/post/2021/05/beyond-webmention-io/"
aliases:
- "/projects/go-jamming/"
---

View File

@ -0,0 +1,8 @@
---
title: "JavaScript JUnit Runner"
image: "/img/works/jasmine-junit.png"
description: "A custom JUnit runner that runs JS tests headlessly in your IDE."
link: "https://git.brainbaking.com/wgroeneveld/jasmine-junit-runner"
type: "code"
date: 2012-10-01
---

View File

@ -3,4 +3,6 @@ title: "Jefklak's Retro Game Codex"
image: "/img/works/jefklakscodex.jpg"
description: "A dedicated and highly opinionated website about nostalgic games."
link: "https://jefklakscodex.com/"
type: "writing"
date: 2007-10-01
---

View File

@ -3,5 +3,6 @@ title: "Save Sourdough: The Book"
image: "/img/works/redzuurdesem-boek.jpg"
link: "https://redzuurdesem.be/het-boek/"
description: "My personal quest for the taste and science of bread, written in Dutch."
type: "writing"
date: 2020-06-01
---

View File

@ -3,5 +3,6 @@ title: "Save Sourdough: The Website"
image: "/img/works/redzuurdesem-site.jpg"
link: "https://redzuurdesem.be/"
description: "My Dutch bread baking blog."
date: 2016-01-11
type: "writing"
date: 2012-06-01
---

View File

@ -2,6 +2,7 @@
title: The Creative Programmer
image: "/img/works/thecreativeprogrammer.jpg"
description: "A practical book to help programmers unleash their creative potential."
link: "/post/2022/09/the-creative-programmer-early-access-release/"
link: "https://www.manning.com/books/the-creative-programmer"
type: "writing"
date: 2022-09-30
---

View File

@ -0,0 +1,8 @@
---
title: The Webdesign Museum
image: "/img/works/museum.jpg"
link: "/post/2020/10/a-personal-journey-through-the-history-of-webdesign/"
description: "Musings of personal nineties and noughties websites."
date: 1998-01-01
type: "code"
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
static/img/works/museum.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -18,7 +18,7 @@
{{ if isset .Params "date" }}
{{ $date = .Params.Date }}
{{ end }}
<time datetime='{{ $date.Format "2006-01-02" }}' class="date" title="Created Date">{{ $date.Format "January 2006" }}</time>
<time datetime='{{ $date.Format "2006-01-02" }}' class="date" title="Created Date">~ {{ $date.Format "January 2006" }}</time>
</span>
<p>
{{ .Params.description }}<br/>

View File

@ -17,8 +17,20 @@
</article>
{{ end }}
<article>
<h2>Writing (Viennoiserie)</h2>
</article>
<div class="worksgrid">
{{ range .Pages }}
{{ range (where .Pages "Params.type" "writing") }}
{{ partial "works-block.html" . }}
{{ end }}
</div>
<article>
<h2>Software (Tartlets)</h2>
For those interested in smaller but technical buns of baked goodness, have fun exploring my open source projects at <a href="https://git.brainbaking.com/">https://git.brainbaking.com/</a>.
</article>
<div class="worksgrid">
{{ range (where .Pages "Params.type" "code") }}
{{ partial "works-block.html" . }}
{{ end }}
</div>