Blogs
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 が解決してくれたのでブログにまとめました。
Using sqlx::test for unit testing make much easier to test
2024/06/01I use to prepare test database and connection by my self. But sqlx provides sqlx::test macro which creates test DB and live connection for us automatically and it makes unit test much easier.
高卒工場勤務会社員がオーストラリアでワーホリ後に大学卒業してエンジニアになった話
2024/04/28自分が高校卒業後に就職したがエンジニアになりたくて仕事辞めてオーストラリアのワーホリを通して大学を卒業してエンジニアになるまでの話です。
Deploy Rust Axum app on Lambda with aws-lambda-web-adapter
2024/01/28Using aws-lambda-web-adapter makes much easier to deploy Rust Axum app on Lambda. Describe how and where I struggled.