Skip to content

Instantly share code, notes, and snippets.

View hobofan's full-sized avatar

Maximilian Goisser hobofan

View GitHub Profile
@hobofan
hobofan / SketchSystems.spec
Created June 22, 2023 07:29
My Awesome Sketch
My Awesome Sketch
First State
some event -> Second State
Second State
@hobofan
hobofan / SketchSystems.spec
Created June 22, 2023 07:28
My Awesome Sketch
My Awesome Sketch
First State
some event -> Second State
Second State
Team Deployment Frequency (h) Bug vs. Feature Ratio (%) MTTBF (h) Avg Lead Time (h) Change Failure Rate (%)
Team 1 192 140.3 3 124.4 10.2
Team 2 323 304.2 4.6 135.2 5.2
Team 3 12 459.2 42 12.65 20.3
Team 4 321.7 522.3 15 24.2 5.3
Team 5 85 153.9 14 56.2 9.1
Team 6 4 0 96.3 6.2 1.2
Team 7 341 656.3 8.3 121.3 14.3
Team 8 44 1200.3 11.6 17.2 12.4
const { cuboid, cylinder, cylinderElliptic } = require('@jscad/modeling').primitives
const { union, subtract } = require('@jscad/modeling').booleans;
const { align, translateZ, rotateX, rotateZ, scaleZ } = require('@jscad/modeling').transforms;
const { generalize } = require('@jscad/modeling').modifiers;
const main = () => {
const bottomThickness = 1.6;
### Keybase proof
I hereby claim:
* I am hobofan on github.
* I am hobofan (https://keybase.io/hobofan) on keybase.
* I have a public key whose fingerprint is E021 4954 BF54 78D5 AC7A 53DB 75AD 081F 91F5 6B2B
To claim this, I am signing this object:
@hobofan
hobofan / gce-instances.pl
Last active August 29, 2015 14:09
This script will put alle the instances of a GCE project into the hosts file
#! /bin/perl
#
# run this script with the gce project as first argument
#
# this script require the gcloud util and jq to be installed
#
# the $first_line and $second_line have to be present in the /etc/hosts file
# and anything between this lines will be replaced
use strict;
2014/04/11 16:46:17 Loading: [ProtobufDecoder]
2014/04/11 16:46:17 Loading: [nginx]
2014/04/11 16:46:17 Loading: [FxaNginxAccessDecoder]
2014/04/11 16:46:17 Loading: [debug]
2014/04/11 16:46:17 Loading: [ElasticSearchOutput]
2014/04/11 16:46:17 Starting hekad...
2014/04/11 16:46:17 Output started: debug
2014/04/11 16:46:17 Output started: ElasticSearchOutput
2014/04/11 16:46:17 MessageRouter started.
2014/04/11 16:46:17 Input started: nginx
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDt2T4odaI1pJeyM7ldGmRhax0MS1xmpJJIDIz6wk5jWZyuNI176vMbON6uToOkxgdO0z7yWGaq25LhHO1yGucccxCAD1z24F+HngApZ696K1CHL+CAd8PirPHjC7Rsgviv6ywq6OgGXZyN8t91sY5f+R4CoKBBRNApsVo7BD593jSqkNJJDtCqxgdN1/63XC8ZYwJRLNuXXfjNJYJpqlgRtetAtQfDVaMfsn3oqJ7MiJp1luur8FfxN420+K18Yh3TKntNsfSH1y6//8YpCBtACHTourDcLQMiN8OgqvxMdURbHCIcrDMmbVisWFxvv4tgOqWJB0hTnpD+a6F3Gghf hobofan-home-station
#include <stdio.h>
int main(int argc, char *argv[])
{
if(argc == 4)
{
printf("Vorname: %s\n", argv[1]);
printf("Nachname: %s\n", argv[2]);
printf("Geburtsdatum: %s", argv[3]);
}