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
$ docker images | |
$ docker ps -l -a | |
$ docker rm <container> | |
$ docker rmi <image> | |
$ docker logs -f nostalgic_morse | |
$ docker port nostalgic_morse | |
$ docker top nostalgic_morse | |
$ docker-compose up --build | |
$ docker-compose build <container> |
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
version: '2' | |
services: | |
mysql: | |
image: mysql:5.7 | |
environment: | |
- MYSQL_DATABASE=api | |
- MYSQL_USER=bridge | |
- MYSQL_PASSWORD=bridge | |
- MYSQL_ROOT_PASSWORD=root | |
ports: |
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
Reinventing Organizations - Frederic Laloux | |
Lean Enterprise - Jez Humble, Joanne Molesky, Barry O'Reilly | |
Organize for Complexity - Niels Pflaeging | |
The DevOps Handbook - Gene Kim, John Willis, Patrick Debois, Jez Humble | |
Agile IT Organization Design - Sriram Narayan | |
It's your ship - D. Michael Abrashoff | |
Agile Software Development with Distributed Teams - Jutta Eckstein | |
Agile Software Development in the Large: Diving Into the Deep - Jutta Eckstein | |
No Excuses Management - T. J. Rogers of Cypress Semiconductor | |
The Enterprise and Scrum - Ken Schwaber |
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
Traceback (most recent call last): | |
File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1836, in __call__ | |
return self.wsgi_app(environ, start_response) | |
File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1820, in wsgi_app | |
response = self.make_response(self.handle_exception(e)) | |
File "/usr/local/lib/python2.7/site-packages/flask_restful/__init__.py", line 257, in error_router | |
return self.handle_error(e) | |
File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app | |
response = self.full_dispatch_request() | |
File "/usr/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request |
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
#include <MotorShield.h> | |
MS_DCMotor motorA(MOTOR_A); | |
MS_DCMotor motorB(MOTOR_B); | |
const int buttonFordwardMotorAPin = 4; | |
const int buttonBackwardMotorAPin = 5; | |
const int buttonFordwardMotorBPin = 6; | |
const int buttonBackwardMotorBPin = 7; |
NewerOlder