Page With Sidebar

A demo page with a sidebar

This is a demo page showing the sidebar.

To show the sidebar set show_sidebar to true in the page’s frontmatter.

title: Page With Sidebar
subtitle: A demo page with a sidebar
layout: page
show_sidebar: true

Latest Posts

Prefer Scoped Enums Over Unscoped Enums (Notes)

Scoped vs Unscoped Enums

  • General rule: declaring a name inside curly braces is limited to that scope.
  • Exception: C++-98 style Enums

Prefer Alias Declarations to Typedefs (Notes)


NOTE

My notes on Chapter 3, Item 9 of Effective Modern C++ written by Scott Meyers.

Some (or even all) of the text can be similar to what you see in the book, as these are notes: I’ve tried not to be unnecessarily creative with my words. :)


GPU Parallel Programming: Chapter 1

Chapter 1: Introduction to CPU Parallel Programming