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 / 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 / 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)
@kohlerdominik
kohlerdominik / minmax.awk
Last active September 10, 2018 14:01
Find Min, Max, Avg and Sum of column with a simple input. See usage example for more information
#!/usr/bin/awk -f
# Usage example:
# get all of first column: ./minmax awk data.txt
# set a custom field separator (default: ,): ./minmax.awk -v fs=":" data.txt
# get all of the fourth column: ./minmax.awk -v column="4" data.txt
# get min of the first column: ./minmax.awk -v type="min" data.txt
# get min of the fourth column: ./minmax.awk -v column="4" -v type="min" data.txt
#
# valid "column": 1..no