aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2015-07-03-std-call-once-bug.md3
-rw-r--r--_posts/2017-01-07-building-boost.md2
-rw-r--r--_posts/2017-06-24-static-vs-inline-vs-unnamed-namespaces.md3
-rw-r--r--_posts/2018-02-18-peculiar-indentation.md3
-rw-r--r--_posts/2019-09-30-recurring-decimals.md2
-rw-r--r--_posts/2020-02-24-ssh-tunnel-windows.md1
-rw-r--r--_posts/2020-05-06-docker-bind-mounts.md1
-rw-r--r--_posts/2020-05-20-makefile-escaping.md1
-rw-r--r--_posts/2021-03-10-ubuntu-packaging.md3
-rw-r--r--_posts/2022-09-07-gdb-sleep-all.md2
10 files changed, 0 insertions, 21 deletions
diff --git a/_posts/2015-07-03-std-call-once-bug.md b/_posts/2015-07-03-std-call-once-bug.md
index 57e24b7..8191ad3 100644
--- a/_posts/2015-07-03-std-call-once-bug.md
+++ b/_posts/2015-07-03-std-call-once-bug.md
@@ -1,8 +1,5 @@
---
title: std::call_once bug in Visual C++ 2012/2013
-excerpt: >
- There's a nasty bug in the C++ Standard Library implementation shipped with
- Microsoft Visual Studio 2012/2013.
category: C++
---
I've recently come across a nasty standard library bug in the implementation
diff --git a/_posts/2017-01-07-building-boost.md b/_posts/2017-01-07-building-boost.md
index bc82e49..cddba13 100644
--- a/_posts/2017-01-07-building-boost.md
+++ b/_posts/2017-01-07-building-boost.md
@@ -1,7 +1,5 @@
---
title: Building Boost on Windows
-excerpt: >
- Building Boost on Windows using either Visual Studio or Cygwin + MinGW-w64.
category: C++
---
Below you can find the steps required to build Boost libraries on Windows.
diff --git a/_posts/2017-06-24-static-vs-inline-vs-unnamed-namespaces.md b/_posts/2017-06-24-static-vs-inline-vs-unnamed-namespaces.md
index fca1d7a..cb12867 100644
--- a/_posts/2017-06-24-static-vs-inline-vs-unnamed-namespaces.md
+++ b/_posts/2017-06-24-static-vs-inline-vs-unnamed-namespaces.md
@@ -1,8 +1,5 @@
---
title: static vs. inline vs. namespace {
-excerpt: >
- Should I use `static`, `inline` or unnamed namespaces for function
- definitions?
category: C++
snippets_root_directory: snippets/static_vs_inline_vs_unnamed_namespaces
snippets_language: c++
diff --git a/_posts/2018-02-18-peculiar-indentation.md b/_posts/2018-02-18-peculiar-indentation.md
index 9edebf9..c477382 100644
--- a/_posts/2018-02-18-peculiar-indentation.md
+++ b/_posts/2018-02-18-peculiar-indentation.md
@@ -1,8 +1,5 @@
---
title: Peculiar Haskell indentation
-excerpt: >
- An explanation for nasty `parse error`s I used to get for nested `do`
- blocks.
category: Haskell
---
I've fallen into a Haskell indentation pitfall.
diff --git a/_posts/2019-09-30-recurring-decimals.md b/_posts/2019-09-30-recurring-decimals.md
index cde2183..ffeba59 100644
--- a/_posts/2019-09-30-recurring-decimals.md
+++ b/_posts/2019-09-30-recurring-decimals.md
@@ -1,7 +1,5 @@
---
title: Recurring decimals
-excerpt: >
- Eighth-grader thoughts on recurring decimals.
category: Math
mathjax: true
---
diff --git a/_posts/2020-02-24-ssh-tunnel-windows.md b/_posts/2020-02-24-ssh-tunnel-windows.md
index f169b8d..fdbc134 100644
--- a/_posts/2020-02-24-ssh-tunnel-windows.md
+++ b/_posts/2020-02-24-ssh-tunnel-windows.md
@@ -1,6 +1,5 @@
---
title: Persistent SSH tunnel
-excerpt: ... using Cygwin.
---
SSH tunneling is awesome.
For some reason, I've only recently learned about this feature, but I've been
diff --git a/_posts/2020-05-06-docker-bind-mounts.md b/_posts/2020-05-06-docker-bind-mounts.md
index f499fdf..832c132 100644
--- a/_posts/2020-05-06-docker-bind-mounts.md
+++ b/_posts/2020-05-06-docker-bind-mounts.md
@@ -1,6 +1,5 @@
---
title: 'Docker: bind mounts & file ownership'
-excerpt: Docker + bind mounts + non-root users = pain.
---
If you want to:
diff --git a/_posts/2020-05-20-makefile-escaping.md b/_posts/2020-05-20-makefile-escaping.md
index 7d468dc..dd9125a 100644
--- a/_posts/2020-05-20-makefile-escaping.md
+++ b/_posts/2020-05-20-makefile-escaping.md
@@ -1,6 +1,5 @@
---
title: Escaping characters in Makefile
-excerpt: Making less error-prone.
---
TL;DR: visit [this page] for a short and concise version of this article.
{: .alert .alert-success }
diff --git a/_posts/2021-03-10-ubuntu-packaging.md b/_posts/2021-03-10-ubuntu-packaging.md
index 7a28e1a..ad94f2a 100644
--- a/_posts/2021-03-10-ubuntu-packaging.md
+++ b/_posts/2021-03-10-ubuntu-packaging.md
@@ -1,8 +1,5 @@
---
title: Basic Ubuntu packaging
-excerpt: >
- Packaging your software to be published in a PPA for the first time is a
- pain.
snippets_root_directory: snippets/ubuntu_packaging
snippets_language: plain
snippets:
diff --git a/_posts/2022-09-07-gdb-sleep-all.md b/_posts/2022-09-07-gdb-sleep-all.md
index b4915d3..a575afd 100644
--- a/_posts/2022-09-07-gdb-sleep-all.md
+++ b/_posts/2022-09-07-gdb-sleep-all.md
@@ -1,7 +1,5 @@
---
title: Pause all userspace processes
-excerpt: >
- How do you pause all userspace processes for a certain amount of time?
snippets_root_directory: snippets/gdb_sleep_all
snippets_language: bash
snippets: