Skip to content

Instantly share code, notes, and snippets.

@fcalderan
fcalderan / meteotweet.php
Last active December 5, 2017 23:38
Arduino sketch code and PHP code for H-art tweeting weather station. This projects was tested with an Arduino UNO + ethernet shield + DHT22 sensor.
<?php
function roundNum($n) { return round(10 * $n)/10; }
// Insert your keys/tokens
$consumerKey = '<your-key>';
$consumerSecret = '<your-key>';
$oAuthToken = '<your-key>';
$oAuthSecret = '<your-key>';
@fcalderan
fcalderan / perftest.sh
Last active March 8, 2017 14:37
A small bash utility for testing slower connection. Use chmod +x perftest.sh to make the script executable. Thanks to Matteo Rosati for sharing basic commands
#!/bin/sh
CMD="$1"
RATE="$2"
DELAY="$3"
if [ "$RATE" = "" ] ; then
RATE=500
fi
if [ "$DELAY" = "" ] ; then
@fcalderan
fcalderan / ftf.sh
Last active February 25, 2016 10:32
From the Front Early Bird Detector
#!/bin/sh
# set last 2 digits of the current year
year=16
# set terminal title
echo "\033]0;FTF Early Bird Checker\007";
@fcalderan
fcalderan / Slideshow-with-CSS3-Animations.markdown
Last active December 25, 2015 16:19
A Pen by Fabrizio Calderan.

Slideshow with CSS3 Animations

A simple proof-of-concept: a slideshow animation using CSS3 only

See the demo by Fabrizio Calderan.

License.

@fcalderan
fcalderan / _mixin.scss
Created October 4, 2012 14:20 — forked from electricg/_mixin.scss
My SCSS mixin
@mixin box-sizing ($box) {
-webkit-box-sizing: $box;
-moz-box-sizing: $box;
box-sizing: $box;
}
@mixin border-radius ($val) {
-webkit-border-radius: $val;
-moz-border-radius: $val;
border-radius: $val;
@fcalderan
fcalderan / mq.css
Created October 4, 2012 09:28 — forked from chriscoyier/mq.css
@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),
@fcalderan
fcalderan / inline-block-example.html
Created July 21, 2011 10:07
A helper class for an easy and crossbrowser inline-blocks usage (with H5BP).
<ul class="ibw">
<li>inline block</li>
<li>inline block</li>
<li>inline block</li>
</ul>
<section class="ibw">
<article class="ib">...</article>
<aside class="ib">...</aside>
</section>
@fcalderan
fcalderan / deferred-img.js
Created May 6, 2011 09:25
Image loader / preloader achieved by deferred objects in jQuery 1.6
/**
* For a current project I need to wait to execute a code until some images have been loaded.
* Beside, I also need to execute a callback (in my specific code I want to show the image
* with a fade-in effect) every time a single image has been loaded.
*
* So basically I used two deferred objects: the nested one which is resolved for a single
* image successfull load event (or when image has been discarded) and the outside one,
* which is resolved when all deferred objects on single images have been resolved or rejected.
*
* This snippet also takes care all frequent issues when trying to load an image (excessive
@fcalderan
fcalderan / JamiroquaiVideos
Created December 10, 2010 11:22
Typical Jamiroquai video explained by a context-free grammar
# Description:
# Typical Jamiroquai video explained by a context-free grammar (just for fun)
JV ::= <epsilon> | <Someone> <Does> <Something> in a <Place> | <Exceptions> ;
Someone ::= He | the invisible man ;
SomeoneElse ::= Him | another invisible man ;
Does ::= (runs away with | follows | drives) a ;
Something ::= (porsche | ferrari | moto | helicopter) followed by <SomeoneElse> <Consequence> ;
Consequence ::= wasting fuel | polluting environment | making roads insecure ;
Place ::= dull desertic land | desert | bright floor;
@fcalderan
fcalderan / SassMeister-input-HTML.html
Last active August 29, 2015 14:24
Generated by SassMeister.com.
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>