View spotihosts
127.0.0.1 media-match.com | |
127.0.0.1 adclick.g.doublecklick.net | |
127.0.0.1 www.googleadservices.com | |
127.0.0.1 open.spotify.com | |
127.0.0.1 pagead2.googlesyndication.com | |
127.0.0.1 desktop.spotify.com | |
127.0.0.1 googleads.g.doubleclick.net | |
127.0.0.1 pubads.g.doubleclick.net | |
127.0.0.1 audio2.spotify.com | |
127.0.0.1 www.omaze.com |
View hc-548.ino
/* | |
+-----+ | |
+----[PWR]-------------------| USB |--+ | |
| +-----+ | | |
| GND/RST2 [ ][ ] | | |
| MOSI2/SCK2 [ ][ ] A5/SCL[ ] | C5 | |
| 5V/MISO2 [ ][ ] A4/SDA[ ] | C4 | |
| AREF[ ] | | |
| GND[ ] | | |
| [ ]N/C SCK/13[ ] | B5 |
View playerController.cpp
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"); |
View HC-SR04.ino
/* | |
+-----+ | |
+----[PWR]-------------------| USB |--+ | |
| +-----+ | | |
| GND/RST2 [ ][ ] | | |
| MOSI2/SCK2 [ ][ ] A5/SCL[ ] | C5 | |
| 5V/MISO2 [ ][ ] A4/SDA[ ] | C4 | |
| AREF[ ] | | |
| GND[ ] | | |
| [ ]N/C SCK/13[ ] | B5 |
View widgets.less
// Variables | |
@widget-padding: 10px; | |
@widget-background-color @whiter; | |
@widget-text-color: @brand-secondary; | |
@widget-inverted-background-color: @brand-primary; | |
@widget-inverted-text-color: @white; |
View greeklish.php
<?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', |