Hello World

My first blog post

I had some pretty good ideas for this blog a while ago, but now I've forgotten them all. The rest of this post will be a markdown demo.


Anyways this is what italicized text, bold text, and links look like.


Quotes

If the French noblesse had been capable of playing cricket with their peasants, their chateaux would never have been burnt.


Code sample

function memoize<T: Function>(f: T): T {
  const cache = {};

  function m(...args) {
    const k = JSON.stringify(args);
    if (cache[k]) {
      return cache[k];
    }
    const result = f(...args);
    cache[k] = result;
    return result;
  }

  return ((m: any): T);
}

Lists

  • Ignore blog
  • Stop ignoring blog
  1. Make unordered list
  2. Make ordered list

Headings

HI

HI

HI

HI

HI
HI

Tables

TablesAreCool
col 1 isleft-aligned$1600
col 2 iscentered$12
col 3 isright-aligned$1

Back to blog