Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
// MIT license | |
(function() { | |
var lastTime = 0; | |
var vendors = ['ms', 'moz', 'webkit', 'o']; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
/* ========================================================================== | |
A collection of functions for color adjustments | |
Usage: adjust-lightness(#000, 20%) { } | |
========================================================================== */ | |
// a genericized version of lighten/darken so that negative values can be used. | |
@function adjust-lightness($color, $amount) { | |
//@debug $color; @debug $amount; | |
@return adjust-color($color, $lightness: $amount); | |
} |
#### Boxstarter and Chocolatey | |
## Restore AppData before running | |
## RUN AS ADMIN! | |
## choco install - install | |
## choco upgrade - install or upgrade | |
## cinst - install | |
## cinstm - install or upgrade | |
## Cmd run with reboot START http://boxstarter.org/package/url?C:\boxstarter.txt | |
## Cmd run without reboot START http://boxstarter.org/package/nr/url?C:\boxstarter.txt | |
## START http://boxstarter.org/package/url?https://gist.githubusercontent.com/Quass1m/8e690015146a064cac47578f0e0ef835/raw/084d6e12c1c908d125e7459e3188c080ac7cf83f/Boxstarter.txt |
#!/bin/sh | |
# Homebrew Script for OSX | |
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh` | |
echo "Installing brew..." | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo "Installing brew cask..." | |
brew tap homebrew/cask |
#!/bin/bash | |
apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common sudo | |
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | sudo apt-key add - | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(. /etc/os-release; echo "$ID") $(lsb_release -cs) stable" | |
apt-get update |
############################################################## | |
# Description: Boxstarter Script | |
# Author: Gil Alvaro | |
# Last Updated: 2020-01-08 | |
# | |
# Install boxstarter: | |
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# You might need to set: Set-ExecutionPolicy RemoteSigned | |
# |
We need to use so called Dynamic DNS (DDNS) to create and dynamically update a mapping between a chosen domain name and an “external” IP address of our Raspberry Pi (i.e. router IP address).