- 有休
- 初年度10日(経験・スキルに応じて増加支給の場合あり)
- 病休
- 基本有給で対応。
- 育休
- 直近で必要性がないため、まだ制度化していない。ただし、現状の制度内でも休業+育児休業給付で対応可能。
更新: | 2024-10-08 |
---|---|
作者: | @voluntas |
バージョン: | 2024.1 |
URL: | https://voluntas.github.io/ |
概要
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
find /Applications ~/Applications -maxdepth 3 -name "*.app" | while read a ; do echo; echo -n "$a ___ "; codesign -vd "${a}" 2>&1 | awk '/version/ {print $3}'; done | awk -F'___' '{print $2 " " $1}' | sort -u |
クレジットカード番号には法則があり、先頭6桁でカードの種類を識別、分類することができる。
詳細はISO/IEC 7812で規定されている。
ISO/IEC 7812 - Wikipedia https://ja.wikipedia.org/wiki/ISO/IEC_7812
先頭の6桁を銀行識別番号(Bank Identification Number、略称:BIN)ないしは発行者識別番号(Issuer Identification Number、略称:IIN)と呼び、この先頭6桁でカード発行会社(イシュア、issuer)が判るようになっている。
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
# 優先順位は変わらないので、優先順位にそってメッソドを再定義する | |
# メソッドが入れ替わっているので、式内の演算子も置換で入れ替える。 | |
# | |
# ↑優先順位高 | |
# | ビット or | |
# & ビット and | |
# + 加算 | |
# * 乗算 | |
# ↓優先順位低 | |
# |
- http://coedo-dev.doorkeeper.jp/events/20181
- 講師: 野島 梨恵氏(東京山王法律事務所)
- 2015-02-10 19:15-20:45
- Co-Edo
- システム開発そのものは素人だけど、裁判にはクライアント/開発側の両方で関わったことがある。
- 裁判官はもっとシステム開発については分かってない。
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
# rubocop v0.35.0 から inherit_gem という機能が増えたので gem にしました | |
# https://github.com/onk/onkcop | |
inherit_gem: | |
onkcop: "config/rubocop.yml" |
- ダッシュボード
- 何も考えずに各モデルをカウントするのでレコード件数増えるとえらいことになる。
- 社内用のリポジトリ管理のためにGitLabを使用
- pixivはPC・Touch版などがありそれぞれソースコードを一部共有しているためpixiv.gitという1つの大きなリポジトリで管理している
- 社内で一番大きく関わっている人も多いリポジトリ
- pixiv.gitは1.4GBくらい(昔は2GB超だったが工夫して減らした)なので外部サービスのGitHubに置くと遅すぎて開発ができない
- GitHubの障害によりデプロイができなくなるのも困る
- GitHubにはファイルの容量制限など様々な制限もあるのでそういったことで悩みたくない
- 社内のデータセンター内で管理する必要がある
- pixivはPC・Touch版などがありそれぞれソースコードを一部共有しているためpixiv.gitという1つの大きなリポジトリで管理している
- GitHub Enterpriseを使えば社内のサーバー上にGitHubを立てることができる