- Date: <DATE - when the decision was made>
- Driver: <DRIVER - list a single person driving consenus and decision making>
- Stakeholders: <STAKEHOLDERS - list all relevant stakeholders affected by this decision>
- Status: [PROPOSED | DECIDED | SUPERSEDED]
- Categories: <CATEGORIES - use a simple grouping to help organize the set of decisions (e.g. backend, payment, user management, ...)>
- Outcome: <OUTCOME - once decided, provide a short summary of the decision outcome here>
This file contains 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 app; | |
public class Debug { | |
// 4 seconds in milliseconds | |
private static final long MEASUREMENT_TIME = 4 * 1000; | |
public static void main(final String[] args) { | |
final long res = longRunningOperation(); | |
System.out.println(res); |
This file contains 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
<?php | |
namespace Fk\Core\Infrastructure\Bundle; | |
use Symfony\Component\HttpKernel\Bundle\Bundle; | |
/** | |
* The compact bundle combines a bundle definition with an {@link ExtensionInterface} to provide sound defaults for | |
* implementing custom bundles. | |
*/ | |
abstract class CompactBundle extends Bundle |
This file contains 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
module.exports = | |
config: | |
paths: | |
watched: ['app/', 'styleguide/'] | |
files: | |
javascripts: | |
joinTo: 'app.js' | |
stylesheets: | |
joinTo: | |
'app.css': /^app/, |
I hereby claim:
- I am fakeller on github.
- I am fakeller (https://keybase.io/fakeller) on keybase.
- I have a public key ASA4_yxNz33iCXohoprh4GyyYSXPmy2ZFFw_4brjteBq4go
To claim this, I am signing this object:
Installing a BOSH director with bosh create-env
with the vSphere CPI release fails during the compilation of the vSphere package with the bosh-create-env.log
.
This happens on Ubuntu 16.04 / 18.04 with or without system Rubys (2.3 / 2.4 / 2.5) installed.
Notice that about in the middle of the log it says:
This file contains 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/sh | |
# == Debug Manifest == | |
# This script allows to show interpolated manifests based on BOSH script files. | |
# | |
# Prerequisite: You have a script file that somewhere contains: | |
# bosh -e my-bosh-env deploy my-base-manifest.yml \ | |
# -o operations/expose-https.yml \ | |
# ... | |
# | |
# Then you can simply call this script that replaces [create-env|deploy|update-cloud-config] |
This file contains 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
[core] | |
editor = vim | |
eol = lf | |
autocrlf = input | |
[alias] | |
last = log -1 --stat | |
cp = cherry-pick | |
co = checkout | |
cl = clone | |
ci = commit |
This file contains 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
S3_ACCESS_KEY_ID_GITLAB_BACKUP=<ACCESS_KEY> | |
S3_SECRET_ACCESS_KEY_GITLAB_BACKUP=<SECRET_KEY> |