Skip to content

Instantly share code, notes, and snippets.

@yife
yife / クラウド化.md
Last active August 29, 2015 14:22
2015/05/30の青空文庫アイデアソンにおいて、インフラ内「クラウド化」チームのまとめです。

グループ

  • インフラ

参加者

4名

テーマ:

「クラウド移行」

概要:

@yife
yife / aerospike.conf_usertest
Created February 10, 2015 06:00
テスト用aerospike.conf。メモリ20GB+HDD50GB
namespace usertest {
memory-size 20G # Maximum memory allocation for data and
# primary and secondary indexes.
replication-factor 3 # For multiple nodes, keep 3 copies of the data
high-water-memory-pct 60 # Evict non-zero TTL data if capacity exceeds
stop-writes-pct 90 # Stop writes if capacity exceeds 90% of 4GB
default-ttl 0 # Writes from client that do not provide a TTL
# will default to 0 or never expire
storage-engine device { # Store data in memory and HDD
file /opt/aerospike/data/usertest.dat
@yife
yife / http:__亞!.com
Created July 16, 2014 10:55
http://亞!.com/を開くと落ちる
Process: Google Chrome [34954]
Path: /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
Identifier: com.google.Chrome
Version: 35.0.1916.153 (1916.153)
Code Type: X86 (Native)
Parent Process: launchd [380]
Responsible: Google Chrome [34954]
User ID: 1561117943
Date/Time: 2014-07-16 19:52:32.396 +0900
@yife
yife / amazon_spent_calc.js
Created July 3, 2014 07:38
Amazonで使った金額チェッカー / rawgit版
javascript:(function(){var d=document;var s=d.createElement('script');s.src='https://rawgit.com/Molokheiya/5698262/raw/9c2fa3d65e35dd3ce0d98f245950df0383a3e691/aitter.js'; d.body.appendChild(s)})();
@yife
yife / gitconfig
Created January 1, 2014 16:13
.gitconfig
[user]
name = yife.greenspa
email = yife.greenspa@gmail.com
[color]
ui = true
[alias]
co = checkout
ci = commit
st = status
br = branch

Glossary

  • (システム全体から見て)ごく一部のパーツの振る舞いを検証するテストのこと。
  • システムの(ビジネス上の)機能が、どのように振る舞うか検証するテストのこと。
  • Customer TestのSUTは、しばしば、システム全体や、(完全な機能を提供できる)モジュールになる。
  • Customer Testの内容が、SUT自体に影響を与えるようなことがあってはいけない。