Beginning of research about drag'n'drop user experience using Jquery & Jquery UI
Forked from Thibaud B.'s Pen Drag'n'drop events.
A Pen by Captain Anonymous on CodePen.
let widget = await createWidget() | |
if (config.runsInWidget) { | |
Script.setWidget(widget) | |
} else { | |
widget.presentMedium() | |
} | |
Script.complete() |
// (*) All in the spirit of open-source and open-hardware | |
// Janost 2016 Sweden | |
// The Tiny-TS Touch Synthesizer | |
// https://janostman.wordpress.com/the-tiny-ts-diy-touch-synthesizer/ | |
// Copyright 2016 DSP Synthesizers Sweden. | |
// | |
// Author: Jan Ostman | |
// | |
// This program is free software: you can redistribute it and/or modify |
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
# generate server.xml with the following command: | |
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
# run as follows: | |
# python simple-https-server.py | |
# then in your browser, visit: | |
# https://localhost:4443 | |
import BaseHTTPServer, SimpleHTTPServer | |
import ssl |
#include "MFRC522/MFRC522.h" | |
/* | |
Function Core Pin MRFC522 Pin | |
Reset D2 RST | |
SPI SS D1 SDA | |
SPI MOSI A5 MOSI | |
SPI MISO A4 MISO | |
SPI SCK A3 SCK | |
*/ |
Beginning of research about drag'n'drop user experience using Jquery & Jquery UI
Forked from Thibaud B.'s Pen Drag'n'drop events.
A Pen by Captain Anonymous on CodePen.
Circuit: | |
* Ethernet shield attached to pins 10, 11, 12, 13 | |
created 21 May 2011 | |
by Tom Igoe | |
This code is in the public domain. | |
*/ | |
#include <SPI.h> |
""" | |
Author: [email protected] | |
to run you will need to install the following: | |
pip install requests | |
pip install simplejson | |
get the auth token and device id by sniffing the nike app syncing | |
with api.nike.com with charles |
Single line, no attribution: | |
<figure class="quote"> | |
<blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote> | |
</figure> | |
Single line, with attribution and optional cite: | |
<figure class="quote"> | |
<blockquote>It is the unofficial force—the Baker Street irregulars.</blockquote> |
@media only screen and (min-width: 320px) { | |
/* Small screen, non-retina */ | |
} | |
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px), | |
only screen and ( min--moz-device-pixel-ratio: 2) and (min-width: 320px), | |
only screen and ( -o-min-device-pixel-ratio: 2/1) and (min-width: 320px), |