-
9:00am - 10:10am IF YOU DON’T KNOW WHERE YOU’RE GOING, IT DOESN’T MATTER HOW FAST YOU GET THERE
10:10am - 10:35am Break
-
10:35am - 11:25am DEVOPS FOR THE DATABASE
Location: Talk MOVED to Seacliff ABC
11:25am - 11:50am Break
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
https://news.ycombinator.com/item?id=22672491 | |
You can also do a per-directory _global_ git configuration, e.g. | |
in .gitconfig, you say: | |
[user] | |
name = Me Myself | |
email = [email protected] | |
signingkey = D34DB44F |

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
+------------------------+ +-----------+ +------------------+ | |
| || || | | | | | |
| || || | | | Load Balancer | | |
| Compute || || | Security | | | | |
| || || | Groups | | | | |
+------------------------| +-----------+ +------------------+ | |
+-------------------------------+ +----------------------------+ +---------------------------------+ +------------------------------+ | |
| | | | | | | | | |
| | | | | Storage, Database S3 | | Permissions, Roles, IAM | |
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: '3' | |
services: | |
hal-db: | |
image: "mysql:5.7" | |
ports: | |
- "${HOST_MYSQL_PORT:-3306}:3306" | |
environment: | |
- MYSQL_DATABASE=${MYSQL_DATABASE} | |
- MYSQL_ALLOW_EMPTY_PASSWORD=true |
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
job "hal_job_1234" { | |
datacenters = ["dc1"] | |
type = "batch" | |
constraint { | |
attribute = "${attr.kernel.name}" | |
value = "linux" | |
} |
Most serious software development projects use coding guidelines. These guidelines are meant to state what the ground rules are for the software to be written: how it should be structured and which language features should and should not be used. Curiously, there is little consensus on what a good coding standard is. Among the many that have been
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
| service | windows | linux | docker | mobile (ios) | open source | cost | onprem | self-hosted | free tier? | github | tfs | git | pipelines | matrix | config | other | | |
|----------------------|---------|-------|--------|--------------|-------------|------|--------|-------------|------------|--------|-----|-----|-----------|--------|--------|-------| | |
| jenkins | | | | | | | | | | | | | | | | | | |
| travis-ci.com | | | | | | | | | | | | | | | | | | |
| circleci.com | | | | | | | | | | | | | | | | | | |
| cloudbees.com | | | | | | | | |
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
<html> | |
<head> | |
<style> | |
img { width: 750px; } | |
h1 { margin: 1em 0; border-top: 3px solid #555; border-bottom: 3px solid #555; color: #555; font-family: sans-serif; text-transform: uppercase; } | |
hr { margin: 2em 0; } | |
</style> | |
</head> | |
<body> |
NewerOlder