Stories

Talking in the dark because it feels good.

Thursday, December 17, 2009

Embarrassing nudge (day 111)

I started the self-surveillance project almost a month ago now.   At some point I was telling someone about it and they asked if I was also taking a picture of myself every 15 minutes.  I had thought about it but decided against it because I thought it was a bit tacky to include pics of myself in an art context.  But after talking with this person, I reconsidered.  I reasoned that one can never be too rich or have too much data.  So last week I started taking pictures of myself on the macbook, the only one of my computers with a built-in camera that could easily be coaxed into taking the picture. 

This experiment has not been good for my self-esteem.  But it may be good for modesty.   Almost none of the shots are flattering.  In almost all of them I'm looking absent-minded, bored, or just unhealthy.  Granted, some of this is from the camera angle and the bad lighting but still looking at a computer is not the most embodied experience, and it shows.  The best pics were when I was watching a TEDxSV talk...I think there was some sort of performance that I was really enjoying.  There were also some pretty intense pics when I was updating my web site profile.

But here is the upshot of all this.  Knowing that the camera will spring to action every 15 minutes, I've become more conscious of my body.  By virtue of seeing shot after embarassing shot, I've trained myself at least a little bit to stay present -- an unexpected benefit from an unlikely source.

And now to conquer some of my fear...here is an example of an embarrassing shot.  It's not the worst.  I'm not that advanced yet.  The next shot is one of the intense ones.



A song for this post.

Labels: , , , ,

Friday, December 11, 2009

What does online feel like (day 105)

I had an interesting discussion with Miles today about what the feeling of being online.  I've been thinking about this a lot lately because of my self-surveillance project that snaps a picture of my desktop every 15 minutes on all 3 of my screens if they are active (and sometimes my iPhone too, though that is not automatic).   I've now collected close to 500 screenshots and looking at them in a fast (10 screenshots/second) sequence it doesn't even get close to the feeling of being online.  I'm going to investigate varying the duration of each frame by random amounts and see how that changes things.  I've added a bit of blur to the movie for privacy but here is what the movie for one my screens looks like for now:


226 screenshots (test) from Maria Lantin on Vimeo.

The feeling of being online is hard to describe.  It's not embodied but it can feel vast and rich.  It sometimes feels social but sometimes anxious.  Much of my time is spent processing the information that is coming at me (the social network as recommendation engine).   Making decisions about this information seems to be the source of a low grade anxiety stemming from a reluctance to spend time and the fear of missing out (FOMO).  There are moments of relaxation into a time commitment such as watching a show, scanning family albums, or programming an application.  There are quick smiles like interesting pictures in twitter.  There are lots of interruptions, little blips and popups.  Email anxiety is never far but seems to ebb and flow depending on time of day and how much the physical world needs my attention.  There is a both a satisfaction to answering email and an anxiety about the conversation progressing too quickly from there.  There are moments of boredom when there is not enough will to separate from the online but not enough interest to continue (the feed has slowed and the stand-bys are exhausted).  There is definitely a feeling of being in the flow of information but it is usually interrupted by having to click or type which brings me back to the screen.  A bit like being into a novel and someone asking you a question about work.

The more I think about it the more the rhythm seems to be important.  I'll see about adding different timings.   I also thought about doing a character recognition scan which would give me a data set to maybe assign an emotional 'score' to an image (many of my screenshots are mostly text).  Either way I'd like to play around with adding an emotional curve which can then be mapped the lung breathing pattern.

A song for this post.

Labels: , , , , , ,

Friday, November 27, 2009

Self-surveillance (day 91)

I just started taking a snapshot of my computer screen every 15 minutes.  It's all automated on all three screens I typically use (mac laptop, PC laptop, PC desktop).   It's actually fascinating to see the shots at the end of the day.  How long I spent on something.  The tidbits I read during the day.  The videos I watched.  The emails I wrote.  Sometimes I don't remember having looked at a particular thing.  It all goes by pretty quickly and somewhat compulsively.  It would be neat to get a snapshot of my face as well...and to record my breathing pattern.  For now, it's just screenshots.  It's for the Breath I/O project.  I'll collect hundreds of screenshots and make a quicktime to map into the environment and onto the lungs.

For those that are interested, it's pretty easy to set this up.  It's easiest on a Mac because cron runs natively.   All you have to do is issue the command "crontab -e" and edit the file that opens.   I run the following script in mine:
#!/bin/bash
/usr/sbin/screencapture -x $(printf "/Users/mlantin/Pictures/screenshots/macscreen-%04d.png" $((`ls ~/Pictures/screenshots| grep -c ''`+1)))
On a PC it's not as easy.  I downloaded and installed the MiniCap application.  Then I made a script in cygwin, again using bash.   Then I made a batch file to run the bash script.  Then I made a shortcut to the batch file so I could set it to run minimized (so it wouldn't pop up the svchost.exe window). Then I used Scheduled Tasks to make the script run every 15 minutes.  Here is the bash script:

#!/bin/bash
/cygdrive/d/Program\ Files/MiniCap/MiniCap.exe -capturedesktop -exit -save "$(cygpath -w $(printf "/home/mlantin/screenshots/desktopscreen-%04d.tiff" $((`ls /home/mlantin/screenshots | grep -c ""` + 1))))"
Here is the batch file (called takeashotdos.bat):
D:\cygwin\bin\bash.exe -l /home/mlantin/takeashot
exit
Here is the command in the Scheduled Task:
D:\cygwin\home\mlantin\takeashotdosshort.lnk

A song for this post.

Labels: , , , ,