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
/* | |
+-----+ | |
+----[PWR]-------------------| USB |--+ | |
| +-----+ | | |
| GND/RST2 [ ][ ] | | |
| MOSI2/SCK2 [ ][ ] A5/SCL[ ] | C5 | |
| 5V/MISO2 [ ][ ] A4/SDA[ ] | C4 | |
| AREF[ ] | | |
| GND[ ] | | |
| [ ]N/C SCK/13[ ] | B5 |
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
using UnityEngine; | |
using System.Collections; | |
public class playerController : MonoBehaviour { | |
private Animator animator; | |
// Use this for initialization | |
void Start () { animator = this.GetComponent(); } | |
// Update is called once per frame | |
void Update () { | |
float v = Input.GetAxis("Vertical"); |
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
/* | |
+-----+ | |
+----[PWR]-------------------| USB |--+ | |
| +-----+ | | |
| GND/RST2 [ ][ ] | | |
| MOSI2/SCK2 [ ][ ] A5/SCL[ ] | C5 | |
| 5V/MISO2 [ ][ ] A4/SDA[ ] | C4 | |
| AREF[ ] | | |
| GND[ ] | | |
| [ ]N/C SCK/13[ ] | B5 |
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
// Variables | |
@widget-padding: 10px; | |
@widget-background-color @whiter; | |
@widget-text-color: @brand-secondary; | |
@widget-inverted-background-color: @brand-primary; | |
@widget-inverted-text-color: @white; |
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
<?php | |
// Based on http://www.freestuff.gr/forums/viewtopic.php?p=194579#194579 | |
function make_greeklish($text) { | |
$expressions = array( | |
'/[αΑ][ιίΙΊ]/u' => 'e', | |
'/[οΟΕε][ιίΙΊ]/u' => 'i', | |
'/[αΑ][υύΥΎ]([θΘκΚξΞπΠσςΣτTφΡχΧψΨ]|\s|$)/u' => 'af$1', | |
'/[αΑ][υύΥΎ]/u' => 'av', | |
'/[εΕ][υύΥΎ]([θΘκΚξΞπΠσςΣτTφΡχΧψΨ]|\s|$)/u' => 'ef$1', | |
'/[εΕ][υύΥΎ]/u' => 'ev', |