Skip to content

Instantly share code, notes, and snippets.

View marcel-dempers's full-sized avatar

Marcel Dempers marcel-dempers

View GitHub Profile
⏳ Leveling
✅ Dungeon list 👉🏽 https://www.wowhead.com/zones/dragonflight/dungeons
- https://www.wowhead.com/zone=13968/uldaman ✅
- https://www.wowhead.com/zone=14063/ruby-life-pools ✅
- https://www.wowhead.com/zone=14011/neltharus ✅
- https://www.wowhead.com/zone=13954/the-azure-vault ✅
- https://www.wowhead.com/zone=14082/halls-of-infusion ⏳
- https://www.wowhead.com/zone=14032/algethar-academy ✅
- https://www.wowhead.com/zone=13982/the-nokhud-offensive ✅
- https://www.wowhead.com/zone=13991/brackenhide-hollow ✅
@marcel-dempers
marcel-dempers / devilspie-vscode-transparency.sh
Created September 22, 2019 09:49
How to make VSCode transparent in Linux
#!/bin/bash
sudo apt-get install -y devilspie
mkdir -p ~/.devilspie
echo '
(if (contains (window_class) "Code")
(begin
(spawn_async (str "xprop -id " (window_xid) " -f _KDE_NET_WM_BLUR_BEHIND_REGION 32c -set _KDE_NET_WM_BLUR_BEHIND_REGION 0 "))
(spawn_async (str "xprop -id " (window_xid) " -f _NET_WM_WINDOW_OPACITY 32c -set _NET_WM_WINDOW_OPACITY 0xD8000000"))
@marcel-dempers
marcel-dempers / dockerfile
Last active October 26, 2022 02:38
Mock server for load testing
FROM golang:1.11.10-alpine3.9 as builder
# installing git
RUN apk update && apk upgrade && \
apk add --no-cache git
# setting working directory
WORKDIR /go/src/app
# installing dependencies
@marcel-dempers
marcel-dempers / dockerfile
Last active December 14, 2022 03:54
Static file web server with NGINX
FROM nginx:1.15.8-alpine
#config
copy ./nginx.conf /etc/nginx/nginx.conf
#content, comment out the ones you dont need!
copy ./*.html /usr/share/nginx/html/
#copy ./*.css /usr/share/nginx/html/
#copy ./*.png /usr/share/nginx/html/
#copy ./*.js /usr/share/nginx/html/
@marcel-dempers
marcel-dempers / README.md
Last active February 23, 2018 03:48 — forked from tsaarni/README.md
How to connect to Azure AKS Kubernetes node VM by SSH

How to connect to Azure AKS Kubernetes worker node by SSH

Nodes are not assigned public IP. If you have accessible VM in the same VNET as worker nodes, then you can use that VM as jump host and connect the worker via private IP. Alternatively public IP can be assigned to a worker node. This readme shows how to do that.

Steps how to attach public IP to a worker node

Run this:

@marcel-dempers
marcel-dempers / docker-for-windows-notes.md
Last active March 18, 2018 06:57
Docker for Windows - Installation Notes

Docker for Windows - Notes

Intro

Thought I'd post a note on Docker for Windows setup. Based off our experiences, we've been through the initial alpha - beta to stable versions of Docker for Windows and we've notes various pain points during this time. The idea of this gist is to be able to run through the steps to ensure your Docker on Windows is setup correctly

Here we go

  • If you have any older versions of Docker for Windows (includes Windows Docker Toolbox), you'll want to upgrade