Kubernetes Kubernetes is an opensource orchestrator allowing to automate the deployment, scaling and management of containerized applications. Also named k8s the 8 for the eight letters in “ubernete” plus “s”. It was originally developed by Goog...
Creating the docker If you are new to docker, I would recommend this article for some basics docker commands and how to create your Dockerfile, docker images and running container. I will first create a simple dockerfile with python 3.6 and pytes...
What’s git log Git log is a powerful tool in git that allows you to browse through the repository history. It saves a bunch of information (tag, commit author, message, date, …) First you may want to pull origin from every repository using: find...
Introduction The facebook CTF kick started on the 1st of June to the 3rd of July. It was apparently using ctfd.io which is a platform to host ctfs. The challenges were separated into 5 categories: reversing: Usually a .tar to download and e...
During the competition there was at some point a Craiglist kind of paper for a synapse experiment with Neurosoft (The company that implements chips in your brain). On the coupon was a website neuro://synapse-trials.ctf and a phone number 1-647-49...
Category: coding challenge Points: 5 Description: Can you pass this vision test, if it’s not working it’s definitely not your brain implant. Please calibrate your vision chip. The blurriness of th...
Certificates are everywhere … Usually you don’t see them, everything works fine until it does not. The most common place with certificate errors will be on a website not using them or with errors. Like your connection is not secure, you’re go...
Vue.js is a framework to build user interfaces (UI). It can self contains the required css, js and html into one file. You will see how to get started on the vue.js documentation But let’s take a look at a full on Vue.js app. Introduction Here ...
Linux Foundation The Linux Foundation is a large open source non-profit organisation that promotes and foster collaborative development. Open Source Readings from Daniel Shiffman - Open Source Course: What Does “Open Source” Even Mean? by J...
I wrote a post on stackoverflow on how to use java.util.function.Function for simple method as parameter function. Here is a simple example: import java.util.function.Function; public class Foo { /** Foo constructor **/ private Foo(String...