- 月収30万円
- 週3勤務
- 残りの週2日については副業、勉強、大学院、転職活動等に充ててよい
- 曜日はいい感じに調整、応相談
- 土日祝日は休み、休日はちゃんと休め
This file contains 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 -e | |
# AWS CodeBuild のビルドIDを1個だけ受け取り、buildStatus が IN_PROGRESS 以外の状態になるのを、10秒毎、1時間待つ。 | |
# 待っても IN_PROGRESS 以外の状態にならなかったら -1 で終了する。 | |
# https://docs.aws.amazon.com/cli/latest/reference/codebuild/batch-get-builds.html | |
CODEBUILD_BUILD_ID=$1 | |
# build status check every ${INTERVAL} sec | |
INTERVAL=10 | |
WAIT_LIMIT=$((${INTERVAL} * 6 * 60)) | |
for i in $(seq 1 ${WAIT_LIMIT}); do | |
BUILD_STATUS=$( |
更新: | 2024-05-21 |
---|---|
作者: | @voluntas |
バージョン: | 2024.1 |
URL: | https://voluntas.github.io/ |
概要
現状と大きく変わったのでいったん削除しました。
This file contains 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
require 'mechanize' | |
require 'date' | |
def nap | |
sleep(3 + rand(10) / 10) | |
end | |
def org_list_item(org, i) | |
"#{i + 1}. [#{org[:name]}](#{org[:link]}): #{org[:posts]} posts, #{org[:stocks]} stocks" | |
end |
This file contains 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 | |
base_dir=`pwd` | |
wget https://mecab.googlecode.com/files/mecab-0.996.tar.gz | |
tar zxfv mecab-0.996.tar.gz | |
cd mecab-0.996 | |
./configure --enable-utf8-only | |
make | |
make check |
更新: | 2024-12-08 |
---|---|
作者: | @voluntas |
バージョン: | 2024.2 |
URL: | https://voluntas.github.io/ |
typo などは https://x.com/voluntas までご連絡ください。
日時: | 2024-12-02 |
---|---|
作: | 時雨堂 |
バージョン: | 2024.3 |
url: | https://shiguredo.jp/ |
2024-12 時点で従業員は全員フルリモート勤務中
#NoSQLデータモデリング技法
原文:NoSQL Data Modeling Techniques « Highly Scalable Blog
I translated this article for study. contact matope[dot]ono[gmail] if any problem.
NoSQLデータベースはスケーラビリティ、パフォーマンス、一貫性といった様々な非機能要件から比較される。NoSQLのこの側面は実践と理論の両面からよく研究されている。ある種の非機能特性はNoSQLを利用する主な動機であり、NoSQLシステムによく適用されるCAP定理がそうであるように分散システムの基本的原則だからだ。一方で、NoSQLデータモデリングはあまり研究されておらず、リレーショナルデータベースに見られるようなシステマティックな理論に欠けている。本稿で、私はデータモデリングの視点からのNoSQLシステムファミリーの短い比較といくつかの共通するモデリングテクニックの要約を解説したい。
本稿をレビューして文法を清書してくれたDaniel Kirkdorfferに感謝したいと思う
NewerOlder