Skip to content

Commit

Permalink
story of my broken bootloader and my hunt to fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
JeuJeus committed Mar 16, 2024
1 parent b64a05d commit 1cb9e8a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
14 changes: 14 additions & 0 deletions _includes/series.njk
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
<h1>Series<h1>

<h2>Bug Hunting</h2>

{% set bugHuntingPosts = collections.posts | bugHuntingSeriesPosts %}
{%- css %}.postlist-series-bug-hunting { counter-reset: start-from {{ (bugHuntingPosts.length) + 1 }} }{% endcss %}

<ol reversed class="postlist postlist-series-bug-hunting">
{% for post in bugHuntingPosts | reverse %}
<li class="postlist-item">
<a href="{{ post.url }}" class="postlist-link">{% if post.data.title %}{{ post.data.title }}{% else %}<code>{{ post.url }}</code>{% endif %}</a>
<time class="postlist-date" datetime="{{ post.date | htmlDateString }}">{{ post.date | readableDate("dd.MM.yyyy") }}</time>
</li>
{% endfor %}
</ol>

<h2>Trust Problems</h2>

{% set trustProblemPosts = collections.posts | trustProblemsSeriesPosts %}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: When a Kernel Bug bricks your Production Servers
title: Bug Hunting - E01 - When a Kernel Bug bricks your Production Servers
description: This article explores how one missing instruction set flag can bring a whole production server to a grinding halt.
date: 2023-09-21
tags:
Expand All @@ -12,6 +12,7 @@ tags:
- bug
- aes
- avx
- 'bug hunting'
---

## When all the Alarms went of
Expand Down
1 change: 1 addition & 0 deletions eleventy.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ module.exports = eleventyConfig => {
eleventyConfig.addFilter("learningSeriesPosts", filterPosts("learning"));
eleventyConfig.addFilter("homeserverSeriesPosts", filterPosts("selfhosting and your homeserver"));
eleventyConfig.addFilter("trustProblemsSeriesPosts", filterPosts("trust problems"));
eleventyConfig.addFilter("bugHuntingSeriesPosts", filterPosts("bug hunting"));

// Customize Markdown library settings:
eleventyConfig.amendLibrary("md", mdLib => {
Expand Down

0 comments on commit 1cb9e8a

Please sign in to comment.