BBC News reports on Give Me My Data. Their website and video player is pretty clunky, and while they avoid crediting the developer, its still a nice plug to wake up to.
http://news.bbc.co.uk/2/hi/programmes/click_online/8744514.stm
Tag: code
Schematic for You Never Close Your Eyes Anymore
“Open sourcing” the schematic for the electronic components for You Never Close Your Eyes Anymore.
Products:
RBBB boards (Arduino clone)
custom-designed circuits
– female headers
– TIP31 transistor
– 6-wire Unipolar Stepper motor (48 step Nippon Electric Pulse Motor)
– ULN2803A Darlington Array
– hook-up wire
– various resistors
– LEDs
used camera lenses
aluminum “flat bar”
hose clamps
rubber wine corks
various mounting hardware
Die peinlichsten Einträge bei Facebook, StudiVZ und Twitter
Give Me My Data mentioned in a Bild article:
Die peinlichsten Einträge bei Facebook, StudiVZ und Twitter The most embarrassing messages on Facebook, StudiVZ, and Twitter (English), May 22, 2010
(translated from German) “Many users are unaware that their comments will be permanently stored in networks. For example Facebook can retrieve all stored Stautusmeldungen. The U.S. Professor Owen Mundy has a developed application, Facebook members ever entered all the data and displays the posts. Under “Select Data”, you select which data you want to see (for example, personal data, status messages). Here also dive old, long deleted on posts, which are provided with a time code. Facebook apparently never forgets.”
New yourarthere.net website is live
After 4 months the new yourarthere.net website and member-run content management system is now live. Thanks to Braylin and Brittany Morales, Beth Lee, and Chris Cumbie for all their hard work.
The site is valid XHTML/CSS and runs on PHP/MySQL using the Codeigniter framework. All the details from our research from inception onward are archived here.
This site is based around the idea that members should have control of the content on the website. Every member has a profile where they can add images, text, tags, and events to promote their artwork or group. Members can create a new profile for every domain they host with yourarthere.nets.
Hello World
Considering sharing the source code behind Give Me My Data on GitHub. Looks like its great for archiving, improving, and sharing…
“Facebook’s Disconnect: Open Doors, Closed Exits” – TechCrunch
More press for Give Me My Data, this time by Rohit Khare from TechCrunch (thanks for the note Evan.).
“Give Me My Data has a more open-ended design that supports exploration and experimentation, in part because it sports an impressive array of formats to download your friend lists and other information for use in other projects such as visualization and charting. Owen Mundy at Florida State originally developed it for his own use, but “this week it kind of exploded because of the interface changes.” That could either be a sign of broader awareness of how much data users share with Facebook; or it could be the acute interest users have in putting profile data that Facebook “lost” right back onto Facebook (a feature that may be coming soon).”
Fading an LED with PWM and a Potentiometer
Using a potentiometer and PWM on an Arduino to fade an LED.
-
-
/* POT to LED test -> by Owen Mundy March 11, 2010
-
from: http://itp.nyu.edu/physcomp/Labs/AnalogIn
-
—————————————————————*/
-
-
int potPin = 0; // Analog input pin that the potentiometer is attached to
-
int potValue = 0; // value read from the pot
-
int led = 9; // PWM pin that the LED is on. n.b. PWM 0 is on digital pin 9
-
-
void setup() {
-
// initialize serial communications at 9600 bps:
-
Serial.begin(9600);
-
// declare the led pin as an output:
-
pinMode(led, OUTPUT);
-
}
-
-
void loop() {
-
potValue = analogRead(potPin); // read the pot value
-
analogWrite(led, potValue/4); // PWM the LED with the pot value (divided by 4 to fit in a byte)
-
Serial.println("hello"); // print the pot value back to the debugger pane
-
delay(10); // wait 10 milliseconds before the next loop
-
}
-
Here is the schematic for the above project.
Using PWM and a potentiometer to fade an LED and drive a stepper motor, powered by a Boarduino RBBB.
-
-
/*
-
Owen Mundy
-
July 29, 2009
-
-
p. 262 of Physical Computing
-
Using BBB to run stepper motor by manually moving steppers
-
-
*/
-
-
int pin1 = 3; // PWM
-
int pin2 = 5; // PWM
-
int pin3 = 6; // PWM
-
int pin4 = 9; // PWM
-
int ledpin = 13; // LED
-
int led = false; // LED monitor
-
int motor_time_lapse = 80;
-
-
int potPin = 0; // Analog input pin that the potentiometer is attached to
-
int potValue = 0; // value read from the pot
-
int ledPotPin = 11; // PWM pin that the LED is on. n.b. PWM 0 is on digital pin 9
-
-
-
void setup()
-
{
-
pinMode(pin1, OUTPUT); // sets the pin as output
-
pinMode(pin2, OUTPUT); // sets the pin as output
-
pinMode(pin3, OUTPUT); // sets the pin as output
-
pinMode(pin4, OUTPUT); // sets the pin as output
-
pinMode(ledpin, OUTPUT); // sets the pin as output
-
-
// initialize serial communications at 9600 bps:
-
Serial.begin(9600);
-
// declare the led pin as an output:
-
pinMode(ledPotPin, OUTPUT);
-
}
-
-
void loop()
-
{
-
potValue = analogRead(potPin); // read the pot value
-
analogWrite(ledPotPin, potValue/4); // PWM the LED with the pot value (divided by 4 to fit in a byte)
-
Serial.println(potValue);
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(motor_time_lapse); // wait
-
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(motor_time_lapse); // wait
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(motor_time_lapse); // wait
-
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(motor_time_lapse); // wait
-
-
blink();
-
}
-
-
void blink()
-
{
-
if (led == false)
-
{
-
led = true;
-
digitalWrite(ledpin, HIGH); // on
-
}
-
else
-
{
-
led = false;
-
digitalWrite(ledpin, LOW); // on
-
}
-
}
“Two Facebook Apps To Help You Fight Back Against Facebook” – The Consumerist
Two Facebook Apps To Help You Fight Back Against Facebook
by Chris Walters, The Consumerist, May 4, 2010
PHP: Timestamp validator and converter
-
<?php
-
-
/*
-
* Timestamp validator and converter
-
* {cc} Owen Mundy ~ owenmundy.com
-
*
-
*/
-
function convert_date($string)
-
{
-
// make sure it is a string with a number && > 1992-05-07 && < 2033-05-18
-
{
-
// if so convert it to a human-readable date
-
return $d;
-
}
-
else
-
{
-
return false;
-
}
-
}
-
-
print convert_date("1613199869");
-
-
?>
“Give Me My Data Helps Refill Blanked Facebook Profiles” – ReadWriteWeb
Give Me My Data Helps Refill Blanked Facebook Profiles
by Curt Hopkins, ReadWriteWeb, May 2, 2010
You must be logged in to post a comment.