Welcome to the source repository of my personal website, rix1.dev! I'm a product developer and engineering manager based in Oslo, Norway. My website showcases previous and ongoing projects as well as my professional journey.
Built with Lume — a static site generator for Deno, the site reflects my interest in products, technology, and design.
To get a local copy up and running, follow these simple steps.
Ensure you have Deno installed on your machine. To install Deno, run:
curl -fsSL https://deno.land/install.sh | sh
git clone https://github.com/rix1/rix1.dev.git
cd rix1.dev
deno task dev
The site should now be running on http://localhost:3000. Open your browser to
this address to view the site.
Posts live in posts/*.md. To publish a new one, add a Markdown file with this
front matter:
---
title: My post title
description: A short summary used for the overview, RSS, and social previews.
date: 2026-05-18
topic: Build
---
The shared defaults in posts/_data.yml add the post layout, author data, and
the post tag automatically. For interactive posts, prefer a small browser
script or web component in assets/ and opt into it from the post:
scripts:
- /assets/my-post-widget.js
Drafts live in drafts/*.md with draft: true. Lume renders drafts while
serving locally, but deno task build ignores the whole drafts/ folder so
they do not deploy.
I would be surprised if anyone would like to contribute to this site, but if you find any typos feel or want to change my opinion about something, feel free to open a PR:
git checkout -b fix/your-opinion)git commit -m 'Adjust your attitude towards X')git push origin fix/your-opinion)Distributed under the MIT License. See LICENSE for more information.