Nome | Tag finale | Descrizione |
---|---|---|
<!DOCTYPE> | No |
This file contains 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
#include <IRremote.h> | |
#include <Servo.h> | |
#include <SoftwareSerial.h> | |
//link types: | |
//echo,IR,serial(BT),photores | |
const int speed1 = 30; | |
const int speed2 = 130; | |
//serial(BT) |
This file contains 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
[ | |
{"key": "320x480", "name": "Apple iPhone 3GS", "width": 320, "height": 480}, | |
{"key": "320x480", "name": "Apple iPhone 4", "width": 320, "height": 480}, | |
{"key": "320x568", "name": "Apple iPhone 5", "width": 320, "height": 568}, | |
{"key": "375x667", "name": "Apple iPhone 6", "width": 375, "height": 667}, | |
{"key": "414x736", "name": "Apple iPhone 6 Plus", "width": 414, "height": 736}, | |
{"key": "384x640", "name": "BlackBerry Z10", "width": 384, "height": 640}, | |
{"key": "360x640", "name": "BlackBerry Z30", "width": 360, "height": 640}, | |
{"key": "384x640", "name": "Google Nexus 4", "width": 384, "height": 640}, | |
{"key": "360x640", "name": "Google Nexus 5", "width": 360, "height": 640}, |
This file contains 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
# Italian translation | |
# vim: ft=jproperties | |
commonNavbarToggle = Espandi/riduci menu | |
commonNavbarHome = Home | |
commonNavbarText = Testi | |
commonNavbarAudio = Audio | |
commonNavbarVideo = Video | |
commonNavbarApps = App | |
commonNavbarAll = Tutto il contenuto |
This file contains 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
#!/bin/bash | |
### Check the DIR | |
DIR=$(git rev-parse --show-toplevel) | |
### Composer update | |
echo "Updating Composer" | |
if [ -e "$DIR/composer.json" ]; then | |
if [ -d "$DIR/vendor" ]; then | |
composer install |
This file contains 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
#!/bin/bash | |
# file name: lesscdir | |
# Compile every .less found under a specified folder | |
# $1 is the folder to search | |
# $2 allows to use a lessc parameters for compiling | |
if [[ -z $1 ]];then | |
echo 'Specify a directory to search' | |
exit |