Kohei Tokunaga (@tokunagakohei) 's Twitter Profile
Kohei Tokunaga

@tokunagakohei

Software Engineer at NTT.

ID: 1064874253575630849

calendar_today20-11-2018 13:33:01

499 Tweet

959 Takipçi

259 Takip Edilen

Manabu Ori (@orimanabu) 's Twitter Profile Photo

今日の資料です (時間オーバーして申し訳ありませんでした...) speakerdeck.com/orimanabu/podm… #container_runtime

ぬるぽへ (@nullpo_head) 's Twitter Profile Photo

さきほどの自分の『コンテナセキュリティのためのLandlock入門』発表資料です speakerdeck.com/nullpo_head/ko… #container_runtime

Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

gomodjail: jail for Go modules (restricts opening files, executing commands, etc.) github.com/AkihiroSuda/go… Two steps to get started: 1. Add `// gomodjail:confined` to `go.mod` 2. Run a binary with `gomodjail run --go-mod=go.mod` (Caveat: not applicable to `unsafe` pkgs)

gomodjail: jail for Go modules (restricts opening files, executing commands, etc.)

github.com/AkihiroSuda/go…

Two steps to get started:
1. Add `// gomodjail:confined` to `go.mod`
2. Run a binary with `gomodjail run --go-mod=go.mod`

(Caveat: not applicable to `unsafe` pkgs)
Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

Created "lima-actions" for GitHub Actions github.com/lima-vm/lima-a… ``` steps: - uses: lima-vm/lima-actions/setup@v1 - run: limactl start template://fedora ``` Useful for: - Running commands on non-Ubuntu distros (e.g., Fedora, AlmaLinux 8) - Emulating multiple hosts

Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

🍺 Alcoholless: lightweight security sandbox for Homebrew github.com/AkihiroSuda/al… ``` cd ~/SOME_DIRECTORY alcless brew install xz alcless xz SOME_FILE ``` `xz` works as a separate user with an access to the working directory, but with no access to other private directories.

Masashi Yoshimura (@ming_rrr) 's Twitter Profile Photo

NTT研究所冬期インターンシップのテーマ「Linux/ELF を WebAssembly に変換するバイナリトランスレータの実装と評価」の実施報告です. medium.com/nttlabs/%E3%82…

Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

昨年9月の講演「なぜオープンソースソフトウェアにコントリビュートすべきなのか」を、今更ですがブログにまとめました #wakate2024 medium.com/nttlabs/why-yo…

Masashi Yoshimura (@ming_rrr) 's Twitter Profile Photo

I wrote a blog post about performance improvements for the binary translator (ELF -> WebAssembly). In our benchmark test, the Wasm converted from ELF/AArch64 in LINPACK now runs at roughly "60–80%" of the performance of Wasm generated from source code. medium.com/nttlabs/some-p…

Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

gosocialcheck: social reputation checker for Go modules. Checks whether a Go module is already adopted by a trustworthy project (e.g., CNCF Graduated project). github.com/AkihiroSuda/go…

Manabu Ori (@orimanabu) 's Twitter Profile Photo

Japan Community Day at KubeCon+CloudNativeConでお話したPodmanとCRI-Oの資料です speakerdeck.com/orimanabu/what… #CNCJ

Toru Komatsu (@utam0k) 's Twitter Profile Photo

☺ 話しました!立ち見でて質問たくさんもらえてよかったです。 --- Thank you to everyone who listened, and we look forward to your feedback on sched. kccncjpn2025.sched.com/event/1x708

Naoki MATSUMOTO (@pibvt) 's Twitter Profile Photo

エッジ向けの効率的なコンテナイメージ更新手法の論文誌が出版されました。修論版から実装を作り直して、マルチスレッド化や差分アルゴリズムのプラグイン化をした結果が反映されています。(やりたいことを全部やってみたとも言う) globals.ieice.org/en_transaction…

Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

RFC: the standard API for sandboxing shell commands and file I/O in AI agents. I submitted my proposal to Gemini CLI to see if they have interest, but ideally this should be part of Model Context Protocol (MCP) or maybe OCI ? github.com/google-gemini/…

RFC: the standard API for sandboxing shell commands and file I/O in AI agents.

I submitted my proposal to Gemini CLI to see if they have interest, but ideally this should be part of <a href="/MCP_Community/">Model Context Protocol (MCP)</a>  or maybe <a href="/OCI_ORG/">OCI</a> ?

github.com/google-gemini/…
Akihiro Suda (@AkihiroSuda@mastodon.social) (@_akihirosuda_) 's Twitter Profile Photo

Alcoholless: A Lightweight Security Sandbox for macOS Programs (Homebrew, AI Agents, etc.) medium.com/nttlabs/alcoho… ``` cd ~/PROJECT alcless brew install gemini-cli alcless gemini ```