Skip to content

Instantly share code, notes, and snippets.

View Electrofenster's full-sized avatar
👨‍💻
Programming

Lars Electrofenster

👨‍💻
Programming
  • /home/evolutio
View GitHub Profile
/*
This is the keymap of /u/deepshitgoeshere!
Layer 1 exists so I can have the symbol positions of QWERTY while having my system in german.
The second layer has all the german umlauts I need and with capital and small letters on the
same layer there is no need to press shift+lower.
This keymap is made to work with software implemented QWERTZ.
The "Gaming" layer is mainly customized for CS:GO.
If you have any question about this keymap feel free to shoot me a message on reddit!
*/
@Electrofenster
Electrofenster / install.md
Last active June 13, 2017 10:22
Mailcow mit OX verwenden und einrichten

Installieren von Mailcow

apt-get purge exim4*
cd ; wget -O - https://github.com/andryyy/mailcow/archive/v0.13.1.tar.gz | tar xfz -
cd mailcow*

mit z.B. vim die mailcow.config bearbeiten (vim mailcow.config)

@Electrofenster
Electrofenster / Git push deployment in 7 easy steps.md
Created September 20, 2016 09:58 — forked from thomasfr/Git push deployment in 7 easy steps.md
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook
@Electrofenster
Electrofenster / MimeType.php
Created June 22, 2016 07:39 — forked from Erutan409/MimeType.php
Mime Type Function for PHP
<?php
function mime_type($file) {
// there's a bug that doesn't properly detect
// the mime type of css files
// https://bugs.php.net/bug.php?id=53035
// so the following is used, instead
// src: http://www.freeformatter.com/mime-types-list.html#mime-types-list

Keybase proof

I hereby claim:

  • I am electrofenster on github.
  • I am evolutio (https://keybase.io/evolutio) on keybase.
  • I have a public key ASDhLTibrUfdQyeDznAVTGJnTp_GjkLB9AG2U_ciP8F9gQo

To claim this, I am signing this object:

@mixin arrow_helper($arrowSize, $arrowColor, $margin, $side, $align) {
@if $side == "top" {
border-bottom-color: $arrowColor;
top: -2 * $arrowSize;
}
@if $side == "bottom" {
border-top-color: $arrowColor;
bottom: -2 * $arrowSize;
}
@if $side == "left" {