Blogs

eyecatch

How to Protect Your SvelteKit Routes

2025/01/04

This blog will demonstrate two examples of how to protect SvelteKit routes.

eyecatch

How to Fix Unexpected Logout Issues in SvelteKit Caused by data-sveltekit-preload-data

2024/12/08

Learn how to resolve unexpected logout issues in SvelteKit caused by data-sveltekit-preload-data settings. This blog shares my experience debugging the issue and finding a solution to help others avoid similar challenges.

eyecatch

SvelteKitアプリで突然ログアウトされる理由はこれだった

2024/12/04

SvelteKitでWebアプロケーションを作成してましたが、ランダムなタイミングでログアウトされてしまう事象が発生していたが原因を追及して解決しました。 原因は data-sveltekit-preload-data の設定の問題でした。詳細をブログに残していきます。

eyecatch

Implement an observability's tracing in Rust with Sentry

2024/09/23

Nowadays, observability has become more an important topic to observe system status, a performance and to find out issue details. Let look how implement the tracing in Rust with Sentry.

eyecatch

SvelteKit - Potential Information Leakage from the State

2024/08/03

When using SvelteKit, you need to be careful with the Store as there is a possibility of information leakage. This time, we will actually verify this.

eyecatch

Sveltekit - Storeからの情報漏洩の可能性について

2024/08/01

Sveltekitを使用する上で Storeは取扱に気をつけないと情報漏洩の可能性がります。今回はそれの実際に検証していきたいと思います。

eyecatch

Rust 1.80.0 を簡単に見ていく

2024/07/28

Rust 1.80.0 が出たのでメモ程度に大きく取り上げられてたものを見ていきます。

eyecatch

エンジニアが社内ツールを広めるために頑張った話

2024/06/11

株式会社サイバーエージェントに勤めてる時に業務用の新しいツールを開発しました。新しいツールを社内に広めるために色々な問題に直面し、なかなか使ってもらえませんでした。そんな中で新しいツールを使ってもらうために2通りの有効な方法を見つけました話です。どこの環境でも非常に役になってるスキルとなったのでブログで共有します。

eyecatch

Svelte 5 での Native HTML element attributes の付け方

2024/06/02

Svelte componentの片付けに div や input などの Native HTML element attributes のつける方法です。

eyecatch

Rust sqlx::test がユニットテストに便利だった。テストDBを自動で用意。

2024/06/01

レポジトリ層などのDB接続が必要な時にユニットテストを書くためにはテスト用のコネクションやデータベースを用意する必要があり面倒でしたが sqlx::test が解決してくれたのでブログにまとめました。