- Integrate the code as fast as possible, the code that is not ready should be disabled by feature flags.
- Deliver frequently, deploy frequency improves quality, decreases rework.
- Enable fast flow from development to production by reducing variability and batch sizes (slice big tasks, deliver often).
- Visualize team goals and targets, actively monitor and visualize performance to goals/targets. Visualize and minimize WIP.
- Eliminate unnecessary controls (code review, QA, manager's approval), automate quality, invest in team capabilities and autonomy.
- High cooperation, knowledge sharing, novelty and innovations are highly welcomed.
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 | |
| trap_ctrlc() { | |
| echo "Stopping container" | |
| cont_id=$(docker ps -q --filter name=my-container) | |
| docker stop $cont_id | |
| echo "Container stopped" | |
| } | |
| trap trap_ctrlc INT |
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
| # Kibana version should match Elasticsearch version | |
| GET / | |
| DELETE services_v1 | |
| DELETE services_v2 | |
| DELETE resources | |
| DELETE services_catalog_v1 | |
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
| ELASTIC_VERSION=5.6.9 | |
| #ELASTIC_VERSION=6.3.0 |
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
| kill -9 `ps aux | grep <keyword> | grep -v grep | awk '{print $2}'` |
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
| package main | |
| import ( | |
| "fmt" | |
| "math" | |
| ) | |
| func Sqrt(x float64) float64 { | |
| z := 1.0 | |
| for i:=0; i<int(x); i++{ |