UrbanTakeover soup (without imported items) http://urbantakeover.soup.io/ UrbanTakeover soup (without imported items) http://urbantakeover.soup.io/ http://0.asset.soup.io/asset/0043/2144_ff59.png 48 48 this is where team urbantakeover blogs. "tumblr supports group blogs, which makes it easier for us to ... you know ......" {"tags":[],"type":"quote","title":"team uto","source":null,"body":"tumblr supports group blogs, which makes it easier for us to ... you know ... group blog.\u003Cbr /\u003E\u003Cbr /\u003Eso we moved to \u003Ca href=\"http://urbantakeover.tumblr.com/\"\u003Ehttp://blog.urbantakeover.at/\u003C/a\u003E\u003Cbr /\u003E\u003Cbr /\u003Ealso: soup removed our google analytics. *grr"} <p>"tumblr supports group blogs, which makes it easier for us to ... you know ... group blog.<br /><br />so we moved to <a href="http://urbantakeover.tumblr.com/">http://blog.urbantakeover.at/</a><br /><br />also: soup removed our google analytics. *grr"</p><p>&ndash;team uto</p>Mon, 31 Mar 2008 17:01:12 GMThttp://urbantakeover.soup.io/post/1950868/tumblr-supports-group-blogs-which-makes-iturn:www-soup-io:1:1950868quote "To demonstrate:class MyClass private def say_hello(name) p..." {"tags":[],"type":"quote","title":"\u003Ca href=\"http://joshstaiger.org/archives/2006/12/the_ruby_send_h.html\"\u003EJosh Staiger: The Ruby send hack: how to gain access to an object's privates\u003C/a\u003E","source":"http://joshstaiger.org/archives/2006/12/the_ruby_send_h.html","body":"\u003Cp\u003ETo demonstrate:\u003C/p\u003E\u003Cpre class=\"code\"\u003Eclass MyClass\r\n private\r\n def say_hello(name)\r\n puts \"Let's go back to my place, #{name}.\"\r\n end\r\nend\r\n\r\nmy_object = MyClass.new\r\n\u003C/pre\u003ESo we get smacked if we try:\u003Cpre class=\"code\"\u003E\u003E my_object.say_hello\r\nNomethoderror: private method `say_hello' called for #\u0026lt;MyClass:0x820b4\u003E\r\n\tfrom (irb):8\r\n\tfrom :0\u003C/pre\u003Ebut instead:\u003Cpre class=\"code\"\u003E\u003E my_object.send :say_hello, \"world\"\r\nLet's go back to my place, world.\u003C/pre\u003E\u003Cp\u003ETouch\u00e9!\u003C/p\u003E\u003Cp\u003ENow, honestly, this strikes me as odd. Conceptually, I don't see why\u003Ccode\u003Esend\u003C/code\u003E\u00a0should function differently from an ordinary method call with respect to access control.\u003C/p\u003E"} <p>"<p>To demonstrate:</p><pre class="code">class MyClass private def say_hello(name) puts "Let's go back to my place, #{name}." end end my_object = MyClass.new </pre>So we get smacked if we try:<pre class="code">> my_object.say_hello Nomethoderror: private method `say_hello' called for #&lt;MyClass:0x820b4> from (irb):8 from :0</pre>but instead:<pre class="code">> my_object.send :say_hello, "world" Let's go back to my place, world.</pre><p>Touché!</p><p>Now, honestly, this strikes me as odd. Conceptually, I don't see why<code>send</code> should function differently from an ordinary method call with respect to access control.</p>"</p><p>&ndash;<a href="http://joshstaiger.org/archives/2006/12/the_ruby_send_h.html">Josh Staiger: The Ruby send hack: how to gain access to an object's privates</a></p>Sat, 29 Mar 2008 20:15:45 GMThttp://urbantakeover.soup.io/post/1917154/To-demonstrate-class-MyClass-private-def-sayurn:www-soup-io:1:1917154quote Ask E.T.: Sparklines: theory and practice {"tags":[],"type":"link","title":"Ask E.T.: Sparklines: theory and practice","source":"http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR\u0026topic_id=1\u0026topic=","body":null} <p><a href="http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR&amp;topic_id=1&amp;topic=">http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001OR&topic_id=1&topic=</a></p>Sat, 29 Mar 2008 20:15:27 GMThttp://urbantakeover.soup.io/post/1917148/Ask-E-T-Sparklines-theory-and-practiceurn:www-soup-io:1:1917148link Sparkline PHP Graphing Library {"tags":[],"type":"link","title":"Sparkline PHP Graphing Library","source":"http://sparkline.org/","body":"But where's the Ruby Version? -_-"} <p>But where's the Ruby Version? -_-</p> <p><a href="http://sparkline.org/">http://sparkline.org/</a></p>Sat, 29 Mar 2008 20:05:56 GMThttp://urbantakeover.soup.io/post/1916995/Sparkline-PHP-Graphing-Libraryurn:www-soup-io:1:1916995link " = Exception Notifier Plugin for Rails First, include the ExceptionNotifi..." {"tags":[],"type":"quote","title":"script/plugin install \u003Ca href=\"http://svn.rubyonrails.org/rails/plugins/exception_notification/README\"\u003Ehttp://svn.rubyonrails.org/rails/plugins/exception_notification/\u003C/a\u003E","source":"http://svn.rubyonrails.org/rails/plugins/exception_notification/README","body":"\u003Cpre\u003E\r\n= Exception Notifier Plugin for Rails\r\n\r\nFirst, include the ExceptionNotifiable mixin in whichever controller you want\r\nto generate error emails (typically ApplicationController):\r\n\r\n class ApplicationController \u003C ActionController::Base\r\n include ExceptionNotifiable\r\n ...\r\n end\r\n\r\nThen, specify the email recipients in your environment:\r\n\r\n ExceptionNotifier.exception_recipients = %w(joe@schmoe.com bill@schmoe.com)\r\n\r\nAnd that's it! The defaults take care of the rest.\r\n\u003C/pre\u003E"} <p>"<pre> = Exception Notifier Plugin for Rails First, include the ExceptionNotifiable mixin in whichever controller you want to generate error emails (typically ApplicationController): class ApplicationController &lt; ActionController::Base include ExceptionNotifiable ... end Then, specify the email recipients in your environment: ExceptionNotifier.exception_recipients = %w(joe@schmoe.com bill@schmoe.com) And that's it! The defaults take care of the rest. </pre>"</p><p>&ndash;script/plugin install <a href="http://svn.rubyonrails.org/rails/plugins/exception_notification/README">http://svn.rubyonrails.org/rails/plugins/exception_notification/</a></p>Sat, 29 Mar 2008 11:11:54 GMThttp://urbantakeover.soup.io/post/1906049/Exception-Notifier-Plugin-for-Rails-First-includeurn:www-soup-io:1:1906049quote I <3 Ruby On Rails {"tags":[],"type":"regular","title":"I \u003C3 Ruby On Rails ","source":null,"body":"at my ruby nightjob i hack for fun. this is a part of the urbantakeover \"who or what the fuck are you looking for?\" just like Wikipedia's \u003Ca href=\"http://en.wikipedia.org/wiki/Desu\"\u003Edisambiguation pages\u003C/a\u003E.\u003Cbr /\u003E\u003Cbr /\u003EThe quick \u0026amp; dirty way only searches for Users and Spots at the moment, which works for \u003Ca href=\"http://urbantakeover.at/astera\"\u003Eastera\u003C/a\u003E (spot \u0026amp; user) but fails at \u003Ca href=\"http://urbantakeover.at/metalab\"\u003Emetalab\u003C/a\u003E\u003Cem\u003E\u003C/em\u003E (spot \u0026amp; team).\u003Cbr /\u003E\u003Cbr /\u003EThus we'll hack together a dynamic solution:\u003Cbr /\u003E\u003Cpre\u003Estuff = []\u003Cbr /\u003E[User, Spot, Team].each do |model_class|\u003Cbr /\u003E stuff \u0026lt;\u0026lt; model_class.find_by_name params[:name]\u003Cbr /\u003Eend\u003Cbr /\u003E\u003Cbr /\u003Eif stuff.size == 1\u003Cbr /\u003E thing = stuff.first\u003Cbr /\u003E\u0026nbsp; redirect_to :controller =\u0026gt; thing.class.name.downcase, :action =\u0026gt; 'show_by_name', :name =\u0026gt; thing.name\u003Cbr /\u003Eelse\u003Cbr /\u003E #shows a wikipedia style \"disambiguation\" page\u003Cbr /\u003E @things = stuff\u003Cbr /\u003E render :template =\u0026gt; 'disambiguate'\u003Cbr /\u003Eend\u003C/pre\u003E \u003Cem\u003Enote, i haven't tried this yet, but it *should* work.\u003C/em\u003E"} at my ruby nightjob i hack for fun. this is a part of the urbantakeover "who or what the fuck are you looking for?" just like Wikipedia's <a href="http://en.wikipedia.org/wiki/Desu">disambiguation pages</a>.<br /><br />The quick &amp; dirty way only searches for Users and Spots at the moment, which works for <a href="http://urbantakeover.at/astera">astera</a> (spot &amp; user) but fails at <a href="http://urbantakeover.at/metalab">metalab</a><em></em> (spot &amp; team).<br /><br />Thus we'll hack together a dynamic solution:<br /><pre>stuff = []<br />[User, Spot, Team].each do |model_class|<br /> stuff &lt;&lt; model_class.find_by_name params[:name]<br />end<br /><br />if stuff.size == 1<br /> thing = stuff.first<br />&nbsp; redirect_to :controller =&gt; thing.class.name.downcase, :action =&gt; 'show_by_name', :name =&gt; thing.name<br />else<br /> #shows a wikipedia style "disambiguation" page<br /> @<a href="http://things.soup.io">things</a> = stuff<br /> render :template =&gt; 'disambiguate'<br />end</pre> <em>note, i haven't tried this yet, but it *should* work.</em>Fri, 28 Mar 2008 21:08:48 GMThttp://urbantakeover.soup.io/post/1896718/I-3-Ruby-On-Railsurn:www-soup-io:1:1896718regular eval is your friend {"tags":[],"type":"regular","title":"eval is your friend","source":null,"body":"at my python dayjob i'm writing a chat protocol. it should be possible to extend the protocol later on by adding\u0026nbsp;new subprotocols (command sets) to achieve this i use listeners for each additional subprotocol.\u003Cbr /\u003E\u003Cbr /\u003Ethe quick and dirty way to get some is:\u003Cbr /\u003E\u003Ccode\u003E\u003C/code\u003E\u003Cpre\u003Eself.listeners = {\u003Cbr /\u003E 'chat' : ChatListener(environment, self),\u003Cbr /\u003E 'table' : TableListener(environment, self),\u003Cbr /\u003E 'stats' : StatsListener(environment, self) }\u003C/pre\u003E\u003Cbr /\u003Ebut as soon as you have to add a lot of listeners it get's tedious to duplicate all the \u0026lt;code\u0026gt;*Listener(environment, self)\u0026lt;/code\u0026gt; cruft.\u003Cbr /\u003E\u003Cbr /\u003Eso to keep things \u003Ca href=\"http://en.wikipedia.org/wiki/DRY\"\u003EDRY\u003C/a\u003E i took the dynamic route:\u003Cbr /\u003E\u003Ccode\u003E\u003C/code\u003E\u003Cpre\u003Elistener_names = ['chat', 'table', 'stats', 'more', 'evenmoar', 'cthulhu', 'lol', 'catz']\u003Cbr /\u003Eself.listeners = {}\u003Cbr /\u003Efor listener_name in listener_names:\u003Cbr /\u003E _class = eval(\"%sListener\" % listener_name.capitalize())\u003Cbr /\u003E self.listeners[listener] = _class(environment, self)\u003C/pre\u003E\u003Cbr /\u003Ewhich looks super confusing, but is SUPER EFFECTIVE!\u003Cbr /\u003E\u003Cbr /\u003Ealso circular references are teh suck. i want code running in\u0026nbsp;contexts. to be able to omit the self parameter.\u003Cbr /\u003E\u003Cbr /\u003Ebut maybe i'm doing it wrong.\u003Cbr /\u003E\u003Cbr /\u003E@hacking @starred"} at my python dayjob i'm writing a chat protocol. it should be possible to extend the protocol later on by adding&nbsp;new subprotocols (command sets) to achieve this i use listeners for each additional subprotocol.<br /><br />the quick and dirty way to get some is:<br /><code></code><pre>self.listeners = {<br /> 'chat' : ChatListener(environment, self),<br /> 'table' : TableListener(environment, self),<br /> 'stats' : StatsListener(environment, self) }</pre><br />but as soon as you have to add a lot of listeners it get's tedious to duplicate all the &lt;code&gt;*Listener(environment, self)&lt;/code&gt; cruft.<br /><br />so to keep things <a href="http://en.wikipedia.org/wiki/DRY">DRY</a> i took the dynamic route:<br /><code></code><pre>listener_names = ['chat', 'table', 'stats', 'more', 'evenmoar', 'cthulhu', 'lol', 'catz']<br />self.listeners = {}<br />for listener_name in listener_names:<br /> _class = eval("%sListener" % listener_name.capitalize())<br /> self.listeners[listener] = _class(environment, self)</pre><br />which looks super confusing, but is SUPER EFFECTIVE!<br /><br />also circular references are teh suck. i want code running in&nbsp;contexts. to be able to omit the self parameter.<br /><br />but maybe i'm doing it wrong.<br /><br />@<a href="http://hacking.soup.io">hacking</a> @starredFri, 28 Mar 2008 21:08:38 GMThttp://urbantakeover.soup.io/post/1896714/eval-is-your-friendurn:www-soup-io:1:1896714regular Bam Oida! :-) {"tags":[],"type":"image","source":"http://flickr.com/photos/asterasnowwhite/2359595706/in/pool-urbantakeover","body":"Bam Oida! :-)","url":"http://a.asset.soup.io/asset/0048/4970_0837.jpeg"} <p><a href="http://flickr.com/photos/asterasnowwhite/2359595706/in/pool-urbantakeover"><img alt="4970_0837_400" height="224" src="http://a.asset.soup.io/asset/0048/4970_0837_400.jpeg" width="400" /></a></p> <p>Bam Oida! :-)</p><p>[Reposted from <span class="user_container user4952" ><a class="" href="http://upsidedown.soup.io"><span class="name">upsidedown</span></a></span>]</p>Fri, 28 Mar 2008 10:51:21 GMThttp://urbantakeover.soup.io/post/1889245/Bam-Oidaurn:www-soup-io:1:1889245image UTO invades hamburg (thanks astera) :D {"tags":[],"type":"image","source":null,"body":"UTO invades hamburg (thanks \u003Ca href=\"http://urbantakeover.at/astera\"\u003Eastera\u003C/a\u003E) :D","url":"http://c.asset.soup.io/asset/0048/9052_2ae7.png"} <p><a href=""><img alt="9052_2ae7_400" height="289" src="http://c.asset.soup.io/asset/0048/9052_2ae7_400.png" width="400" /></a></p> <p>UTO invades hamburg (thanks <a href="http://urbantakeover.at/astera">astera</a>) :D</p>Fri, 28 Mar 2008 10:47:43 GMThttp://urbantakeover.soup.io/post/1889225/UTO-invades-hamburg-thanks-astera-Durn:www-soup-io:1:1889225image "1 799 U.S. dollars = 1 146 Euros" {"tags":[],"type":"quote","title":"OMG LOL! via \u003Ca href=\"http://www.google.at/search?hl=de\u0026amp;client=firefox-a\u0026amp;rls=org.mozilla%3Aen-US%3Aofficial\u0026amp;hs=ccW\u0026amp;q=1799USD+in+EUR\u0026amp;btnG=Suche\u0026amp;meta=\"\u003EGoogle\u003C/a\u003E","source":"http://www.google.at/search?hl=de\u0026client=firefox-a\u0026rls=org.mozilla%3Aen-US%3Aofficial\u0026hs=ccW\u0026q=1799USD+in+EUR\u0026btnG=Suche\u0026meta=","body":"1 799 U.S. dollars = 1 146 Euros"} <p>"1 799 U.S. dollars = 1 146 Euros"</p><p>&ndash;OMG LOL! via <a href="http://www.google.at/search?hl=de&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=ccW&amp;q=1799USD+in+EUR&amp;btnG=Suche&amp;meta=">Google</a></p>Fri, 28 Mar 2008 10:36:01 GMThttp://urbantakeover.soup.io/post/1889194/1-799-U-S-dollars-1-146urn:www-soup-io:1:1889194quote also: you can change your teamcolour now and everything is nicer. {"tags":[],"type":"image","source":null,"body":"also: you can change your teamcolour now and everything is nicer.","url":"http://4.asset.soup.io/asset/0048/4772_c5ea.png"} <p><a href=""><img alt="4772_c5ea_400" height="280" src="http://4.asset.soup.io/asset/0048/4772_c5ea_400.png" width="400" /></a></p> <p>also: you can change your teamcolour now and everything is nicer.</p>Thu, 27 Mar 2008 09:32:25 GMThttp://urbantakeover.soup.io/post/1869168/also-you-can-change-your-teamcolour-nowurn:www-soup-io:1:1869168image due to a code error we now again have colour circles: {"tags":[],"type":"image","source":null,"body":"due to a code error we now again have colour circles:\u003Cbr /\u003E\u003Cbr /\u003Ealso: preparations for flickr are done.\u003Cbr /\u003Ealso: email notifications should work shortly\u003Cbr /\u003Ealso: different city guy still missing %/","url":"http://0.asset.soup.io/asset/0048/4768_9358.png"} <p><a href=""><img alt="4768_9358_400" height="295" src="http://0.asset.soup.io/asset/0048/4768_9358_400.png" width="400" /></a></p> <p>due to a code error we now again have colour circles:<br /><br />also: preparations for flickr are done.<br />also: email notifications should work shortly<br />also: different city guy still missing %/</p>Thu, 27 Mar 2008 09:27:34 GMThttp://urbantakeover.soup.io/post/1869137/due-to-a-code-error-we-nowurn:www-soup-io:1:1869137image o_O {"tags":[],"type":"image","source":"http://flickr.com/photos/24840502@N03/2349892366/in/pool-urbantakeover","body":"o_O","url":"http://4.asset.soup.io/asset/0046/0180_1962.jpeg"} <p><a href="http://flickr.com/photos/24840502@N03/2349892366/in/pool-urbantakeover"><img alt="0180_1962_400" height="300" src="http://4.asset.soup.io/asset/0046/0180_1962_400.jpeg" width="400" /></a></p> <p>o_O</p>Fri, 21 Mar 2008 20:31:33 GMThttp://urbantakeover.soup.io/post/1763635/o-Ourn:www-soup-io:1:1763635image uto {"tags":[],"type":"regular","title":"uto","source":null,"body":"\u0026nbsp;+= tupalo integration.\u003Cbr /\u003E\u003Cbr /\u003Eclaim any spot without an address. works if it's on tupalo. yay hooray!\u003Cbr /\u003E\u003Cbr /\u003Ealso: bugfixes and stuff."} &nbsp;+= tupalo integration.<br /><br />claim any spot without an address. works if it's on tupalo. yay hooray!<br /><br />also: bugfixes and stuff.Wed, 19 Mar 2008 12:20:51 GMThttp://urbantakeover.soup.io/post/1714785/utourn:www-soup-io:1:1714785regular war? {"tags":[],"type":"image","source":"http://www.flickr.com/photos/asterasnowwhite/2338771988/in/pool-urbantakeover/","body":"war?\u003Cbr /\u003E\u003Cbr /\u003Ethis reminds me get a non-competitive element in the game.\u003Cbr /\u003E\u003Cbr /\u003Ealso: yay for using the stickers to post notes/comments!","url":"http://4.asset.soup.io/asset/0044/5716_a5bd.jpeg"} <p><a href="http://www.flickr.com/photos/asterasnowwhite/2338771988/in/pool-urbantakeover/"><img alt="5716_a5bd" height="500" src="http://4.asset.soup.io/asset/0044/5716_a5bd.jpeg" width="281" /></a></p> <p>war?<br /><br />this reminds me get a non-competitive element in the game.<br /><br />also: yay for using the stickers to post notes/comments!</p>Tue, 18 Mar 2008 17:00:06 GMThttp://urbantakeover.soup.io/post/1698533/warurn:www-soup-io:1:1698533image custom stickers? yeah! {"tags":[],"type":"image","source":"http://www.flickr.com/photos/kewagi/2342434309/in/pool-urbantakeover","body":"custom stickers? yeah!","url":"http://2.asset.soup.io/asset/0044/5714_8ff4.jpeg"} <p><a href="http://www.flickr.com/photos/kewagi/2342434309/in/pool-urbantakeover"><img alt="5714_8ff4_400" height="300" src="http://2.asset.soup.io/asset/0044/5714_8ff4_400.jpeg" width="400" /></a></p> <p>custom stickers? yeah!</p>Tue, 18 Mar 2008 16:58:45 GMThttp://urbantakeover.soup.io/post/1698525/custom-stickers-yeahurn:www-soup-io:1:1698525image Flickr: The urban takeover Pool {"tags":[],"type":"link","title":"Flickr: The urban takeover Pool","source":"http://www.flickr.com/groups/urbantakeover/pool/","body":"w00t!"} <p>w00t!</p> <p><a href="http://www.flickr.com/groups/urbantakeover/pool/">http://www.flickr.com/groups/urbantakeover/pool/</a></p>Tue, 18 Mar 2008 16:58:27 GMThttp://urbantakeover.soup.io/post/1698522/Flickr-The-urban-takeover-Poolurn:www-soup-io:1:1698522link go leo! {"tags":[],"type":"image","source":null,"body":"go leo!","url":"http://b.asset.soup.io/asset/0044/0171_4ac4.png"} <p><a href=""><img alt="0171_4ac4_400" height="293" src="http://b.asset.soup.io/asset/0044/0171_4ac4_400.png" width="400" /></a></p> <p>go leo!</p>Mon, 17 Mar 2008 12:24:37 GMThttp://urbantakeover.soup.io/post/1679812/go-leourn:www-soup-io:1:1679812image (Image) {"tags":[],"type":"image","source":null,"body":null,"url":"http://7.asset.soup.io/asset/0043/5703_2c49.png"} <p><a href=""><img alt="5703_2c49_400" height="293" src="http://7.asset.soup.io/asset/0043/5703_2c49_400.png" width="400" /></a></p> <p></p>Sun, 16 Mar 2008 08:45:39 GMThttp://urbantakeover.soup.io/post/1665214/Imageurn:www-soup-io:1:1665214image w00t! {"tags":[],"type":"image","source":null,"body":"w00t!","url":"http://8.asset.soup.io/asset/0043/1656_dafa.png"} <p><a href=""><img alt="1656_dafa_400" height="257" src="http://8.asset.soup.io/asset/0043/1656_dafa_400.png" width="400" /></a></p> <p>w00t!</p>Sat, 15 Mar 2008 10:48:52 GMThttp://urbantakeover.soup.io/post/1654032/w00turn:www-soup-io:1:1654032image team 72dpi > NERDS ROCK. ^__^ *grin {"tags":[],"type":"image","source":null,"body":"team 72dpi \u0026gt; NERDS ROCK. ^__^ *grin","url":"http://6.asset.soup.io/asset/0043/1254_257f.png"} <p><a href=""><img alt="1254_257f_400" height="441" src="http://6.asset.soup.io/asset/0043/1254_257f_400.png" width="400" /></a></p> <p>team 72dpi &gt; NERDS ROCK. ^__^ *grin</p>Sat, 15 Mar 2008 07:47:00 GMThttp://urbantakeover.soup.io/post/1652875/team-72dpi-NERDS-ROCK-grinurn:www-soup-io:1:1652875image o__O -{ wtf reverse development, lol? {"tags":[],"type":"regular","title":"o__O -{ wtf reverse development, lol?","source":null,"body":"posts below are in weird chronological order, because i just scrolled through my friends feed and reposted them."} posts below are in weird chronological order, because i just scrolled through my friends feed and reposted them.Sat, 15 Mar 2008 07:03:57 GMThttp://urbantakeover.soup.io/post/1652678/o-O-wtf-reverse-development-lolurn:www-soup-io:1:1652678regular BAM! sleep is highly overrated. {"tags":[],"type":"image","source":null,"body":"\u003Cdiv\u003EBAM! sleep is highly overrated.\u003C/div\u003E","url":"http://4.asset.soup.io/asset/0039/1972_018e.png"} <p><a href=""><img alt="1972_018e_400" height="482" src="http://4.asset.soup.io/asset/0039/1972_018e_400.png" width="400" /></a></p> <p><div>BAM! sleep is highly overrated.</div></p>Sat, 15 Mar 2008 07:01:57 GMThttp://urbantakeover.soup.io/post/1652617/BAM-sleep-is-highly-overratedurn:www-soup-io:1:1652617image ^_^' {"tags":[],"type":"image","source":null,"body":"^_^'\u003Cbr /\u003E\u003Cbr /\u003E[x] claim spots: \u003Cem\u003Eget your name up in your city\u003C/em\u003E\u003Cbr /\u003E[ ] collect stuff: \u003Cem\u003Ename/tag/describe everything\u003C/em\u003E (thanks astera \u0026amp; wirehead\u003Cbr /\u003E[ ] top the highscore with your friends\u003Cbr /\u003E\u003Cbr /\u003Eurban takeover + urban katamari + tag the real world for the internet = yay hooray!","url":"http://e.asset.soup.io/asset/0040/9246_d992.png"} <p><a href=""><img alt="9246_d992_400" height="248" src="http://e.asset.soup.io/asset/0040/9246_d992_400.png" width="400" /></a></p> <p>^_^'<br /><br />[x] claim spots: <em>get your name up in your city</em><br />[ ] collect stuff: <em>name/tag/describe everything</em> (thanks astera &amp; wirehead<br />[ ] top the highscore with your friends<br /><br />urban takeover + urban katamari + tag the real world for the internet = yay hooray!</p>Sat, 15 Mar 2008 07:00:50 GMThttp://urbantakeover.soup.io/post/1652608/urn:www-soup-io:1:1652608image step 0: hackmode on. ^__^ {"tags":[],"type":"image","source":null,"body":"step 0: hackmode on. ^__^","url":"http://0.asset.soup.io/asset/0043/1120_1ae1.png"} <p><a href=""><img alt="1120_1ae1_400" height="270" src="http://0.asset.soup.io/asset/0043/1120_1ae1_400.png" width="400" /></a></p> <p>step 0: hackmode on. ^__^</p>Sat, 15 Mar 2008 07:00:16 GMThttp://urbantakeover.soup.io/post/1652599/step-0-hackmode-onurn:www-soup-io:1:1652599image haha, the syntax highlighting accidentally made my point extra clear. yay the... {"tags":[],"type":"image","source":null,"body":"haha, the syntax highlighting accidentally made my point extra clear. yay the web!","url":"http://8.asset.soup.io/asset/0043/1144_5352.png"} <p><a href=""><img alt="1144_5352_400" height="15" src="http://8.asset.soup.io/asset/0043/1144_5352_400.png" width="400" /></a></p> <p>haha, the syntax highlighting accidentally made my point extra clear. yay the web!</p>Sat, 15 Mar 2008 07:00:13 GMThttp://urbantakeover.soup.io/post/1652598/haha-the-syntax-highlighting-accidentally-made-myurn:www-soup-io:1:1652598image