JA
← Back to posts
Announcements

Starting the Hanabi Koubou Blog

We've started the official Hanabi Koubou blog. We'll be sharing development notes and project updates here.

#announcement#dev

We've officially started the Hanabi Koubou blog.

About This Blog

Here we'll be sharing personal development notes, project updates, and technical memos.

Main Topics

  • Project Updates — Status reports on ongoing projects
  • Tech Notes — Lessons learned and discoveries during development
  • Announcements — Site update information

Sample Code

The blog supports code blocks with syntax highlighting:

import { component$ } from "@builder.io/qwik";

export const Hello = component$(() => {
  return <h1>Hello, Hanabi!</h1>;
});
def fibonacci(n: int) -> list[int]:
    fib = [0, 1]
    for i in range(2, n):
        fib.append(fib[i-1] + fib[i-2])
    return fib[:n]

print(fibonacci(10))

What's Next

We'll continue developing new projects at Hanabi Koubou. Be sure to check back on the blog.