Microsoft's Vision for 2019 from Jonas Wisser on Vimeo.
微軟的未來願景,話說當初進研究所時,也看了DoCoMo的版本,雖說是好幾年前的,但老實說,微軟拍的其實沒太多的新意,且太多的資訊操作,太多平面介面的運作,若真的未來是這樣,生活周遭就是一堆擾人的資訊,我可能會得噪慮症,這篇影片記錄起來,引以為戒...
Microsoft's Vision for 2019 from Jonas Wisser on Vimeo.
LAÏKA (SHORT VERSION) from Guillaume Blanchet on Vimeo.


int ledPin = 2; // LED connected to digital pin 2
void setup()
{
pinMode(ledPin, OUTPUT); // sets the digital pin as output
}
void loop()
{
digitalWrite(ledPin, HIGH); // sets the LED on
delay(1000); // waits for a second
digitalWrite(ledPin, LOW); // sets the LED off
delay(1000); // waits for a second
}
