rabajaka

TwitterFacebook

Robert

nerd

Get flash to fully experience Pearltrees

Lasca Tables by Marco Sousa Santos

Like a polished pebble from a riverbed Marco Sousa Santos' Lasca tables are softly rounded but unlike them, rich in texture thanks to its cork construction. (Click the images below for full sized images) Made of agglomerated cork with a lacquered MDF table top, Lasca comes in different shapes and sizes. Says Lasca producer Materia, "Lasca functions as a support or work surface. Steadier than a tray, more practical and unrestricting than a table, you can use it to rest a TV remote or glass, prop up a computer or set your notebook or reading material down." http://mocoloco.com/archives/023731.php

Structure of a program

http://www.cplusplus.com/doc/tutorial/program_structure/ Probably the best way to start learning a programming language is by writing a program. Therefore, here is our first program: The first panel (in light blue) shows the source code for our first program. The second one (in light gray) shows the result of the program once compiled and executed. To the left, the grey numbers represent the line numbers - these are not part of the program, and are shown here merely for informational purposes. The way to edit and compile a program depends on the compiler you are using.
Reference Language | Libraries | Comparison | Changes The setup() function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup function will only run once, after each powerup or reset of the Arduino board. Example int buttonPin = 3; void setup() { Serial.begin(9600); pinMode(buttonPin, INPUT); } void loop() { // ... } http://arduino.cc/en/Reference/Setup

Setup