Skip to content

Instantly share code, notes, and snippets.

View svondervoort's full-sized avatar
👾
Just playing around

Sander van de Vondervoort svondervoort

👾
Just playing around
  • The Netherlands
View GitHub Profile
@SierraNL
SierraNL / NUC.md
Last active September 15, 2021 20:31
Intel NUC DN2820FYKH: KodiBuntu, Netflix through ChromeLauncher, Steam (in-home streaming), PS3 Sixaxis (DS) controllers

##Introduction

This is basicly a note to self, on how I setup my NUC. But I like to share it, since there is no complete step-by-step tutorial that combines all these features.

This Gist is based on tons of tutorials and forumposts, which I will try to mention all in this list:

@tobiasahlin
tobiasahlin / transitions.scss
Created August 6, 2014 12:43
Sass multiple transitions mixin
// Usage: @include transition(width, height 0.3s ease-in-out);
// Output: -webkit-transition(width 0.2s, height 0.3s ease-in-out);
// transition(width 0.2s, height 0.3s ease-in-out);
//
// Pass in any number of transitions
@mixin transition($transitions...) {
$unfoldedTransitions: ();
@each $transition in $transitions {
$unfoldedTransitions: append($unfoldedTransitions, unfoldTransition($transition), comma);
}