Design me a business
I have been working for a long time, since my first babysitting gig when I was thirteen. Through my design career, I have freelanced, worked in-house and worked for consultancies and agencies. Although I have been self-employed, I have never taken the leap and hired another person for an extended period of time, or entered into a partnership. I have cultivated many business relationships, built a reputation around my skills, but I have yet to create a formal business entity.
I tend to work a lot, and I love it. I spend a lot of time thinking about the projects I am working on, they are always in the back of my mind. Fundamentally, I am a problem solver. I pour a lot of passion and drive into finding the right solution. It’s just the way I am. I care about the work I produce, it’s a part of me, and I care about the people with whom I work. They trust me to do what I have promised them I would do, and the feeling of letting someone down is not pleasant (although let’s be honest, it happens sometimes). I strive to learn from my errors and make changes for the better the next time around. Knowing this about myself, I would love to put that energy, drive and passion into creating my own business, one that I own (or own collectively). I have learned a lot over the years on how to create a successful business, but it has always been for someone else. I also know that the bottomless fear I feel at the thought of creating a business is evidence enough that I should go for it.
What will that business be? I’m not sure yet. I know it will be focused in interaction design, possibly around education or health and wellness technologies. I’m also quite captivated by design for human sustainability, by re-engineering our everyday lifestyles and experiences to be more environmentally kind and fulfilling. I was incredibly moved by Richard Buchanan’s IxD11 keynote, when he spoke of the designer’s role in maintaining human dignity. That is something to which I aspire, especially by designing a business that supports these beliefs. I’m fascinated with different remuneration models, and I absolutely loved mentoring junior designers and fostering collaborative environments. I dream of having my own studio space one day, a place to meet and create with talented passionate people. Having my own business, I could do all of these things.
I can’t immediately see what this future business looks like, if it is a research/recommendations practice, or an end-to-end boutique that provides a finished solution, be it a product, a service or some combination of the two. I feel fortunate to have heard Michelle Kaufmann speak last year about how her business grew out of looking for eco-friendly houses. She spoke of her desire to handle every aspect of design and production, but that her business model eventually led to large overhead that was impossible to maintain in the recession. Considering she is now working with Google on modular multiplex residences that will serve many people, perhaps these sharp lessons weren’t for naught. I am inspired by her story, and it encourages me to choose one of my passions, start small, ask questions from those with experience, and keep moving forward.
Business of Design
A new semester brings a new stream of classes and assignment to get excited about. I have been waiting for the Business of Design class ever since I first read about it – I am excited to be learning about the practice of business from two respected and experienced women, Christopher Ireland and Maria Giudice. I have been a design practitioner for over ten years, and have worked free-lance, as an in-house designer and for various consulting firms and design studios. The business side of design is something I have learned on the job, both with success and with battle scars. Although all the topics are quite interesting to me, I am intrigued by the classes on Leadership, Business Models, The Art of Selling, and Money Matters. I would like to run my own company one day, and this course will be a great help in sketching out what that dream may be, make it tangible and make it real.
Nice to meet you Christopher and Maria!
Flexor Glove
So it’s done. I successfully wired up a glove with two sensors and connected them via Arduino and Processing to my laptop. When the fingers curl, the graphics draw to a screen. I covered a lot of ground in this project, and I surprised myself that I actually made this work. The one aspect that surprised me was understanding gesture, and how the natural movements of the body must be considered to make a good experience. In fact, at the last minute, I changed the interactivity between the fingers, because I found it easier to control the tweet drawings with my index finger than with my pinkie.
This is the value of a prototype: to be able to test something early and often, and then modify based on use and interaction. All in all, this has been great fun!
progress!
I spent most of today working on pulling the sensor values into an array so I can make something draw when moving each finger. I finally got it! I used the input code from the Virtual Color Mixer code on the Arduino site, but I also had to keep the syntax from the original Flex Sensor code as well. I kept trying to just modify the code, but it wouldn’t work, so I had to strip everything down to a basic prototype to get it working. And I learned something really small, but powerful. Check this:
Serial.print (analogRead(index));
Serial.print (“,”);
Serial.println (analogRead(pinkie));
Note that the last line has “println” not just “print”. That syntax will make the next line start on a new line, breaking the stream of numbers. This is important, as this string of characters will be pulled into this code to be split and divided into the values for the index finger and the pinkie finger movements.
void serialEvent (Serial myPort) {
// get the ASCII string:
String inString = myPort.readStringUntil(‘\n’);
println(inString);
if (inString != null) {
// trim off any whitespace:
inString = trim(inString);// convert to an int and split into array:
float[] curls = float(split(inString, “,”));if (curls.length >= 2) {
indexValue = map(curls[0], 0, 900, 0, 255);
pinkieValue = map(curls[1], 0, 90, 0, 255);
}
If the incoming string does not have the right syntax, it just won’t work. Now that I have a rough working prototype, now I have to paste in the dots & lines and the Twitter API to get the visuals as I want them. Good thing I have some chocolate.
gesture appropriate

I’m trying to figure out which finger to attach the second flexor sensor. I had originally thought the flexors should go on the index and middle fingers, as they seem to be the most controllable fingers (no bad jokes here, ok?). But as I have been playing with my glove prototype, I realize that it’s pretty hard to move either of these fingers independently of each other. Try it: raise your hand, and then curl your index finger. The middle finger curls with it! This is because of the extensor tendons, which a quick search through Google has unearthed. It seems the thumb also has the same effect, so I am going to put the second sensor on the pinkie finger, as it seems to have the least connection to the movement of the index finger. And I think that will be kind of funny, to pull in tweets by culring your little finger. Hee hee.
I have to admit, I am quite delighted how quickly I’ve become connected back to the mechanics of the body by experimenting with wearable technology. Understanding natural gestures, the limitations of movement, ergonomics, it’s all quite intimate knowledge. It’s all just beginning to click…
raining yet?
I’m working on the graphics for my projection, playing with lines and circles to create rain-like visuals. The lines and circles build as you crunch your fingers, the interaction is connected to the flexible sensor. As the curve increases in the sensor, the resistance measurement is sent through the analog pin on the Arduino board. I am using simple draw functions right now, but I am aiming to clean up the code to make this effect more random and recursive. Here’s the code I am using to draw the lines and circles:
if (inByte > 70) {
// draw the line:
stroke(225);
line(xPos, -height, xPos + 10, height – inByte);
stroke(225);
line(xPos + 10, -height, xPos + 40, height – inByte);
stroke(225);
line(xPos + 20, -height, xPos + 100, height – inByte);
stroke(225);
line(xPos, -height, xPos + 200, height – inByte);
stroke(225);
line(xPos + 50, -height, xPos + 250, height – inByte);
stroke(225);
line(xPos + 80, -height, xPos + 280, height – inByte);
stroke(225);
line(xPos, -height, xPos + 300, height – inByte);
stroke(225);
line(xPos + 170, -height, xPos + 500, height – inByte);
stroke(225);
line(xPos + 210, -height, xPos + 600, height – inByte);
cs = new CircleGlyph[10];
for (int i = 0; i < cs.length; i = i + 1) {
cs[i] = new CircleGlyph();
cs[i].paint();
}
… and the circle code is sitting in a class…
void paint() {
//action could be called anything, make it meaningful
fill(240, 240, 240, random(240));
noStroke();ellipse (x, y, 10 + s, 10 + s);
}
}
I know this can be refined, but I’m really more concerned with the aesthetics at the moment. I want to pull a colour palette from this image of a storm I took in Thailand years ago. Carrying on…
Glove prototype begins

I have successfully attached the Flexor to a glove to continue my glove prototype. I bought some black silky gloves at a dance store. Strangely, choosing the color was a challenge: black, red or white? I ended up choosing black as I felt it had less significance than red or white. I pierced a small hole into the end of the flexor plastic and sewed it directly to the glove, then just looped the thread around flexor and tacked it to the glove. I want it to be able to move around a bit when the hand was moving. I hope the glove will stretch to fit any hand, but at this point, it makes an adequate prototype.
I attached the glove to the Arduino and then ran my Processing program. It works really well! So now I must move to creating graphics and pulling the Weather API and Twitter search results into a Processing sketch. I;m hoping it won’t be too mind bending. I also really want to strive to make the graphics as analog as possible, perhaps by creating some recursive movement, just to add more randomness. Onward and forward.
Presentations attract butterflies too
Tomorrow is the big day, we are presenting our final research findings in Timkin Hall to fellow students, professors and a panel of judges. Although we are more than prepared, and have practiced many times, I am nervous! I am worried that I will forget my lines (though we do have Keynote presenter notes for backup), or that I will be stiff and awkward. I need to remember to breathe, and trust that I will be just fine. The audience is my friend, they want to hear what I have to say, and I am prepared. But those butterflies!
I am so very proud of our team. We have worked very hard to polish our presentation, and the findings are solid. I think that even if there are little slip ups, the underlying content will shine through. Above all, I believe in our findings – the “client” does have a huge opportunity to create a unique offering in the urban gardening market by providing educational experiences that create excitement and inspiration in current and future gardeners. I hope that our presentation expresses the fundamental role that gardens have in our lives, especially in the city where green space is at a premium. I have learned so much about gardening through this project, it has made me think about how I want to create my own green space and garden of food to eat and share.
Wish me luck!
Flexor!
Tonight was hella fun. I got my flexible resistors in the mail, and I was super excited to start playing with them. I followed the instructions from the Sparkfun Electronics website on how to hook up a simple circuit. First i had to solder some wires to the resistor. Then I had to connect the resistor to the Arduino with another resistor. It was overall pretty easy, but I still need a lot of practice reading electronic schematics. Then the code. Basically, I took the code from the Sparkfun tutorial and mixed it with the Graph code from the Arduino site. A big thank you to the people who write this code and share it online, I would get nowhere without it! Anyways check out my l’il video of the whole experiment.
Programming Interaction
So I’m working on a prototype for programming class. We are required to do the following:
- integrate API data, such as weather stats,
- wire up a physical control for interaction, and
- visualize said interactions on a projection.
I had started thinking I would pull sunrise and sunset time and make an alternative clock that would give ayurvedic phases of the day. But I wasn’t feeling very inspired by the interaction element. Yes, it will be challenging to wire up a key pad and have the screen change with button clicks, but how compelling is that for the user? I want to create a fun experience that may evoke some wonder. You know, something that intrigues ME. Button clicks weren’t cutting it.
So I moved instead to something that I want to play around with, and that is wearable technology and those crazy flexible resistors. Yes, I am going to make my own interactive gloves that send signals when you bend your fingers. I wrote a poem a long time ago called The Storm, and I am going to call this piece Make It Rain. The idea is that people will be able to make data rain on the screen by moving their fingers. I am hoping it will have an uncontrolled randomness, and be beautiful at the same time. I’d like to weave still images, some web data and perhaps sound together into the experience. I saw some beautifully evocative pieces at the de Young today that inspired my visual thinking, and I hope I can reflect some of that into the execution. Wish me luck!


