<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>rks wrk</title>
	<atom:link href="http://itp.nyu.edu/~rs3836/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://itp.nyu.edu/~rs3836/blog</link>
	<description></description>
	<lastBuildDate>Mon, 06 May 2013 19:47:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>End Times Girls Club: Phone Alerts</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2013/05/06/end-times-girls-club-phone-alerts/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2013/05/06/end-times-girls-club-phone-alerts/#comments</comments>
		<pubDate>Mon, 06 May 2013 19:45:01 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=529</guid>
		<description><![CDATA[For my final project for Redial, I built a phone alert system for my thesis, End Times Girls Club. My thesis is an apocalypse preparedness guide, featuring instructional videos and a webstore with survival kits, created and run by my &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2013/05/06/end-times-girls-club-phone-alerts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="banner" src="https://mwaz.s3.amazonaws.com/banner.jpg" alt="" width="629" height="144" /></p>
<p>For my final project for Redial, I built a phone alert system for my thesis, <a href="http://www.endtimesgirlsclub.com">End Times Girls Club</a>. My thesis is an apocalypse preparedness guide, featuring instructional videos and a webstore with survival kits, created and run by my persona, @EndTimesGirl. For the phone alert system, when @EndTimesGirl gets a tweet on her timeline that mentions the apocalypse or other important keywords, an alert phone call goes out to all the club members (who have signed up at www.endtimesgirlsclub.com/phonealert) which uses google talk-to-speech to tell them who is calling and read them the latest alarming tweet.</p>
<p>How does this all work?!  Well, I have a rackspace server, set up with asterisk, ruby and a flowroute account so I can have outgoing calls. I set all that up using <a href="http://www.itp-redial.com/class/asterisk-in-the-cloud">Chris Kairalla&#8217;s instructions</a>.I also used the t<a href="https://github.com/intridea/tweetstream">weetstream</a> Twitter API for Ruby to link to the @EndTimesGirl&#8217;s twitter account and monitor for keywords. In that ruby script, when the keyword trigger happens, the script generates a callfile in asterisk and pushes it out, generating one for each phone number in my database (which I query using the <a href="https://github.com/taf2/curb">Curb ruby gem</a> to curl the URL of my database).</p>
<p>Here is my ruby script:</p>
<p><span id="more-529"></span></p>
<pre>#!/usr/bin/ruby
require 'tweetstream' ;
require 'curb'
require 'fileutils'
#authorize access to twitter account
TweetStream.configure do |config|
  config.consumer_key       = 'YOURKEY'
  config.consumer_secret    = 'YOURPASSWORD'
  config.oauth_token        = 'YOURTOKEN'
  config.oauth_token_secret = 'TOKENPASSWORD'
  config.auth_method        = <img src='http://itp.nyu.edu/~rs3836/blog/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> auth
end

test = Curl.get("http://www.endtimesgirlsclub.com/db")
    mynums = test.body_str.split(',')

def gencallfile(num,text, user)
time = (Time.now.to_f * 1000).to_i #current timestamp
  temp_dir = "/tmp/"
  callfile = "call_" + time.to_s + ".call"
  startcallfile = temp_dir + callfile
  end_dir = "/var/spool/asterisk/outgoing/"
  endcallfile = end_dir + callfile
  #write file to disk
  file = File.open(startcallfile,"w")
  file.puts("Channel: SIP/flowroute/#{num}\n")
  file.puts("MaxRetries: 1\n")
  file.puts("RetryTime: 60\n")
  file.puts("WaitTime: 30\n")
  file.puts("Context: alert\n")
  file.puts("Extension: s\n")
  file.puts("CallerID: END TIMES GIRLS CLUB &lt;6666666666&gt;\n")
  file.puts("Set: tweettext=#{text}\n")
  file.puts("Set: user=#{user}\n")

  file.close
  #change file permission
  File.chmod(0777, startcallfile)
  FileUtils.chown(ENV['USER'],'asterisk',startcallfile)
  #move file to /var/spool/outgoing
  #  puts "here3".to_s
  FileUtils.mv(startcallfile,endcallfile)
 # puts "rose".to_s
  puts "I am generating a call file for #{num}"

end

client = TweetStream::Client.new
#instantiate tweetstream monitor
client.on_timeline_status do |status|
 #search for keywords on timeline
  if status.text.include?('apocalypse')or status.text.include?('brimstone') or status.text.include?('end times')

  puts "[#{status.user.screen_name}] #{status.text}"

	user=status.user.screen_name #tweet username
	text=status.text #tweet text
	mynums= mynums.uniq #no duplicate callfiles
	mynums.each do |number|
	 number = number.gsub(/-/,'') #get rid of '-'
	number.strip! #get rid of whitespace
# 		check the length of the number
	next if number.to_i == 0 #skip if its not a number
	if number.length == 10 #if it has 10 digits add 1 at the beginning
		number = "1"+number
			puts "[#{number}]"
		gencallfile(number,text,user) #call
			end
	if number.length == 11
	       gencallfile(number,text,user)
end
end
end
end

client.userstream</pre>
<p>This is what my asterisk extensions.conf looks like in the extensions I use to read a greeting and the text of the trigger tweet.</p>
<pre>[googletts]
exten =&gt; s,1,Answer()
exten =&gt; s,n,AGI(googletts.agi,"this is an alert from end times girls club.",en)
exten =&gt; s,n,AGI(googletts.agi,"the following tweet leads us to believe the apocalypse is upon us",en)
exten =&gt; s,n,wait(1)
exten =&gt; s,n,Goto(tweetread,s,1)

[tweetread]
exten =&gt; s,1,Answer()
exten =&gt;s,n,Set(tweet=${CUT(tweettext,,1)})
exten =&gt;s,n,Set(twitteruser=${CUT(user,,1)})
exten =&gt; s,n,AGI(googletts.agi,${tweet},en)
exten =&gt; s,n,AGI(googletts.agi,"from user",en)
exten =&gt; s,n,AGI(googletts.agi,${twitteruser},en)
exten =&gt; s,n,Hangup()</pre>
<pre></pre>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2013/05/06/end-times-girls-club-phone-alerts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redial Midterm Plan</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2013/03/05/redial-midterm-plan/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2013/03/05/redial-midterm-plan/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 15:42:19 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[redial]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=523</guid>
		<description><![CDATA[APRIL FOOLS &#8211; ASTERISK WILL CALL YOU AND READ YOU THE WASTE LAND by T.S. ELIOT or I will create  a Poem of The Day phonecall service that calls you up and reads you a poem. I like hearing poetry &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2013/03/05/redial-midterm-plan/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><iframe width="640" height="480" src="http://www.youtube.com/embed/3tqK5zQlCDQ?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>APRIL FOOLS &#8211; ASTERISK WILL CALL YOU AND READ YOU THE WASTE LAND by T.S. ELIOT</p>
<p>or</p>
<p>I will create  a Poem of The Day phonecall service that calls you up and reads you a poem. I like hearing poetry more than reading it sometimes. This would mostly just be a gift for my mom.</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2013/03/05/redial-midterm-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conversational Horoscopes</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2013/02/12/conversational-horoscopes/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2013/02/12/conversational-horoscopes/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 14:37:12 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[redial]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=519</guid>
		<description><![CDATA[This week I used contexts and priorities in asterisk to make a horoscope phone tree, complete with up-to-date and largely misleading prophecies. call 917-534-6464 ext. 20 to find out what this week holds for you&#8230;&#8230;&#8230;.!!!! [rs3836] exten =&#62; s, 1,Wait(1) &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2013/02/12/conversational-horoscopes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="crystal ball " src="http://blog.earnmydegree.com/wp-content/uploads/2009/02/crystal_ball.jpg" alt="" width="864" height="576" /></p>
<p>This week I used contexts and priorities in asterisk to make a horoscope phone tree, complete with up-to-date and largely misleading prophecies.</p>
<p>call 917-534-6464 ext. 20 to find out what this week holds for you&#8230;&#8230;&#8230;.!!!!</p>
<pre>[rs3836]
exten =&gt; s, 1,Wait(1)
exten =&gt; s,n,Background(/home/rs3836/asterisk_sounds/welcome1) ; WELCOME
exten=&gt;s,n,Background(/home/rs3836/asterisk_sounds/options);options
same =&gt; n,WaitExten(5)

exten =&gt;1,1,Goto(rs3836_FireSigns,s,1)
exten =&gt;2,1,Goto(rs3836_AirSigns,s,1)
exten =&gt;3,1,Goto(rs3836_EarthSigns,s,1)
exten =&gt;4,1,Goto(rs3836_WaterSigns,s,1)
exten =&gt;0,1,Goto(rs3836,s,1) ;repeat welcome
exten =&gt;i,n,Playback(pbx-invalid)
same =&gt;n,Goto(rs3836,s,1)
exten =&gt;t,n,Goto(rs3836,s,1)

[rs3836_FireSigns]
exten =&gt;s,1,Wait(1)
exten=&gt;s,n,Background(/home/rs3836/asterisk_sounds/firesigns)
same =&gt; n,WaitExten(5)

	exten=&gt;0,1,Goto(rs3836,s,1) repeat welcome
	exten=&gt;1,1,Background(/home/rs3836/asterisk_sounds/aries) ;ARIES
	same=&gt;n,Goto(rs3836,s,1) 

	exten=&gt;2,1,Background(/home/rs3836/asterisk_sounds/leo) ;LEO
	same =&gt;n,Goto(rs3836,s,1) 

	exten=&gt;3,1,Background(/home/rs3836/asterisk_sounds/sag);SAG
	same =&gt;n,Goto(rs3836,s,1)

	exten =&gt; i,1,Playback(pbx-invalid)
	same =&gt; n,Goto(rs3836_FireSigns,s,1)

	exten =&gt; t,1,Goto(rs3836_FireSigns,s,1)

[rs3836_AirSigns]

	exten=&gt;s,1,Wait(1)
	exten=&gt;s,n,Background(/home/rs3836/asterisk_sounds/airsigns); AIRSIGN WELCOME
	same =&gt; n,WaitExten(5)

	exten =&gt;0,1,Goto(rs3836,s,1) ;repeat welcome

	exten =&gt;1,1,Background(/home/rs3836/asterisk_sounds/gemini); GEMINI
	same =&gt;n,Goto(rs3836,s,1); 

	exten =&gt;2,1,Background(/home/rs3836/asterisk_sounds/libra); LIBRA
	same =&gt;n,Goto(rs3836,s,1); 

	exten =&gt;3,1,Background(/home/rs3836/asterisk_sounds/aquarius); AQUARIUS
	same =&gt;n,Goto(rs3836,s,1); 

	;exten =&gt; i,1,Playback(pbx-invalid)
   same =&gt; n,Goto(rs3836_AirSigns,s,1)

exten =&gt; t,1,Goto(rs3836_AirSigns,s,1)

[rs3836_EarthSigns]

	exten =&gt;s,1,Wait(1)
	exten=&gt;s,n,Background(/home/rs3836/asterisk_sounds/earthsigns); EARTHSIGN WELCOME
	same =&gt;n,WaitExten(5)

	exten =&gt;0,1,Goto(rs3836,s,1) ;repeat welcome

	exten =&gt;1,1,Background(/home/rs3836/asterisk_sounds/taurus); TAURUS
	same=&gt;n,Wait(1);
	same =&gt;n,Goto(rs3836,s,1); 

	exten =&gt;2,1,Background(/home/rs3836/asterisk_sounds/virgo); VIRGO
	same=&gt;n,Wait(1);
	same =&gt;n,Goto(rs3836,s,1); 

	exten =&gt;3,1,Background(/home/rs3836/asterisk_sounds/capricorn); CAPRICORN
	same=&gt;n,Wait(1);
	same =&gt;n,Goto(rs3836,s,1); 

	;exten =&gt; i,1,Playback(pbx-invalid)
	same=&gt;n,Wait(1);
   same =&gt; n,Goto(rs3836_EarthSigns,s,1)

exten =&gt; t,1,Goto(rs3836_EarthSigns,s,1)

[rs3836_WaterSigns]

exten =&gt;s,1,Wait(1)
exten=&gt;s,n,Background(/home/rs3836/asterisk_sounds/watersigns); WATERSIGN WELCOME
	same =&gt; n,WaitExten(5)

	exten=&gt;0,1,Goto(rs3836,s,1) ;repeat welcome

	exten =&gt;1,1,Background(/home/rs3836/asterisk_sounds/cancer); CANCER
	same=&gt;n,Wait(1);
	same=&gt;n,Goto(rs3836,s,1); 

	exten =&gt;2,1,Background(/home/rs3836/asterisk_sounds/scorpio); SCORPIO
	same=&gt;n,Wait(1);
	same =&gt;n,Goto(rs3836,s,1); 

	exten =&gt;3,1,Background(/home/rs3836/asterisk_sounds/pisces); PISCES
	same=&gt;n,Wait(1);
		same =&gt;n,Goto(rs3836,s,1); 

	;exten =&gt; i,1,Playback(pbx-invalid)
   same =&gt; n,Goto(rs3836_WaterSigns,s,1)

	exten =&gt; t,1,Goto(rs3836_WaterSigns,start,1)
</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2013/02/12/conversational-horoscopes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>redial &#8211; no offense but&#8230;</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2013/02/05/redial-no-offense-but/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2013/02/05/redial-no-offense-but/#comments</comments>
		<pubDate>Tue, 05 Feb 2013 00:54:53 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=515</guid>
		<description><![CDATA[call (917)534-6464 ext. 20  &#8230;]]></description>
			<content:encoded><![CDATA[<p><span style="color: #993300;">call (917)534-6464 ext. 20  &#8230;</span></p>
<p><span style="color: #993300;"><img class="size-full wp-image-517 alignleft" title="Screen Shot 2013-02-04 at 7.53.41 PM" src="http://itp.nyu.edu/~rs3836/blog/wp-content/uploads/2013/02/Screen-Shot-2013-02-04-at-7.53.41-PM.png" alt="" width="210" height="113" /></span></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2013/02/05/redial-no-offense-but/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HEY LOOK OUT BEHIND U</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2012/12/12/510/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2012/12/12/510/#comments</comments>
		<pubDate>Wed, 12 Dec 2012 22:59:09 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=510</guid>
		<description><![CDATA[IN ORDER TO KEEP THE THREAT OF THE RISING RIVER ON THE FRONT OF OUR MINDS, WE EMPLOYED THE LANGUAGE OF THE EVIL EYE, THE WATCHFUL GUARDIAN, AND THE NATURAL RESPONSE TO FOLLOW THE GAZE OF A GRAPHICAL EYEBALL. WE &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2012/12/12/510/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/55418853" width="640" height="360" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p>IN ORDER TO KEEP THE THREAT OF THE RISING RIVER ON THE FRONT OF OUR MINDS, WE EMPLOYED THE LANGUAGE OF THE EVIL EYE, THE WATCHFUL GUARDIAN, AND THE NATURAL RESPONSE TO FOLLOW THE GAZE OF A GRAPHICAL EYEBALL. WE PUSH THE GAZE OF PASSERS-BY TOWARDS THE RECENTLY TRANSGRESSIVE RIVER – REMINDING US TO BE VIGILANT AND WATCHFUL.</p>
<p>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; more &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;</p>
<p>Sarah Hallacher and I installed our series of signs bringing awareness to the East River yesterday in East River Park. All of our hand-painted eye signs were hung facing the river, remind New Yorkers to #lookoutbehindU and remember that we live in a city surrounded by potentially dangerous bodies of water. Ultimately, we’d love to refine our style and install our eyes all around the city. We’d also like to explore making smaller eyes that may allude to danger; but the large signs we created this time were so wonderfully ominous! It was great to see them out in the public.</p>
<p>They’ve been hanging for about 10 days, so we feel like the installation is a success. We were also excited when people from the neighborhood engaged with us while we were installing &amp; documenting on a few different occasions. The people who spoke to us seemed interested but not bothered by the eyes, so we see no reason why they’d be taken down anytime soon.</p>
<p>Making of video</p>
<p><iframe src="http://player.vimeo.com/video/55417943" width="640" height="360" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>INSTALLATION PHOTOS</p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0932.jpg"><img title="IMG_0932" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0932.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0935.jpg"><img title="IMG_0935" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0935.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0940.jpg"><img title="IMG_0940" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0940.jpg" alt="" width="900" height="1350" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1061.jpg"><img title="IMG_1061" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1061.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1054.jpg"><img title="IMG_1054" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1054.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1060.jpg"><img title="IMG_1060" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1060.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0967.jpg"><img title="IMG_0967" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0967.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0964.jpg"><img title="IMG_0964" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0964.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0991.jpg"><img title="IMG_0991" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0991.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0975.jpg"><img title="IMG_0975" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0975.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0996.jpg"><img title="IMG_0996" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0996.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0997.jpg"><img title="IMG_0997" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0997.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0989.jpg"><img title="IMG_0989" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_0989.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1016.jpg"><img title="IMG_1016" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1016.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1022.jpg"><img title="IMG_1022" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1022.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1025.jpg"><img title="IMG_1025" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1025.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1031.jpg"><img title="IMG_1031" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1031.jpg" alt="" width="900" height="600" /></a></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1036.jpg"><img title="IMG_1036" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1036.jpg" alt="" width="900" height="600" /></a></p>
<p><strong>&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; SUCCESS &lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;</strong></p>
<p><a href="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1070.jpg"><img title="IMG_1070" src="http://ablogthat.sarahmak.es/wp-content/uploads/2012/12/IMG_1070.jpg" alt="" width="900" height="600" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2012/12/12/510/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>close encounters of the schlossberg kind v:002</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2012/10/19/close-encounters-of-the-schlossberg-kind-v002/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2012/10/19/close-encounters-of-the-schlossberg-kind-v002/#comments</comments>
		<pubDate>Fri, 19 Oct 2012 19:53:34 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=506</guid>
		<description><![CDATA[TESTING TESTING AND ACTION]]></description>
			<content:encoded><![CDATA[<pre>TESTING TESTING </p>
<p><iframe src="http://player.vimeo.com/video/51764296" width="360" height="480" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p>AND ACTION </p>
<p><iframe src="http://player.vimeo.com/video/51764257" width="360" height="480" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2012/10/19/close-encounters-of-the-schlossberg-kind-v002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New Fad Diet: Mongolian Horseman Diet</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2012/10/18/503/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2012/10/18/503/#comments</comments>
		<pubDate>Thu, 18 Oct 2012 20:41:56 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=503</guid>
		<description><![CDATA[Mehan and I are proud to announce the launch of    MONGOLIANHORSEMAN.COM &#8211; the site is live and visitors can learn about the diet, its health benefits and cultural significance, and sign up for informational emails and alerts. This project &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2012/10/18/503/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mehan and I are proud to announce the launch of    <a href="mongolianhorseman.com">MONGOLIANHORSEMAN.COM</a> &#8211; the site is live and visitors can learn about the diet, its health benefits and cultural significance, and sign up for informational emails and alerts.</p>
<p>This project plays off the idea of exotic fad diets, promising access to ancient and elusive health secrets from non-western and self-sufficient cultures. We tried to make the diet somewhat absurd and unappealing in its actual practices, but brand it as best we could to see how much attention we could get. In order to shift this from being a parody of this kind of marketed cure-all diet, we decided to advertise it in Mongolia (in addition to the US), which ought to have undercut and rendered absurd its exotic appeal and otherness. This ad ultimately performed the best, which was surprising and exciting for us.</p>
<p>We advertised our diet and its site on Facebook, making three separate campaigns; one targeted to men in America who are interested in health and organic food between the ages of 18-30, one targeting women between 16-40 who are interested in health or Buddhism, and one which targeted all facebook users in Mongolia. The first ad didn&#8217;t make it through Facebook&#8217;s review system for an unknown reason, but the second two were fairly successful.</p>
<p>This is the ad which targeted women into Buddhism:</p>
<p><a href="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.38.29-AM.png"><img class="alignleft size-full wp-image-1116" src="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.38.29-AM.png" alt="" width="291" height="133" /></a></p>
<p>&nbsp;</p>
<p>We made the text un-gendered, though much of the text on the diet site is geared towards men seeking enhanced virility</p>
<p>Here are the stats on how this ad performed during the week:</p>
<p><a href="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.40.13-AM.png"><img class="alignleft size-large wp-image-1117" src="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.40.13-AM-1024x602.png" alt="" width="640" height="376" /></a></p>
<p>&nbsp;</p>
<p>Here is the ad which was seen in Mongolia and statistics on its performance:</p>
<p><a href="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.30.04-AM.png"><img class="alignleft size-full wp-image-1114" src="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.30.04-AM.png" alt="" width="279" height="149" /></a></p>
<p><a href="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.29.49-AM1.png"><img class="alignleft size-large wp-image-1118" src="http://itp.nyu.edu/~mz46/renatured/wp-content/uploads/2012/10/Screen-Shot-2012-10-17-at-11.29.49-AM1-1024x500.png" alt="" width="640" height="312" /></a></p>
<p>visit <a href="http://mongolianhorseman.com">mongolianhorseman.com</a> today and feel your power.</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2012/10/18/503/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SCHLOSSWORLD USER TESTING</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2012/10/18/schlossworld-user-testing/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2012/10/18/schlossworld-user-testing/#comments</comments>
		<pubDate>Thu, 18 Oct 2012 15:48:57 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[Embodied Play]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=493</guid>
		<description><![CDATA[Here is what happened in my user testing this week: It was really difficult to figure out how to test the interactions I wanted to have in my game, and when i tried to plan tests for some of the &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2012/10/18/schlossworld-user-testing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is what happened in my user testing this week:</p>
<p><iframe src="http://player.vimeo.com/video/51686949" width="202" height="360" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p>It was really difficult to figure out how to test the interactions I wanted to have in my game, and when i tried to plan tests for some of the elements I had, they seemed to make less and less sense, leading me to re-imagine and more rigorously examine the experience and setup of my game (which, needless to say, was an extremely useful process). I settled on a game for user testing with two rounds, to test two different embodied actions: round one was a race to drop balls in a bin using only your legs, to see if it was fun to plié to release your ammunition, and the second round was a race to knock a bunch of boxes off a table using only one&#8217;s head, to see how a head-focused interaction would go.</p>
<p>I asked the following of my users after they played the game:</p>
<p>scale the following statements from 1 -5 ranging from false to true:</p>
<p>you had fun  1     2      3     4     5</p>
<p>you have never played a game like this before 1     2      3     4     5</p>
<p>you thought it was sort of funny to drop a ball by plié-ing  1     2      3     4     5</p>
<p>you wanted to use your hands to knock the boxes off 1     2      3     4     5</p>
<p>its fun to play a game using your head  1     2      3     4     5</p>
<p>and here are my results:</p>
<p><a href="http://itp.nyu.edu/~rs3836/blog/wp-content/uploads/2012/10/Schlossworld-User-Testing-Sheet1.pdf">Schlossworld User Testing &#8211; Sheet1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2012/10/18/schlossworld-user-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D PENCIL</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2012/10/05/3d-pencil/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2012/10/05/3d-pencil/#comments</comments>
		<pubDate>Fri, 05 Oct 2012 19:20:40 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[3dsav]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=485</guid>
		<description><![CDATA[FOR 3DSAV THIS WEEK, KYLE ASKED US TO TAKE INFORMATION FROM A 3D MODEL AND USE IT TO MAKE A PHYSICAL 3D MODEL.  I TOOK A MESH OF A PENCIL FROM THE INTERNET, REDUCED THE NUMBER OF POLYGONS IN MESHLAB, &#8230; <a href="http://itp.nyu.edu/~rs3836/blog/2012/10/05/3d-pencil/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: left;"><span style="clear: left; float: left; margin-right: 1em; margin-bottom: 1em;">FOR 3DSAV THIS WEEK, KYLE ASKED US TO TAKE INFORMATION FROM A 3D MODEL AND USE IT TO MAKE A PHYSICAL 3D MODEL.  I TOOK A MESH OF A PENCIL FROM THE INTERNET, REDUCED THE NUMBER OF POLYGONS IN MESHLAB, THEN OPENED IT IN SKETCHUP, USED A PLUGIN CALLED UNFOLD TOOL TO UNFOLD ALL THE POLYGONS TO MAKE IT FLAT, THEN PRINTED IT OUT ON A PIECE OF PAPER, CUT IT OUT AND FOLDED IT UP. </span></div>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: left; float: left; margin-right: 1em; margin-bottom: 1em;" href="http://4.bp.blogspot.com/-_ihmSpYQsGg/UG5JXQ1O08I/AAAAAAAAAfg/hcbPfXc7G-8/s1600/Screen%2BShot%2B2012-10-04%2Bat%2B10.10.12%2BPM.png"><img src="http://4.bp.blogspot.com/-_ihmSpYQsGg/UG5JXQ1O08I/AAAAAAAAAfg/hcbPfXc7G-8/s320/Screen%2BShot%2B2012-10-04%2Bat%2B10.10.12%2BPM.png" alt="" width="320" height="153" border="0" /><br />
</a><a style="clear: left; float: left; margin-right: 1em; margin-bottom: 1em;" href="http://4.bp.blogspot.com/-_ihmSpYQsGg/UG5JXQ1O08I/AAAAAAAAAfg/hcbPfXc7G-8/s1600/Screen%2BShot%2B2012-10-04%2Bat%2B10.10.12%2BPM.png"><br />
</a><a href="http://itp.nyu.edu/~rs3836/blog/wp-content/uploads/2012/10/Screen-Shot-2012-10-04-at-9.00.27-PM.png"><img class="aligncenter size-medium wp-image-489" title="Screen Shot 2012-10-04 at 9.00.27 PM" src="http://itp.nyu.edu/~rs3836/blog/wp-content/uploads/2012/10/Screen-Shot-2012-10-04-at-9.00.27-PM-300x163.png" alt="" width="300" height="163" /></a><a style="clear: left; float: left; margin-right: 1em; margin-bottom: 1em;" href="http://4.bp.blogspot.com/-_ihmSpYQsGg/UG5JXQ1O08I/AAAAAAAAAfg/hcbPfXc7G-8/s1600/Screen%2BShot%2B2012-10-04%2Bat%2B10.10.12%2BPM.png"><img src="http://1.bp.blogspot.com/-uoLApjdyqik/UG5JWzytgVI/AAAAAAAAAfU/4aJz71WVwi0/s320/photo%2B%25286%2529.JPG" alt="" width="240" height="320" border="0" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2012/10/05/3d-pencil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>COCKED BROWS FOR PEACE</title>
		<link>http://itp.nyu.edu/~rs3836/blog/2012/09/28/cocked-brows-for-peace/</link>
		<comments>http://itp.nyu.edu/~rs3836/blog/2012/09/28/cocked-brows-for-peace/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 20:17:14 +0000</pubDate>
		<dc:creator>roseschlossberg</dc:creator>
				<category><![CDATA[3dsav]]></category>

		<guid isPermaLink="false">http://itp.nyu.edu/~rs3836/blog/?p=481</guid>
		<description><![CDATA[&#160; 3dsav homework #3 Got data about my left eyebrow position from faceshift- got into openFrameworks using Kyle McDonalds ofxfaceshift visualizer example, send serial data to arduino]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/50345246" width="270" height="360" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p>&nbsp;</p>
<p>3dsav homework #3</p>
<p>Got data about my left eyebrow position from faceshift- got into openFrameworks using Kyle McDonalds ofxfaceshift visualizer example, send serial data to arduino</p>
]]></content:encoded>
			<wfw:commentRss>http://itp.nyu.edu/~rs3836/blog/2012/09/28/cocked-brows-for-peace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
