Skip to content

Instantly share code, notes, and snippets.

View kohlerdominik's full-sized avatar

Dominik Kohler kohlerdominik

  • Lucerne, Switzerland
View GitHub Profile
@kohlerdominik
kohlerdominik / bucket-cors.json
Last active March 13, 2024 07:31
Google Cloud Storage Bucket - List all files in the bucket in the Browser (HTML/Javascript)
[
{
"maxAgeSeconds": 60,
"method": [
"GET"
],
"origin": [
"*"
],
"responseHeader": [
@kohlerdominik
kohlerdominik / docker-compose.yml
Created April 8, 2021 13:48
Docker Compose for node workspace
# docker-compose run workspace
services:
workspace:
image: node:slim
user: "node"
volumes:
- ${PWD}:/home/node/app:delegated
working_dir: /home/node/app
command: bash
@kohlerdominik
kohlerdominik / closeApplication.ps1
Created January 5, 2021 15:58
Gracefully terminate applications from powershell
# This script gracefully terminates all processes with the given name (first parameter) when it's run.
# It will also answer to a confirm message, if the process has one, by a given hotkey.
#
#
# signature: closeApplication.ps1 $ProcessName $ConfirmHotkey
#
#
# some simple examples how to use it:
# closeApplications.ps1 'notepad' close all open instances with the process name 'notepad' (you should try this)
# closeApplications.ps1 'winword' '%Y' close all open instances of word and and send ALT+Y if a confirmation window pops up
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kohlerdominik
kohlerdominik / index.js
Last active December 15, 2020 18:54
Google Cloud Function to parse and send a Stackdriver Incident to Google Chat (Hangouts)
/*
Example Request
{
"incident":{
"incident_id":"0.123",
"resource_id":"",
"resource_name":"some-resource-name",
"resource":{
"type":"gce_instance",
@kohlerdominik
kohlerdominik / bitbucket-pipelines.yml
Created January 13, 2020 08:55
Simple PHPUnit Testing in Bitbucket Pipeline
pipelines:
pull-requests:
'**':
- step:
name: Build Testing
image: composer:latest
artifacts:
- "vendor/**"
script:
# Install php dependencies
@kohlerdominik
kohlerdominik / reconnect-networkd-drive.bat
Last active December 15, 2018 11:37
Reconnect a network from batch. Often this is necessary if you use network drives in a place where you have only wireless access, so when windows initializes the network is not ready yet.
:: HOW-TO ::
:: Copy this file to any directory in your computer
:: Adjust drive letter (dletter) and drive path (dpath)
:: Create a shortcut to the file
:: Change the run mode to minimized in shortcut properties
:: If you want to execute in on start: copy it to "shell:startup" (WIN+R)
:: Set the drive-letter and drive-path
SET dletter=Z:
@kohlerdominik
kohlerdominik / mbus-vif-lookup-table.php
Created December 12, 2018 18:38
Lookup Table for Mbus VIF Field
<?php
return
[ // Type Unit Multiplicator
1 => ['Energy', 'Wh', '0.01'],
2 => ['Energy', 'Wh', '0.1'],
3 => ['Energy', 'Wh', '1'],
4 => ['Energy', 'Wh', '10'],
5 => ['Energy', 'Wh', '100'],
6 => ['Energy', 'Wh', '1000'],
@kohlerdominik
kohlerdominik / gpio.sh
Last active November 27, 2018 19:23
Raspberry GPIO Helper with SYSFS Commands
#!/bin/sh
# $1 mode
# $2 gpio
# $3 write: value 0/off | 1/on
usage() {
# command help:
echo "
@kohlerdominik
kohlerdominik / raspberry-enable-serial-interface-uart.sh
Created November 19, 2018 09:41
Enable Serial Interface via UART for the Raspberry PI
#!/bin/bash
# # # # # # # # # # # # # # # # # # #
# Enable Serial Interface via UART #
# # # # # # # # # # # # # # # # # # #
# Dominik Kohler @ 19.11.2018
# Tested on Raspbian Stretch (9.4)