AWS Summit Madrid

One day round trip Valencia to Madrid and back. It is 350 km, but AVE (high velocity train) makes it in 1.5 hr. Take that, Via Rail !! Travelling at 300 km/h is unreal. It is actually quieter and more smooth than Canadian train at 80 - all that makes the speed believable is the velocity display and view out of the window when train goes around something closer to the rails.

Jupyter notebook with Bash kernel

Adding Bash to Tensorflow notebook I commented out PHP and C++ stuff that I do not really need: FROM jupyter/tensorflow-notebook USER root # install dependencies RUN apt-get update && apt-get install -yq --no-install-recommends \ php-cli php-dev php-pear \ pkg-config \ && apt-get clean # rm -rf /var/lib/apt/lists/* # install zeromq and zmq php extension #RUN wget https://github.com/zeromq/zeromq4-1/releases/download/v4.1.5/zeromq-4.1.5.tar.gz && \ # tar -xvf zeromq-4.1.5.tar.gz && \ # cd zeromq-* && \ # .

SSL Poke

Cybersource Testing Tool Java utility that we used before when we were debugging the TLS 1.2 issues. It needs to be compiled with JDK 1.8 - ideally the same one that runs in production and then run like: java -Djavax.net.debug=ssl🤝verbose SSLPoke api.cybersource.com 443 replace api.cybersource.com with whatever the cybersource endpoint needs to be. If the utility responds with ‘Successfully connected’, it was able to handshake with the SSL server and establish the secure connection.

Gitbits

Two small utilities I have places into ~/bin: git-attic Source: https://github.com/maximeh/dotfiles/blob/master/common/.bin/git-attic #!/bin/sh # git-attic [-M] [PATH] - list deleted files of Git repositories # # Use -M to not show renamed files, and other git-log options as you like. git log --raw --no-renames --date=short --format="%h %cd" "$@" | awk '/^[0-9a-f]/ { commit=$1; date=$2 } /^:/ && $5 == "D" { print date, commit "^:" $6 }' | less Example âžś kubernetes-the-hard-way git:(master) âś— git log --raw --no-renames --date=short --format="%h %cd" "$@" | awk '/^[0-9a-f]/ { commit=$1; date=$2 } /^:/ && $5 == "D" { print date, commit "^:" $6 }' 2019-11-20 374e8d9^:docs/using-rst/pdp-template-rst.

DockerCon 2018 - great event (with a small fly in the ointment)

I have just returned from DockerCon Europe 2018 and I’d like to share my impressions while they are fresh in my mind. It was my first DockerCon so I was not quite sure what to expect. As the title says, it was great experience and barring the scaling issue (more below) could have been really awesome experience. But let’s take things in order. First location - Barcelona. Hard to pick better place in December than Spain.