Get the Flash Player to see the slideshow.

After Effects Assignment: I Love New York

Posted: December 5th, 2009 | Author: Cindy | Filed under: Uncategorized | Tags: | No Comments »

I LOVE NEW YORK (final edition) from cindy wong on Vimeo.

I Love New York from cindy wong on Vimeo.

A short 40-second animation clip produced in After Effects. Artwork, design by Cindy Wong. Music by Art Tatum.


Serial Lab Communication

Posted: October 23rd, 2009 | Author: Cindy | Filed under: Uncategorized | No Comments »

Physical Computing: Arduino with 2 Analog Sensors from cindy wong on Vimeo.

For Serial Communication lab, we’re using multiple sensors to interact between the Arduino and the computer. Just like with the first lab, since I’m in ICM-web, I’m using a Javascript applet as prescribed by Prof. Shawn Van Every to display that interaction visually on a web browser. In this case, we’re using 2 Potentiometer, 1 Switch (button) in the below setup.

img_0131

The web interface is using HTML 5 <canvas> within Javascript to display the interaction.

Here’s the Arduino code that I uploaded:

int heat = 65; int light = 65; int onOff = 0;

void setup() {

  Serial.begin(9600);
  pinMode(4, INPUT);
  Serial.println("Start");
}

void loop() {

  if (Serial.available() > 0){  //only send if you have hear back
    int input = Serial.read();

    heat  = analogRead(5); // Potentiometer
    light  = analogRead(0); // Potentiometer
    onOff = digitalRead(4); // Button Switch

    Serial.print(heat); Values (0:1020)
    Serial.print(","); // inserts a comma to distinguish the different values for HEAT, LIGHT, onOFF,
    Serial.print(light); Values (0:1020)
    Serial.print(",");
    Serial.print(onOff); Values (O:1)
    Serial.print(",");

    Serial.print(10, BYTE);  //send a return (when user presses button ONSEND transmits an 'A' character)
    Serial.flush();//Flushes the buffer of incoming serial data.Any call to Serial.read() or Serial.available()

//will return only data received after all the most recent call to Serial.flush().

delay(20); //you might use this instead of if available
}
}

On the Javascript side....
// Do some graphing in the canvas
//https://developer.mozilla.org/en/Canvas_tutorial
var parts = String(input).split(','); // parses out the values

var light = parts[0];
var breath = parts[1];
var onOff = parts[2];

canvascontext.clearRect(0,0,500,255); //draws the rectangle
canvascontext.fillStyle = "rgb(" + breath + ",0,0)"; // changes the hue of the rectangle?

if (onOff == "1")
{
canvascontext.fillRect (10, light, 50, 50); // changes the color of the rectangle ?
}
else
{
canvascontext.drawEllipse(10, light, 50, 50); // changes the y-axis movement of rectangle
}


Eternal Moonwalk: Fitting Viral Tribute?

Posted: July 20th, 2009 | Author: Cindy | Filed under: Uncategorized | No Comments »

picture-4

Eternal Moonwalk – a Tribute to Michael Jackson is probably the most fitting, global way for pop culture fans to coalesce around this American icon.

Upon watching the series of submitted clips, two thoughts: 1) Seriously, though, where are all the Americans?  2) Despite 20+ years of having the Moonwalk around, it’s still something MOST of us don’t know how to do.


So Long Seattle, Say Hello, New York!

Posted: May 31st, 2009 | Author: admin | Filed under: Uncategorized | Tags: | No Comments »

NYC_Taxis.jpg Credit: Cindy Wong

Say what? Yes, I know my announcement that I’m leaving Seattle has come as a surprise to many friends and colleagues. They don’t call me a ninja for nuthin’. The reason I was drawn to Seattle, aside its tech scene and love, was a chance to start a new life and a new career change with an educational pit stop at the University of Washington. The catalyst? Who’d of thought that in 2007 — prior to Wall Street’s implosion and the newspaper industry’s shakedown — was that deaths in my family would compel me to examine my life. Am I satisfied? Am I growing? Am I taking advantage of all that life has to offer me? What I saw showed me I needed a change — after all, I am a big believer of this ethos: You are in Charge of Your Own Happiness. 

At that moment of crisis, I wrote my graduate school essay’s intro: ” ‘Self-evolve, innovate or die’  is an unspoken motto for my immigrant family, a hard-earned statement that my parents learned when they arrived in America from war-torn Vietnam.” It’s true. Was I living up to that challenge that my parents bestowed when they first came here? 

By making a change to pursue graduate school, I did. In Seattle, I settled into the University of Washington’s MCDM program, a program that emphasizes communication strategy for digital media from a creative and marketing standpoint. Deep coverage into online communication, usage of social media, business of online content creation, and the nitty gritty on people’s usage of digital media were written and discussed. However, I grappled between being a designer and being a communicator. Between being the academic to being a creator. I was a newspaper journalist and a graphic designer. It was unfamiliar not to produce and to design. For me, in order to “talk the talk about digital media” I wanted to “walk the walk.” Yes, I wanted to be a geek with the credentials to create. I also needed a dramatic career change with mad skillz. I did not just want to be an effective communicator online, I wanted to also make.  Thus, why I realized I needed a better medium to learn how to bridge design, technology, and communication. 

Hence, why I got re-accepted into NYU’s ITP program. Say hello, New York City rent, impressive student loans, and a chance to create my geeky heart out in one of the world’s most exciting cities. God help me. I kid, I kid. The events that have occurred in 2008 — Wall Street’s implosion, collapse of traditional media markets, and the changing job landscape — have convinced me I am heading in the right direction. We need leaders who are informed, are well-versed in technology,  fearless of change, and know how to address it with can-do attitude, innovation and bravado. 

Cheers.


Meet the Tweenbots: NYU ITP Project

Posted: April 15th, 2009 | Author: Cindy | Filed under: Uncategorized | Tags: | No Comments »

NYU Student Conducts Most Adorable Robot Experiment Ever via Gizmodo.

Read the rest of this entry »


It’s Alive, It’s Alive!

Posted: April 12th, 2009 | Author: admin | Filed under: Uncategorized | No Comments »

Karakuri Odette

Image: Karakuri Odette by Julietta Suzuki.

Enough with Blogger and all that jazz. Let’s see how far WordPress will take me in this new digital venture.