2023/06 5週目 
Rust 
- https://github.com/SeaQL/sea-orm- 非同期ORM
 
- https://github.com/rust-lang/rfcs/pull/3424- 単一ファイルで実行できる機能のRFCがマージされた
- rust#!/usr/bin/env cargo //! ```cargo //! [dependencies] //! clap = { version = "4.2", features = ["derive"] } //! ``` use clap::Parser; #[derive(Parser, Debug)] #[clap(version)] struct Args { #[clap(short, long, help = "Path to config")] config: Option<std::path::PathBuf>, } fn main() { let args = Args::parse(); println!("{:?}", args); }
 
Go 
Wasm 
- https://zellij.dev/news/new-plugin-system/- zellijがwasmを使ってプラグイン機構を発表している
 
Frontend 
- node_modulesの問題点とその歴史 npm, yarnとpnpm
- リアクティブプログラミングについて考える- Recoilを使った例を交えて解説している
 
MongoDB 
- https://christina04.hatenablog.com/entry/mongodb-write-concern
- https://christina04.hatenablog.com/entry/mongodb-read-concern
Deno 
- Deno Deploy で WebAuthn を使ったサイトを作ってみた- WebAuthnってのが気になる
- どうやらこれを使うとパスワードレスになるようだ(パスキー認証、指紋認証)
 
Go 
- https://antonz.org/go-1-21-builtins/- 1.21で入るいろんなbuiltin funcitonの紹介
 
- https://tip.golang.org/doc/go1.21- 1.21のドラフト版リリースノート
 
AI 
- https://pingcap.co.jp/tidb-user-day-2023/- https://pingcap.co.jp/chat2query-ai-powered-sql-generator/
- Chat2Queryを使って、質問を入力するとSQLクエリを生成できるらしい
 
CI 
k8s 
- https://github.com/kubernetes-sigs/nfs-subdir-external-provisioner- 動的にNFSのストレージを確保したいときに使えるやつ
 
その他 
- Securing CI/CD pipelines with 1Password Service Accounts- 1passwordがCI/CDに対応
- Vaultみたいに暗号化された機密情報を取得できるらしい
 
- https://app.codecrafters.io/catalog- 言語ごとにBuild your ownシリーズが色々ある
 
- macOS のデフォルト状態でコマンドラインからOCR処理を行う
- https://twitter.com/fwarashi/status/1666466931942260737?s=20- 【CTF入門】kurenaifと一緒に学ぶ、初めてのpwn【スタックオーバーフロー】
- https://www.youtube.com/watch?v=EFIYGzv-VWw
 
