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 / 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
@kohlerdominik
kohlerdominik / docker-and-docker-compose-on-wsl.md
Last active December 15, 2018 19:31
Docker & Docker-Compose in WSL engine on windows host
@kohlerdominik
kohlerdominik / gist:12006028a487342bd84f5003e7484499
Last active April 5, 2022 09:18
Raspberry Pi with Raspbian Stretch: use bridge interfaces
sudo apt-get update && sudo apt-get install bridge-utils
sudo nano /etc/network/interfaces
iface eth0 inet manual
iface eth1 inet manual
auto eth0
iface br0 inet manual
bridge_ports eth0 eth1
@kohlerdominik
kohlerdominik / laravel-form-manipulator.js
Last active September 7, 2021 07:22
Laravel Form Manipulator | Multiple submit buttons in one form, each with their own action, target, method and confirmation.
/* Larvel Form Manipulator
* Enables Multiple submit buttons in one form, and manipulates form-action, form-method and crud-method.
* Usage:
* <input type="submit" value="Submit to alternative action" data-submit-action="/new-target">
* <input type="submit" value="Submit to alternative target" data-submit-target="_blank">
* <input type="submit" value="Submit as delete" data-submit-method="delete">
* <input type="submit" value="Submit with confirmation" data-submit-confirmation="Are you sure?">
* Of course it works with laravelcollective forms as well: