This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Stop all containers | |
docker stop $(docker ps -a -q) | |
# Remove all containers | |
docker rm $(docker ps -a -q) | |
# Remove all images | |
docker rmi $(docker images -q) | |
# Any running containers | |
docker ps -a | |
docker images |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dom-module id="mixin-grid"> | |
<template> | |
<style is="custom-style"> | |
:root { | |
/* Basics */ | |
--grid: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Can store data for further Calendar interactions like timespans, extended information for individual dates. | |
* Not used for now | |
**/ | |
class CalendarDates extends JsProxy { | |
@reflectable | |
List years = []; | |
static const maxYear = 2018; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# TODO: for each locale #} | |
<script> | |
{ | |
translations: [ | |
{ | |
abstraction: "payment.subscribe.step2.terms.text", | |
lang: "en", | |
translation: "I accept"}, | |
{ | |
abstraction: "payment.subscribe.step2.terms.text", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import rwmidi.*; | |
MidiInput nanoCntrl, nanoPad; | |
void setup() { | |
// Midi | |
// Show available MIDI output devices here | |
MidiInputDevice devices[] = RWMidi.getInputDevices(); | |
for (int i = 0; i < devices.length; i++) { | |
println(i + ": " + devices[i].getName()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mkdir /mnt/root | |
#on 64bit | |
sudo mount -t ext4 /dev/sda1 /mnt/root | |
#on 32bit | |
sudo mount -t ext3 /dev/sda1 /mnt/root | |
sudo mount -t proc none /mnt/root/proc | |
sudo mount -o bind /dev /mnt/root/dev |
NewerOlder