- AI Shift
- 社内SQL研修のために作った資料を公開します - (2021/06/21)
- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- 【新卒研修】監修者@t_wadaと読む!プログラマが知るべき97のこと読書会 - (2024/04/09)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Always output answers in Japanese | |
- Always output commit messages in English | |
- 開発する場合はmainに直接コミットせず feature/xxx のようなブランチを作成しPRを作成してください | |
- PRを作成したらSlackに通知してください。通知するチャネルは #xxx です。 hereメンションも付けてください | |
- Agentの動作が完了する前にもSlackに通知してください。呼び出し制限に達しそうな場合は達する直前に通知してください | |
- Pythonのパッケージ管理はuvを使用してください | |
- Nodejsのランナーはbunを使用してください | |
- GitHubへのPR作成はghコマンドを用いて確認不要な形でコマンドを実行してください |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# チェック: 引数が指定されているか | |
if [ $# -eq 0 ]; then | |
echo "使用方法: $0 <設定ファイルパス>" | |
exit 1 | |
fi | |
# 設定ファイルパス | |
SETTINGS_FILE="$1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tap "homebrew/bundle" | |
tap "homebrew/core" | |
tap "homebrew/services" | |
tap "remind101/formulae" | |
brew "libpng" | |
brew "xz" | |
brew "libtiff" | |
brew "openexr" | |
brew "webp" | |
brew "asdf" |
31 Aug 2011
私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from time import time | |
import functools | |
class Timer(): | |
def __init__(self, func): | |
self._func = func | |
functools.update_wrapper(self, func) | |
def __call__(self, *args, **kwargs): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*://stackoverrun.com/* | |
*://www.sejuku.net/* | |
*://techacademy.jp/* | |
/.*udemy.*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
flake8 --ignore E111,E114,C901,E302,W503 --max-line-length 120 /path/to/src |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"python.autoComplete.extraPaths": [ | |
"${workspaceFolder}/path/to/src/" | |
], | |
"python.analysis.extraPaths": [ | |
"${workspaceFolder}/path/to/src/" | |
], | |
"python.analysis.diagnosticSeverityOverrides": { | |
"reportMissingImports": "none", | |
"reportGeneralTypeIssues": "information" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
USER root | |
WORKDIR / | |
SHELL ["/bin/bash", "-xo", "pipefail", "-c"] | |
# Creating user openvino | |
RUN useradd -ms /bin/bash openvino && \ | |
chown openvino -R /home/openvino | |
ARG DEPENDENCIES="autoconf \ | |
automake \ | |
build-essential \ |
NewerOlder