I hereby claim:
- I am rupl on github.
- I am rupl (https://keybase.io/rupl) on keybase.
- I have a public key ASBJ5Kg18-StJUZUlN_qgReYd2buApAqCdTjui4FVxqEago
To claim this, I am signing this object:
| /*! | |
| * LilyPad Arduino Biking Jacket | |
| * | |
| * Each sleeve has a button and indicator light near the cuff. | |
| * - Pressing the a button turns the blinker on for a few cycles. | |
| * - Hold the same button to stop it sooner. | |
| * - Pressing both buttons turns on hazard mode. | |
| * - Hold one button to disable hazard mode. | |
| * | |
| * Made with <3 for Karin :) |
| #!/usr/bin/perl | |
| ;;;;;; | |
| ;;;;;;;;;;; | |
| ;;;;;;;;;;;;;;; | |
| ;;;;;;;;;;;;;;;;; | |
| ;;;;;;;;;;;;;;;;;;; | |
| ;;;;;;;;;;;;;;;;;;;; | |
| ;;;;;;;;;;;;;;;;;;;;; | |
| +$I=sub{+s+^+ ;;;;;;; ;;;;;;;;; | |
| $"x$_[1]+gem;$/x$_# ;;;; ;;;;;;;; |
| /** | |
| * @file | |
| * Gulpfile that controls frontend development tasks. Just the basics! | |
| * | |
| * Installation: type `npm install` in your console. | |
| * Usage: type `gulp` in your console. | |
| */ | |
| /* jslint node: true */ | |
| 'use strict'; |
| /** | |
| * Code to run a basic automatic greenhouse. | |
| * | |
| * - Temp/humidity sensor | |
| * - Soil moisture sensor | |
| * - Water pump | |
| * - Ventilation fan | |
| * | |
| * @see http://saettfro.com/vaxthus/ | |
| */ |
| background: linear-gradient(270deg, #430fe4, #234ae8, #15a32d, #f55519, #d71abf); | |
| background-size: 1000% 1000%; | |
| -webkit-animation: AnimationName 6s ease infinite; | |
| -moz-animation: AnimationName 6s ease infinite; | |
| -o-animation: AnimationName 6s ease infinite; | |
| animation: AnimationName 6s ease infinite; | |
| @-webkit-keyframes AnimationName { | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} |
| // Load fonts async by default | |
| // Load sync from SW cache when available. | |
| // | |
| // Snippet assumes your Service Worker caches fonts as part of installation, so that | |
| // an 'activated' Service Worker means the fonts are cached with 100% confidence. | |
| if ( | |
| 'serviceWorker' in navigator && | |
| navigator.serviceWorker.controller !== null && | |
| navigator.serviceWorker.controller.state === 'activated' | |
| ) { |
| /** | |
| * @file | |
| * Simulating user actions with CasperJS. This script explores the ability to | |
| * use Casper for navigation just like a user would: clicking the page and | |
| * entering text to submit a form. This script accompanies a blog post from | |
| * Four Kitchens: | |
| * | |
| * @see http://fourword.fourkitchens.com/article/simulate-user-actions-casperjs | |
| */ |
| /** | |
| * @file | |
| * Testing a demo of Drupal. The script will log in and check for various | |
| * features in Drupal core. This demo was inspired by a similar script for | |
| * a Wordpress site. The original script was written by Henrique Vicente. | |
| * | |
| * @see https://github.com/henvic/phantom-casper-simple-talk/blob/master/wordpress.js | |
| */ | |
| // Set up variables to visit a URL and log in. |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * @file | |
| * Testing to see if Picturefill selects the right source at multiple | |
| * viewport sizes. | |
| */ | |
| // Define the suite of tests and give it the following properties: | |
| // - Title, which shows up before any of the pass/fails. | |
| // - Number of tests, must be changed as you add tests. | |
| // - suite(), which contains all of your tests. |