Blogs
How to Protect Your SvelteKit Routes
2025/01/04This blog will demonstrate two examples of how to protect SvelteKit routes.
How to Fix Unexpected Logout Issues in SvelteKit Caused by data-sveltekit-preload-data
2024/12/08Learn 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.
SvelteKitアプリで突然ログアウトされる理由はこれだった
2024/12/04SvelteKitでWebアプロケーションを作成してましたが、ランダムなタイミングでログアウトされてしまう事象が発生していたが原因を追及して解決しました。 原因は data-sveltekit-preload-data の設定の問題でした。詳細をブログに残していきます。
Implement an observability's tracing in Rust with Sentry
2024/09/23Nowadays, 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.
SvelteKit - Potential Information Leakage from the State
2024/08/03When 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.
Sveltekit - Storeからの情報漏洩の可能性について
2024/08/01Sveltekitを使用する上で Storeは取扱に気をつけないと情報漏洩の可能性がります。今回はそれの実際に検証していきたいと思います。
Rust 1.80.0 を簡単に見ていく
2024/07/28Rust 1.80.0 が出たのでメモ程度に大きく取り上げられてたものを見ていきます。
エンジニアが社内ツールを広めるために頑張った話
2024/06/11株式会社サイバーエージェントに勤めてる時に業務用の新しいツールを開発しました。新しいツールを社内に広めるために色々な問題に直面し、なかなか使ってもらえませんでした。そんな中で新しいツールを使ってもらうために2通りの有効な方法を見つけました話です。どこの環境でも非常に役になってるスキルとなったのでブログで共有します。
Svelte 5 での Native HTML element attributes の付け方
2024/06/02Svelte componentの片付けに div や input などの Native HTML element attributes のつける方法です。
Rust sqlx::test がユニットテストに便利だった。テストDBを自動で用意。
2024/06/01レポジトリ層などのDB接続が必要な時にユニットテストを書くためにはテスト用のコネクションやデータベースを用意する必要があり面倒でしたが sqlx::test が解決してくれたのでブログにまとめました。