Alex Britez
16p10 comments posted · 0 followers · following 0
73 weeks ago @ unthink media - Twitter-style Status T... · 0 replies · +1 points
91 weeks ago @ unthink media - Update Twitter Status ... · 0 replies · +2 points
========================================================
//Date today = new Date();
Date latestTweetDate = new Date();
long previousMillis = 0; // will store last time we checked Twitter for updates
long interval = 10000; // interval at which to blink (milliseconds)
void draw() {
background(100);
text("color selected: " inString, 10,50);
//borrowed from Blink w/o Delay Arduino sketch
//Search for updates once every minute
if (millis() - previousMillis > interval) {
println("Call Made");
// save the last time you blinked the LED
previousMillis = millis();
try {
// The factory instance is re-useable and thread safe.
List statuses = twitter.getFriendsTimeline();
for( int i=0; i<statuses.size(); i )
{
Status status = (Status)statuses.get(i);
// Check to see if there is a match
String[] m1 = match(status.getText(), "Arduino");
if (m1 != null) {
// Check to see if tweet is new
Date tweetDate = status.getCreatedAt();
boolean isAfter = tweetDate.after(latestTweetDate);
if(isAfter){
println("Found a NEW match in '" " " status.getText() "'");
myPort.write('A');
latestTweetDate = status.getCreatedAt();
}
}
}
}
catch (TwitterException te) {
println("Couldn't connect: " te);
}
}
}
100 weeks ago @ unthink media - Post TEDxNYED Thoughts · 0 replies · +1 points
I am not so sure if i agree with not being able to engage a child that comes from a terrible home. I think just about every kid has the ability to be engaged in any topic. In my opinion, if a kid could be engaged while playing video games, or in a conversation with their friends, then there is nothing stopping them from being engaged in school. Although it may not be easy, I wouldn't say it is impossible. It is actually one of the main reasons why I recently decided to focus my technical talents in education. I want to do my part in insuring that those kids have a shot, and not get written off before they even had a chance to succeed.
101 weeks ago @ unthink media - Post TEDxNYED Thoughts · 0 replies · +1 points
101 weeks ago @ unthink media - Post TEDxNYED Thoughts · 0 replies · +1 points
105 weeks ago @ unthink media - Examining an Everyday ... · 0 replies · +1 points
Another possibility is that the MTA contracted out the design to 2 separate designers or companies and there was a lack of communication between both parties. The touch screen interaction may have been contracted out to an interactive agency who specialize on screen based interaction design, and the casing may have been contracted to a company with experience creating physical interactions. Individually both solve their specific problems, but once integrated there is some disconnect.
106 weeks ago @ unthink media - "Is iPad Good for Educ... · 0 replies · +1 points
106 weeks ago @ unthink media - Augmented Reality and ... · 0 replies · +1 points
107 weeks ago @ unthink media - Exploring Physical Com... · 0 replies · +1 points
123 weeks ago @ unthink media - First Impressions of ... · 0 replies · +1 points
Company