View allAll Photos Tagged Compute

Fermi National Laboratory Grid Computing Center

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

where to put the desks..

Animation shots from computing students

 

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);

}

Modern computing in the 1970's

Source: Carleton College Archives

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

At the National Museum of Computing www.tnmoc.org/

Event Title:Retro Computing

Speaker:Plymouth University/BCS South West

Event Date:21 November 2011, 19:00

Event Location:Sherwell Conference Centre, Plymouth University

Enterprise Computing Conference @ University of Canberra

Profiles of students and faculty in the College of Computing

[165/365]

Spent more or less the whole day working..

this computor allows the staff to track all of nirs trains

At The National Museum of Computing www.tnmoc.org at Bletchley Park, on a trip with Sarah, Jenny and Stephen AKA Spacedog.

1 2 ••• 74 76 78 79 80