Skip to content

Instantly share code, notes, and snippets.

View koenhendriks's full-sized avatar
🏠
Working from home

Koen Hendriks koenhendriks

🏠
Working from home
View GitHub Profile
@koenhendriks
koenhendriks / keybase.md
Last active May 15, 2023 07:06
keybase.md

Keybase proof

I hereby claim:

  • I am koenhendriks on github.
  • I am koen_hendriks (https://keybase.io/koen_hendriks) on keybase.
  • I have a public key whose fingerprint is 0A34 B569 8C26 1565 0805 4973 4850 1615 D891 7C0C

To claim this, I am signing this object:

alias ..="cd .."
alias ...="cd ../.."
alias routes='artisan route:list'
alias h='cd ~'
alias c='clear'
alias art=artisan
alias dump='composer dump-autoload'
alias ide='php artisan clear-compiled && php artisan ide-helper:generate && php artisan optimize'
alias phpspec='vendor/bin/phpspec'
alias phpunit='vendor/bin/phpunit'
@koenhendriks
koenhendriks / workspace_switch.sh
Created November 26, 2022 13:08
Workspace switcher from CLI for CInnamon
#!/usr/bin/env bash
current=`xdotool get_desktop`
max=`xdotool get_num_desktops`
if [ "$1" = "left" ]; then
desktop=`expr $current - 1`
elif [ "$1" = "right" ]; then
desktop=`expr $current + 1`
else
@koenhendriks
koenhendriks / Laravel Docroot IspConfig 3.1 Nginx
Last active June 3, 2022 20:20
Laravel Docroot IspConfig 3.1 Nginx
location / {
root {DOCROOT}public
if ($scheme != "https") {
rewrite ^ https://$http_host$request_uri? permanent;
}
try_files /public/$uri /public/$uri/ /public/index.php?$query_string;
}
@koenhendriks
koenhendriks / export.json
Created October 26, 2021 13:17
Sloppy Matrix json export
{
"project": "matrix-chat",
"services": [
{
"id": "matrix",
"apps": [
{
"id": "synapse-server",
"image": "matrixdotorg/synapse",
"cmd": "./start.py generate && ./start.py run",
@koenhendriks
koenhendriks / iptables.sh
Created March 19, 2019 13:39
Snippet openvpn iptables
iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o venet0 -j MASQUERADE
@koenhendriks
koenhendriks / IRC quotes
Last active March 30, 2018 09:40
IRC quotes (irc.freenode.net #deltion)
IRC #deltion Quotes
24 September 2013
10:05 <@Chameleon> morge
10:06 <@Chameleon> happy bday corne :D
10:06 < corne> ty
10:07 <@Chameleon> dus heb je al een highchart voor me gemaakt met goede x en y assen ?
10:07 < corne> en hey
10:07 < corne> euhm
@koenhendriks
koenhendriks / TempLCD.ino
Last active December 23, 2016 12:20
Arduino file for reading temperature and displaying on LCD
/*
TempLcd.ino
2017 Copyright (c) Koen Hendriks. All right reserved.
Connect LCD:
VCC : 5v
GND : GND
SDA : A4 Arduino
SCL : A5 Arduino
@koenhendriks
koenhendriks / Extract Linux
Created October 6, 2014 07:02
Extract Function Linux Bash
# Extract archives - use: extract <file>
# Based on http://dotfiles.org/~pseup/.bashrc
function extract() {
if [ -f "$1" ] ; then
local filename=$(basename "$1")
local foldername="${filename%%.*}"
local fullpath=`perl -e 'use Cwd "abs_path";print abs_path(shift)' "$1"`
local didfolderexist=false
if [ -d "$foldername" ]; then
didfolderexist=true
@koenhendriks
koenhendriks / gnomeShot.sh
Last active September 21, 2016 09:56
Screenshot and upload script
!/bin/sh
FILE="$(date +%F_%H-%M-%S)-scrot.png"
gnome-screenshot -f $FILE -a && ~/Documents/screenshot.sh ~/$FILE | xclip -selection clipboard && mv ~/$FILE ~/shots/