Salmon filets in Cast iron
Salmon filets in Cast iron Read More »
The Hoge Brug Maastricht. A pedestrian and cycle bridge that spans the meusse. It is an excellent way to start a walk to the center of Maastricht. There is an underground parking nearby. Share on pinterest Share on reddit Share on facebook Share on twitter Share on whatsapp Share on email
Hoge Brug Maastricht Read More »
I found this playlist during there first weeks of the covid-pandemic. Still listing to it
Quarantaine Playlist Read More »
Pictures made during a trip to Malden. There is small airport for gliding. Is is an excellent place to start your hike.
https://youtu.be/Bk7RVw3I8eg The sound of silence by disturbed is one of the best editions of the song I have ever heard. So why not embed it on my website:) hp
Disturbed: sound of silence (youtube link) Read More »
#!/usr/bin/env bash # it searches in the current working directory function calculate_size # takes a path as input { du -mc “$1” | tail -1 | awk ‘{print $1}’ } function list_dirs { # find . -depth 1 -type d | while read -r line; do find . -maxdepth 1 -type d | while read
List directory size, bash script Read More »
#!/bin/bash # script to decompress zips and copy used zips to dir # the important directories my_zip_dir=”/home/USER/zip_dir” my_pict_dir=”/home/USER/pict_dir” # the testing —————————————- # are there zip files ls *.zip > /dev/null 2>&1 if [ $? -eq 0 ]; then echo “zip files present, programm continues” else echo ERROR: no zip files found programm stops exit
Bash unzip script Read More »