Robustness

The ability of a computer system to cope with errors during execution.

Read more...
 

Reliability

Probability of working without failure. There is a difference between reliability and resilience.

Read more...
 

Resilience

Capacity to recover quickly from difficulties.   There is a difference between resilience and reliability.  

Read more...
 

RPC

Remote Procedure Call. AJAX is a remote procedure call. HTTP request/response is a remote procedure call.

Read more...
 

Setting GitHub token for Bundler (Ruby)

export BUNDLE_GITHUB__COM=x-access-token:[TOKEN]

Read more...
 

Benchmarking in a loop (Ruby)

loop { puts Benchmark.measure{ Rails.cache.data.keys(‘*’) } }

Read more...
 

Pushing a tag to GitHub repo

git tag -a v1.0.2 -m “Description” git push origin v1.0.2

Read more...
 

Removing AWS ElastiCache Redis instance

aws elasticache delete-cache-cluster –cache-cluster-id [INSTANCE_NAME]

Read more...
 

YAGNI

You Aren’t Gonna Need It

Read more...
 

Obscurity

Obscurity is when important information is not obvious.

Read more...