Now
A snapshot of my life via short updates.
Added syntax highlighting for code blocks for mdx files using rehype-pretty-code
It supports inline code const test = () => console.log('hello world');
const test = () => console.log('hello world');
And code blocks:
const test = () => {
console.log('hello world');
};
const test = () => {
console.log('hello world');
};
Started embracing AI-based tooling for my work, specifically GitHub Copilot. Initially I was skeptical, mainly due to all of the twitter hubbub around when and where it fails miserably. Those flubs appear to be a result of over ambitious expectations, I believe. These tools work best when you let them exist in the background, relying on them only as a helpful nudge here and there when you're stuck. Plus the auto-complete suggestions are a great productivity boost.
Added persistance to 'now' updates. Each update is an individual mdx file that gets parsed by Contentlayer.
- I was recently promoted to Senior Frontend Developer 🎉.
- Moved this page to Contentlayer. This makes using MDX a lot easier and worth the effort compared to other methods I've tried.