View allAll Photos Tagged Compute

Enterprise Computing Conference @ University of Canberra

Santas at the National Zoo. Santarchy, Washington, DC.

We have better Internet connectivity in France than I have at work or home in England. We also have Wifi by the swimming pool. Sadly we have less much reliable electricity.

 

Note the hi-tech use of pen and paper.

Animation shots from computing students

Testing the intercom in the basement

Calvin posing with my laptop.

Fermi National Laboratory Grid Computing Center

Event Title:Retro Computing

Speaker:Plymouth University/BCS South West

Event Date:21 November 2011, 19:00

Event Location:Sherwell Conference Centre, Plymouth University

No interactive thingymabobs here, but maybe that's ok since touchscreens weren't quite invented yet.

where to put the desks..

International Symposium of Wearable Computing '12, Newcastle www.iswc.net/iswc12/

Animation shots from computing students

Chez Gandolfo. Nino, Gloria Patti and Domenico Sciajno.

 

int yellowPin = 13;

int redPin = 12; // Red LED connected to digital pin 12

int greenPin = 11; // Green LED connected to digital pin 11

 

int inPin = 2; // choose the input pin (for a pushbutton)

int val = 0; // variable for reading the pin status

 

void setup() {

pinMode(redPin, OUTPUT); // sets the digital pin as output

pinMode(greenPin, OUTPUT); // sets the digital pin as output

pinMode(yellowPin, OUTPUT);

pinMode(inPin, INPUT); // declare pushbutton as input

Serial.begin(9600);

 

}

 

void loop(){

val = digitalRead(inPin); // read input value

if (val == HIGH) { // check if the input is HIGH (button released)

blink01();

// digitalWrite(ledPin, LOW); // turn LED OFF

Serial.println("blink!!");

}

else {

nothing01();

Serial.println("off");

}

}

 

void blink01() {

digitalWrite(redPin, HIGH); // sets the Red LED on

digitalWrite(greenPin, HIGH); // sets the Green LED on

digitalWrite(yellowPin, HIGH);

delay(500);

digitalWrite(redPin, LOW); // sets the LED off: 0 V

digitalWrite(greenPin, LOW); // sets the LED off: 0 V

digitalWrite(yellowPin, LOW); // sets the LED off: 0 V

delay(500);

}

 

void nothing01() {

digitalWrite(redPin, LOW); // sets the LED off: 0 V

digitalWrite(greenPin, LOW); // sets the LED off: 0 V

digitalWrite(yellowPin, LOW); // sets the LED off: 0 V

delay(500);

}

Profiles of students and faculty in the College of Computing

Modern computing in the 1970's

Source: Carleton College Archives

International Symposium on Grid Computing 2008 Chiang kai shek memorial hall

International Symposium of Wearable Computing '12, Newcastle www.iswc.net/iswc12/

International Symposium of Wearable Computing '12, Newcastle www.iswc.net/iswc12/

University of Gloucestershire open day at Park Campus, Cheltenham.

 

Picture by Clint Randall www.pixelprphotography.co.uk

1 2 ••• 70 71 73 75 76 ••• 79 80