Seito Nakagane
← Back to journal

Hello, world

The first entry of this journal, where I check that everything renders.

Welcome! This is the very first entry of my journal. I plan to keep rough notes of what I'm working on, what I'm reading, and things I stumble across.

Why write this?

Because writing is thinking. Even a two-sentence note, written down, forces me to actually commit to an idea instead of letting it dissolve.

Rendering checks

A little math, courtesy of KaTeX:

i=1ni=n(n+1)2\sum_{i=1}^{n} i = \frac{n(n+1)}{2}

And a code block, to make sure syntax highlighting works:

function greet(name: string): string {
  return `Hello, ${name}!`;
}
 
console.log(greet("world"));

That's it for now. See you in the next one.