Skip to content

Instantly share code, notes, and snippets.

View luigidifraia's full-sized avatar
🎯
Focusing

Luigi Di Fraia luigidifraia

🎯
Focusing
View GitHub Profile
@luigidifraia
luigidifraia / tcrep2html.pl
Created October 6, 2018 12:31
Convert TAPClean's text report to HTML
#!/usr/bin/env perl
use strict;
use File::Basename;
my $tag_closed = ">";
my $tag_bold = "<b>";
my $tag_bold_closed = "</b>";
my $tag_font = "<font class=";
my $tag_font_closed = "</font>";
@luigidifraia
luigidifraia / i2c-to-serial-bridge.ino
Last active July 8, 2019 10:30
Arduino sketch for bridging the I2C and USB serial interfaces
/*
* Title: I2C <-> USB serial bridge
* Board: Arduino Pro-Micro (ATMega32U4)
* Author: Luigi Di Fraia
*
* Note: This example is provided as a guideline only, without any warranty!
*/
#include <Wire.h>
@luigidifraia
luigidifraia / datacube-get-started.sh
Last active September 16, 2019 08:41
Bash script to get started with Catapult's Data Cube JupyterHub platform
#!/bin/bash
cd
mkdir satapps
cd satapps
git init
git remote add -f origin https://github.com/luigidifraia/jupyterhub-platform-tutorials.git
git config core.sparseCheckout true
echo "datacube/examples" >> .git/info/sparse-checkout
git pull --depth=1 origin master
@luigidifraia
luigidifraia / update-detached-head-submodules.sh
Last active November 2, 2019 19:17
Update git submodules that are detached from HEAD (tracking a specific commit)
#!/bin/bash
# From: https://stackoverflow.com/a/49997119
git submodule update
git submodule foreach git checkout master
git submodule foreach git pull origin master
#!/bin/bash
mkdir -p $HOME/.kube
sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
sudo chown $(id -u):$(id -g) $HOME/.kube/config
echo "export KUBECONFIG=\$HOME/.kube/config" >> ~/.bashrc
export KUBECONFIG=$HOME/.kube/config
@luigidifraia
luigidifraia / docker-microk8s-ubuntu-18.md
Last active July 3, 2020 10:45
Some useful snippets to install Docker and microk8s on Ubuntu 18.04 LTS (Bionic Beaver)

Base upgrade of Ubuntu 18

sudo apt-get update
sudo apt-get upgrade -y

Docker CE installation

@luigidifraia
luigidifraia / append-boot-name-to-tap-files.sh
Last active September 5, 2020 19:29
Rename TAP files to include the name of the first CBM ROM file therein
#!/bin/bash
# Pre: make sure you have the find-rom-name binary available in your PATH
# binaries available @ https://www.luigidifraia.com/software/#Filename_extractors
for filename in *.TAP; do
echo -n "Parsing $filename: "
cbm_name=$(find-rom-name "$filename" | grep "^FOUND:" | awk '{ print $2 }' | sed -e "s/\"//g")
if [ ! -z $cbm_name ]; then
mv "${filename}" "${filename%.*}_${cbm_name}.${filename##*.}"
#!/bin/bash
# From: https://druid.apache.org/docs/latest/tutorials/tutorial-delete-data.html
# We assume here that TLS is enabled for Druid's router. If not, use port `8888` and `http` as protocol
DRUID_PORT=9088
DRUID_ROUTER=https://localhost:${DRUID_PORT}
NAMESPACE=druid
# If the Druid endpoint contains 'localhost', assume a port-forward is needed
#!/bin/bash
# List all non-ephemeral containers used by pods in all namespaces of a k8s cluster
kubectl get pods --all-namespaces -o jsonpath="{.items[*].spec.containers[*].image}" | \
tr -s '[[:space:]]' '\n' | \
sort | uniq