Skip to content

Instantly share code, notes, and snippets.

View y-lohse's full-sized avatar

Yannick Lohse y-lohse

View GitHub Profile
@KittyGiraudel
KittyGiraudel / en.yml
Last active February 24, 2018 10:46
Here is an easy way to handle i18n in a Jekyll website.
# _data/en.yml
header:
title: "Hello world!"
@F1LT3R
F1LT3R / self-hosted-email-server.md
Last active June 20, 2023 03:27
Self-Hosted Email Server

#Self-Hosted Email Server

This guide shows you how to set up a self-hosted email server.

##The Stack

Stack Diagram

###At The Core

@staltz
staltz / introrx.md
Last active July 4, 2024 10:11
The introduction to Reactive Programming you've been missing
@termi
termi / crossBrowser_initKeyboardEvent.js
Last active June 13, 2023 02:01
Cross-browser initKeyboardEvent
void function() {//closure
var global = this
, _initKeyboardEvent_type = (function( e ) {
try {
e.initKeyboardEvent(
"keyup" // in DOMString typeArg
, false // in boolean canBubbleArg
, false // in boolean cancelableArg
, global // in views::AbstractView viewArg
@conorbuck
conorbuck / angle-between-points.js
Created May 5, 2012 22:51
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};