Skip to content

Instantly share code, notes, and snippets.

View stijn-dejongh's full-sized avatar

Stijn Dejongh stijn-dejongh

View GitHub Profile
@stijn-dejongh
stijn-dejongh / imageViewerCreator.sh
Created May 6, 2023 06:07
Simple shell script, generating a browser based image caroussel using galleria.js. To be used as a basis for terminal based picture management.
#! /bin/bash
if [ ! -d "$1" ]; then
echo "usage: $0 <directory>";
exit 1;
fi
echo '' > "$1_viewer.html"
cat >> "$1_viewer.html" <<'EOF'
<html>
<head>
@stijn-dejongh
stijn-dejongh / sonar_docker-compose.yml
Last active November 20, 2021 09:15 — forked from ThabetAmer/docker-compose.yml
Run SonarQube and SonarScanner in Docker-compose
#
# Based on https://hub.docker.com/_/sonarqube
#
version: "3.7"
services:
sonarqube:
container_name: sonarqube
@stijn-dejongh
stijn-dejongh / .bash_aliases
Last active November 20, 2021 09:06
Linux && Git Aliases
# TEXT aliases
alias v="vim"
alias em="emacs"
# GIT ALIASES
alias g=git
alias glog="git lg"
alias gsquash="git squash"