Skip to content

Instantly share code, notes, and snippets.

@kotokaze
kotokaze / install.bash
Created May 2, 2024 16:20
Install Docker CE on Ubuntu
## See: https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
# Uninstall old versions
for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do
sudo apt-get remove $pkg;
done
# Add Docker's official GPG key:
sudo apt update
sudo apt install ca-certificates curl
@kotokaze
kotokaze / .clang-format
Created November 9, 2023 16:21
ClangFormat
---
BasedOnStyle: GNU
AlignAfterOpenBracket: BlockIndent
AlignArrayOfStructures: Right
AlignConsecutiveAssignments:
AcrossComments: true
AlignCompound: true
AlignConsecutiveBitFields:
AcrossComments: true
@kotokaze
kotokaze / keybase.md
Created July 2, 2021 07:10
Keybase proof

Keybase proof

I hereby claim:

  • I am kotokaze on github.
  • I am kotokaze (https://keybase.io/kotokaze) on keybase.
  • I have a public key ASBbFVA1lUdlgM91hFL_rf1nmu0rbXzwc-GybIfQjo_Piwo

To claim this, I am signing this object:

@kotokaze
kotokaze / .gitmessage.txt
Last active September 17, 2022 15:05
commit template
# ==== Emojis ====
# ✨ :sparkles: New featur / 新機能追加
# ✅ :white_check_mark: Fix a feaure (not a bug) / 既存機能の修正
# 🔥 :fire: Remove a file or feature / 不要なファイル・機能の削除
# 📝 :memo: Add (Fix) Document / ドキュメント追加・修正
# ⚠️ :warning: Fix error or bug / エラー・バグの修正
# 🚀 :rocket: Improve performance / パフォーマンス改善
# ♻️ :recycle: Fix dependencies or libraries / Dependencies・ライブラリ関連の修正
# 🐧 :penguin: Linux related improvement / Linux用の何かしらを改善