<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>marcosweskamp</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/" />
    <link rel="self" type="application/atom+xml" href="http://marcosweskamp.com/blog/atom.xml" />
    <id>tag:marcosweskamp.com,2008-08-23:/blog//1</id>
    <updated>2008-08-23T03:40:43Z</updated>
    <subtitle>{+_+}</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.21-en</generator>

<entry>
    <title>Debugging AS3 with firebug&apos;s console</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2007/03/debugging-as3-with-firebugs-console.html" />
    <id>tag:marcosweskamp.com,2007:/blog//1.114</id>

    <published>2007-03-25T20:45:41Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> Most probably you&apos;ve already heard about firebug, if you haven&apos;t, I really recommend you go give it a spin right now. Basically, firebug let&apos;s you lift the hood in your browser and see pretty much everything that&apos;s happening in...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
        <category term="flash" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://www.marcosweskamp.com/blog/img/firebug.jpg" alt="firebug output"></p>

<p>Most probably you've already heard about <a href="http://getfirebug.com/">firebug</a>, if you haven't, I really recommend you go give it a spin right now.</p>

<p>Basically, firebug let's you lift the hood in your browser and see pretty much everything that's happening in there. It lets you edit, and monitor all HTML, CSS, Javascript live in any web page - it even lets you edit those objects on the fly!</p>

<p>It also gives you a fantastic console that lets you expose information about what's flowing through your scripts. Adding a global variable named "console" it exposes many methods that allow you to write to the Firebug console.</p>

<p>The really cool thing is that from flash you can call "console" using ExternalInterface, and any object you pass will be dumped as if it was a javascript object.</p>

<p>try it out, go:<br />
<code><pre><br />
ExternalInterface.call("console.log",{foo:123,bar:"da",boo:{da:12,beh:[123,145,"dfa",{fa:[0,1,2,4,5]}]}});<br />
</pre></code></p>

<p>and you will see the output in the image above.</p>

<p>To save you some time and make things cleaner, <a href="http://www.marcosweskamp.com/blog/docs/Console.as">here</a> you will find an AS3 Class that exposes the console object to any of your Actionscript/flex applications.</p>

<p>All methods are static so you don't need to instantiate the class.</p>

<p>From actionscript, all you need to do now is:<code><pre><br />
Console.log({foo:123,bar:"da",boo:{da:12,beh:[123,145,"dfa",{fa:[0,1,2,4,5]}]}});<br />
</pre></code></p>

<p>I guess the only drawback for this is that this will bong out if you are trying to dump an object with circular references, or your object is too big. - I can't find out what's the size limit right now, but I've seen it throwing an exception when the objects I passed where too complex.</p>

<p>In case you need something more robust to debug your code, then I really recommend you try out FlexBuilder's debugger.</p>

<p>download: <a href="http://www.marcosweskamp.com/blog/docs/Console.as">Console.as</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>not slacking!</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2007/03/not-slacking.html" />
    <id>tag:marcosweskamp.com,2007:/blog//1.113</id>

    <published>2007-03-23T21:54:04Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> way too much going on, this past year has been sleepless. I&apos;ve managed to take on a good bunch of monumental projects that have kept me quiet to the outside world. Now that I see the light at the...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://www.marcosweskamp.com/blog/img/sketch.jpg" alt="sketch"/></p>

<p>way too much going on, this past year has been sleepless.<br />
I've managed to take on a good bunch of monumental projects that have kept me quiet to the outside world. <br />
Now that I see the light at the end of the tunnel, I'm definitively committed to flip that up.</p>

<p>expect updates, soon, very very soon...</p>]]>
        
    </content>
</entry>

<entry>
    <title>Phidgets AS3</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2006/07/phidgets-as3.html" />
    <id>tag:marcosweskamp.com,2006:/blog//1.112</id>

    <published>2006-07-17T10:20:09Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>Here&apos;s an Alpha AS3 rewrite of the AS2 phidgets Library. It&apos;s still very early on the developing process, but I thought I&apos;d give everyone who might be interested a quick peek of what you can do with it.</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
        <category term="flash" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://www.marcosweskamp.com/blog/img/phidgets.jpg" border="0" alt="Phidgets AS3"/><br/><br />
Here's an Alpha AS3 rewrite of the AS2 <a href="http://phidgets.com">phidgets</a> Library. It's still very early on the developing process, but I thought I'd give everyone who might be interested a quick peek of what you can do with it. </p>

<p>download:</p>

<p><a href="http://marumushi.com/downloads/phidgets/PhidgetLibrarySource.zip" >Source and Samples</a> (756 kb)<br />
<a href="http://marumushi.com/downloads/phidgets/PhidgetLibrarySWC.zip" >SWC (Compiled code)</a> (38kb)</p>

<p>you will need to have installed  <a href="http://phidgets.com/modules.php?op=modload&name=Downloads&file=index&req=viewdownload&cid=2">Phidgets.msi </a>and have the PhidgetWebService running in order to properly connect to your phidgets.  PhidgetWebService is a super light socket server to which your flash application connects to in order to properly send and receive data from all phidget components.</p>

<p>To install Source and Samples in Flex Builder I'd really recommend you to simply choose file> Import > Archive File > Choose the zip you just downloaded</p>

<p>If you want to go the SWC way, which is probably simpler, just create a new AS3 project in Flex Builder, Choose a name click next, and on the Library Path Tab click [ add SWC... ] and choose the location of the PhidgetLibrary.swc you just downloaded.</p>

<p>Things are still very dirty, If you have any suggestions on how to improve the code, please let me know.</p>

<p>I've done my best to resemble the original AS2 API as close as I could. Still, I took the liberty of creating extra objects that allow for even easier Phidget management.</p>

<p>There's no documentation at all yet, but there's plenty of samples to dig and learn how to use most of them. </p>

<p>If anyone out there wants tp give me a hand with docs I'd really appreciate it.<br />
I'll try in the following days to write up some simple tutorials, so if you can't deal with the samples, patience.</p>

<p>code sample after the jump.</p>]]>
        <![CDATA[<p>here's a very simple sample on how to connect and set a servo rotation.</p>

<pre><code>
package {
	
	import com.phidgets.*;
	import com.phidgets.events.*;
	
	import flash.display.Sprite;
	import flash.events.MouseEvent;;
	
	public class PhidgetServoTest extends Sprite {
		
		private var servoControl :PhidgetServoControl;
		private var servo        :PhidgetServo;
		
		public function PhidgetServoTest() {
                        servoControl = new PhidgetServoControl();
                        servoControl.addEventListener(PhidgetEvent.CONNECT, onConnect);
			servoControl.connect("localhost",5001,"pass");
		}
		
		private function onConnect(evt:PhidgetEvent):void{
			trace("onConnect");
			servo = servoControl.getServo(0);
	                stage.addEventListener(MouseEvent.MOUSE_DOWN,onMouseDown);
		}
	
         	private function onMouseDown(evt:MouseEvent):void{
			servo.rotation = Math.floor(Math.random()*180);
		}
	}
}

<p><br />
</code></pre></p>

<p><br />
[ What Are Phidgets?<br />
<a href="http://phidgets.com">Phidgets </a>are an easy to use set of building blocks for low cost sensing and control from your PC. Using the Universal Serial Bus (USB) as the basis for all Phidgets, the complexity is managed behind an easy to use and robust Application Programming Interface (API). Applications can be developed quickly in Visual Basic, VBA (Microsoft Access and Excel), LabView, Java, Delphi, C and C++. ] </p>

<p>... and AS3 now of course!</p>

<p>I should probably mention all phidgets you see in the image above where an awesome present by Teiichi. After I told him how I almost cry after realizing my original Phidget Box was lost somewhere inbetween Tokyo and Milan, 3 days later he dropped by with a new kit under his arm. Thank you so much!</p>

<p>Alright, so here you go.<br />
Happy Hacking!</p>]]>
    </content>
</entry>

<entry>
    <title>Embedding fonts in AS3</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/10/embedding-fonts-in-as3.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.111</id>

    <published>2005-10-30T03:53:36Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>I love this! ... library, be-gone! package { import flash.util.describeType; import flash.display.MovieClip; import flash.display.TextField; import flash.text.TextFormat; import flash.text.AntiAliasType; public class Test extends MovieClip { // be sure this is pointing to a ttf font in your hardrive [Embed(source=&quot;C:\WINDOWS\Fonts\somefont.ttf&quot;, fontFamily=&quot;foo&quot;)] public...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
        <category term="flash" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p>I love this! ... library, be-gone!</p>

<pre>
package {
	
import flash.util.describeType;
import flash.display.MovieClip;
import flash.display.TextField;
import flash.text.TextFormat;
import flash.text.AntiAliasType;
  
   public class Test extends MovieClip {
    
      // be sure this is pointing to a ttf font in your hardrive
      [Embed(source="C:\WINDOWS\Fonts\somefont.ttf", fontFamily="foo")] 
      public var bar:String;
      			
      public function Test() {
                	
          var format:TextFormat	      = new TextFormat();
          format.font		      = "foo";
          format.color                = 0xFFFFFF;
          format.size                 = 130;
						
          var label:TextField         = new TextField();
          label.embedFonts            = true;
          label.autoSize              = TextFieldAutoSize.LEFT;
          label.antiAliasType         = AntiAliasType.ADVANCED;
          label.defaultTextFormat     = format;
          label.text                  = "Hello World!";
          addChild(label);
       }
    }
}
</pre>]]>
        
    </content>
</entry>

<entry>
    <title>AS3: attachMovieClip() no more!</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/10/as3-attachmovieclip-no-more.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.110</id>

    <published>2005-10-30T03:49:05Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>aaah, &quot;attachMovieClip&quot;... just the sound of it sounds so retro already. plus... the library?! who the heck needs a library anymore? kiss the library bye-bye!! I&apos;m sure we are going to remember these days with a lot of nostalgia. package...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
        <category term="flash" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p>aaah, "attachMovieClip"... just the sound of it sounds so retro already. plus... the library?! who the heck needs a library anymore?</p>

<p>kiss the library bye-bye!!<br />
I'm sure we are going to remember these days with a lot of nostalgia.</p>

<pre>package {
   import flash.display.MovieClip;
   import flash.display.StageAlign;
   import flash.display.StageScaleMode;
   public class Test extends MovieClip {
      // be sure this is pointing to an image in your hardrive
      [Embed(source='c:\images\whatsup.jpg')] public var MyImage:Class;
      public function Test() {
         stage.align     = StageAlign.TOP_LEFT;
         stage.scaleMode = StageScaleMode.NO_SCALE;
         var img:MyImage = new MyImage();
         addChild(img);
      }
   }
}
</pre>]]>
        
    </content>
</entry>

<entry>
    <title>FITC Awards 2005 Winners</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/04/fitc-awards-2005-winners.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.109</id>

    <published>2005-04-18T18:22:30Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> The winners where finally posted. I&apos;m proud to announce that Flickr Graph won the experimental category! I should probably mention that the night of the awards, to be sincere, I had almost zero hopes against Grant Skinner (who won...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://marcosweskamp.com/blog/archives/fitc2005winners_screenshot.jpg" border="0" /></p>

<p>The winners where finally <a href="https://awards.fitc.ca/2005/site.html">posted</a>. I'm proud to announce that <a href="http://marumushi.com/apps/flickrgraph">Flickr Graph</a> won the experimental category!</p>

<p>I should probably mention that the night of the awards, to be sincere, I had almost zero hopes against <a href="http://gskinner.com">Grant Skinner</a> (who won for best Canadian Developer) - So much that the time they where opening the envelopes at the awards ceremony we where out having taco bell. aaah it was years since my last taco bell. So we finished our nasty burritos and went back to the ceremony, where <a href="http://hossgifford.com/">Hoss</a> was struggling with his voice and still messing up opening the wrong envelopes for the wrong categories. When we get in, everyone starts congratulating me. I thought they where kidding, but after the 6th person coming by and saying congrats! you won! where the heck where you?!  I finally thought well, maybe it's true huh. - and it was.<br />
Hoss handed me over my award once everything was done, and we went drinking.  The award yep, it looks reaaaaly nice! </p>

<p>Thanks everyone! And of course kudos goes to <a href="http://ludicorp.com">ludicorp</a> makers of <a href="http://flickr.com">flickr</a> for making their API completely open and letting me play with it.</p>]]>
        
    </content>
</entry>

<entry>
    <title>talby games</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/03/talby-games.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.108</id>

    <published>2005-03-10T14:42:39Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>Everyone these days seems to be super busy! really nice works by Tohsaki-san talby - Be sure to play the talby domino game (click on the leftmost phone) I love how in game #2 where you literally chat with a...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p>Everyone these days seems to be super busy!<br />
really nice works by Tohsaki-san</p>

<p><a href="http://www.talby.jp/">talby</a> - Be sure to play the talby domino game (click on the leftmost phone)<br />
I love how in game #2 where you literally chat with a talby phone has all the intro explanation in english, and in the end it just tells you the game is only in japanese:P</p>

<p>also:<br />
<a href="http://www.victor.co.jp/dvmain/gz-mc100_200/special/index.html">Victor Everio</a></p>

<p><a href="http://www.nmnl.co.jp/">NMNL ver1.0</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>NID gallery &amp; fotologue.jp</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/03/nid-gallery-fotologuejp.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.107</id>

    <published>2005-03-01T12:54:18Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary><![CDATA[the latest works from yugop & co. Nagaoka Institute of Design gallery and fotologue which is not really new but was just updated and relaunched today - I love the Explore More feature ;)...]]></summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p>the latest works from yugop & co.<br />
<a href="http://www.nagaoka-id.ac.jp/gallery/gallery.html">Nagaoka Institute of Design gallery</a><br />
and <a href="http://fotologue.jp/">fotologue</a> which  is not really new but was just updated and relaunched today - I love the Explore More feature ;)</p>]]>
        
    </content>
</entry>

<entry>
    <title>new marumushi.com</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/02/new-marumushicom.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.106</id>

    <published>2005-02-15T07:44:31Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>After years of slacking I decided to finally update the old and rusty marmushi.com. There&apos;s some processing experiments, and a new toy app flickrgraph. So this is the plan, over there, you&apos;ll find a new newsfeed that I&apos;m splitting now....</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p>After years of slacking I decided to finally update the old and rusty <a href="http://marumushi.com/">marmushi.com</a>. There's some processing experiments, and a new toy app <a href="http://marumushi.com/apps/flickrgraph">flickrgraph</a>. </p>

<p>So this is the plan, over there, you'll find a new newsfeed that I'm splitting now. This feed will be of a really loose character, and over there I'll try to stay as much focused in work as I can.</p>

<p>I'm also featured in the cover of <a href="http://shift.jp.org">shift</a></p>

<p>Sorry for the late post, I sent the link out to some friends, and left for Paris for the weekend. Now that I'm back I'm amazed on how the link to flickrgraph caught on, it seems to be <a href="http://www.technorati.com/cosmos/search.html?rank=&url=flickr+graph">all</a> <a href="http://www.technorati.com/cosmos/search.html?rank=&url=flickrgraph">over</a> <a href="http://www.daypop.com/search?q=flickr+graph&search=Search&t=a">the</a> <a href="http://www.google.com/search?q=flickrgraph">internet</a> now. geez people <a href="http://www.metafilter.com/mefi/39541">chill out</a>! </p>

<p>he, well, no, really thanx a ton.</p>

<p>the server was knocked out again a couple of times, but everything seems to be stable now.</p>]]>
        
    </content>
</entry>

<entry>
    <title>a happy new year</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2005/01/a-happy-new-year.html" />
    <id>tag:marcosweskamp.com,2005:/blog//1.105</id>

    <published>2005-01-16T05:48:53Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>2004, what a year. It first found me working in a skyscraper in Tokyo, took me to the suburbs of the city later, flew me to Germany, the Czech Republic, Austria and moved me to Italy. Took me back to...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p>2004, what a year.  It first found me working in a skyscraper in Tokyo, took me to the suburbs of the city later, flew me to Germany, the Czech Republic, Austria and moved me to Italy. Took me back to school,  woke me up for the first time and made me fall in love twice with the same woman.  Got me to the beaches in Uruguay and ended in the green lawns of Argentina.</p>

<p>now I'm back in Ivrea, looking forward for another great year.  <br />
Yes, do expect more activity here, there is a ton of ideas and projects in the pipeline. </p>

<p>Let's rock 2005!</p>]]>
        
    </content>
</entry>

<entry>
    <title>Researching into Music and Memory</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2004/10/researching-into-music-and-memory.html" />
    <id>tag:marcosweskamp.com,2004:/blog//1.104</id>

    <published>2004-10-26T10:33:09Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary>Dider Hilhorst and I are currently working on a project that links music and memory. At this point we are collecting data to populate the database that will be used for the visualization. In a form we have put online...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><a href="http://www.nundroo.com/">Dider Hilhorst</a> and I are currently working on a project that links music and memory. At this point we are collecting data to populate the database that will be used for the visualization.</p>

<p>In a form we have put online we ask you to mention a specific song that you relate to a memory. Do you have a specific song that reminds you of your first girlfriend; that cool wedding of your best friend; a summer vacation? We are sure that you can find plenty examples! You can even sketch out your memory, among other things! It's great fun, really!</p>

<p><a href="http://www.nundroo.com/memory/form.php">http://www.nundroo.com/memory/form.php</a></p>

<p>Your help is greatly appreciated, thank you! Feel free to send this form to other people too! Oh, yeah, and we would like to collect the data pretty soon, actually within the next 2 or 3 days.</p>

<p>note:<br />
Your privacy will be protected, obviously, all the data used is collected anonymously and strictly used for internal academic purposes (not sold to others etc.) As you can see we do not ask for a username or email or any personal information. We are interested in the stories, and how music relates to memory.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Creative Code</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2004/10/creative-code.html" />
    <id>tag:marcosweskamp.com,2004:/blog//1.103</id>

    <published>2004-10-13T01:13:03Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> I just got a copy of the newly published Creative Code by John Maeda. Very conceptual, tons of images and ironically, not a single line of code. &quot;...This book presents the most fascinating work, arranged by themes that apply...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://www.marcosweskamp.com/blog/archives/creativecode_cropped.jpg" border="0" alt="creative code"/><br/><br />
I just got a copy of the newly published <a href="http://www.maedastudio.com/2004/creativecode/">Creative Code</a> by John Maeda. Very conceptual, tons of images and ironically, not a single line of code.</p>

<p>"...This book presents the most fascinating work, arranged by themes that apply to today's digital design issues: programmatic space, living information, typography, tools, interaction design and education. Each section also features two essays by leading names in the field of interaction and digital design, such as Casey Reas, David Small, Yugo Nakamura, Joshua Davis and Gillian Crampton-Smith. Red Burns contributes a foreword. "</p>

<p><a href="http://www.amazon.com/exec/obidos/tg/detail/-/0500285179/qid=1097562473/sr=8-1/ref=pd_csp_1/104-5393204-5410362?v=glance&s=books&n=507846">amazon link</a></p>]]>
        
    </content>
</entry>

<entry>
    <title>newsmap goes squarified</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2004/09/newsmap-goes-squarified.html" />
    <id>tag:marcosweskamp.com,2004:/blog//1.102</id>

    <published>2004-09-16T12:21:39Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> I just updated newsmap to a new version fancying a squarified treemap layout algorithm, which tries to keep the aspect ratio of each cell as close to 1:1 as possible. That should make headlines easier to read. It&apos;s interesting...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><a href="http://marumushi.com/apps/newsmap/newsmap.cfm"><img src="http://www.marcosweskamp.com/blog/archives/squarifiedtreemap_screenshot.jpg" border="0"/></a></p>

<p>I just updated <a href="http://marumushi.com/apps/newsmap/newsmap.cfm">newsmap</a> to a new version fancying a squarified treemap layout algorithm, which tries to keep the aspect ratio of each cell as close to 1:1 as possible. That should make headlines easier to read.  It's interesting to see how this new layout gives a different perception of what is big news today.</p>

<p>Confused?<br />
The biggest news will always be on the top left corner inside each category, the smallest one on the bottom right. The placement of all categories and countries follow the same principle, when the sum of related articles for one story inside each country/category is the greatest, it will be shifted to the top left corner, the smallest ones shift to the bottom right.</p>

<p>Of course you can always switch to the standard layout by selecting so in the bottom right of the screen. </p>

<p>Use "permalink" to create your custom link for the view you selected.</p>]]>
        
    </content>
</entry>

<entry>
    <title>ciao italia!</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2004/09/ciao-italia.html" />
    <id>tag:marcosweskamp.com,2004:/blog//1.101</id>

    <published>2004-09-16T11:57:39Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> Finally got settled down in my new *huge* apartment in Ivrea a couple of days ago. (it&apos;s at least 2.5 times bigger than what I had in Tokyo!). Going through school orienation now and getting some survival italian lessons....</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://www.marcosweskamp.com/blog/archives/dorm_cropped.jpg"/></p>

<p>Finally got settled down in my new *huge* apartment in Ivrea a couple of days ago. (it's at least 2.5 times bigger than what I had in Tokyo!). Going through school orienation now and getting some survival italian lessons. Classes start in two weeks.  Unfortunatelly my mail client cought fire with a virus some days ago and Norton Antivirus destroyed my inbox where I had mail piled up for the past 5 months. I have no idea how that bstrd got through. (arrrgh!) I'd kindly like to ask everyone who hasn't got any reply from me for the past days to resend your email. sorry fot that:)</p>]]>
        
    </content>
</entry>

<entry>
    <title>&apos;till next year, ARS!</title>
    <link rel="alternate" type="text/html" href="http://marcosweskamp.com/blog/2004/09/till-next-year-ars.html" />
    <id>tag:marcosweskamp.com,2004:/blog//1.100</id>

    <published>2004-09-11T00:55:55Z</published>
    <updated>2008-08-23T03:40:43Z</updated>

    <summary> A little bit late, but here are some pics from ARS Electronica 2004, which finished 2 days ago. Some great reviews of the festival over here and at the NY times (login required: bypass through bugmenot) It&apos;s been great...</summary>
    <author>
        <name>marcos</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://marcosweskamp.com/blog/">
        <![CDATA[<p><img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0068_small.jpg" border="0" alt="newsmap at ars electronica"><br/><br/><br />
A little bit late, but <a href="http://www.marcosweskamp.com/blog/archives/000103.html#more">here are some pics</a> from ARS Electronica 2004, which finished 2 days ago. </p>

<p>Some great reviews of the festival over <a href="http://www.we-make-money-not-art.com/archives/cat_ars_electronica.php">here</a> and at the <a href="http://www.nytimes.com/2004/09/08/arts/design/08linz.html">NY times</a> (login required: bypass through <a href="http://bugmenot.com/view.php?url=http%3A%2F%2Fnytimes.com">bugmenot</a>)</p>

<p>It's been great being here in Linz, we where treated really nice by everyone. On the day after the closing of ARS, we could spend some time chatting with <a href="http://didi.com/brad/">Brad Paley</a> and <a href="http://mrl.nyu.edu/~jhan/">Jeff Han</a>, exchanging ideas and discussing extensions for their project <a href="http://www.traceencounters.org">TraceEncounters</a>, which I find fascinating. On the way out Brad gave me a signed print of Alice in wonderland visualized through <a href="http://textarc.org/">TextArc</a>. woha! Great times, and I'm definitively looking forward for next year's Prix.</p>

<p>Dan left for Tokyo this morning, and I'm hopping on a train tonight headed to Ivrea, Italy, where my new home awaits.  nervous? oh yeah!</p>]]>
        <![CDATA[<p><br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0007_small.jpg" border="0" alt=""><br/><br />
<a href="http://www.vsstv.com/">VSSTV</a> - Very Slow Scan Television<br />
<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0013_small.jpg" border="0" alt=""><br/><br />
Lentos Kunstmuseum at night<br />
<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0020_small.jpg" border="0" alt=""><br/><br />
<a href="http://www.aec.at/en/center/project.asp?iProjectID=12784">Archiquarium</a>, a visualization of  the database holding all projects that have been realized through 25 years of Ars Electronica<br />
<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0025_small.jpg" border="0" alt=""><br/><br />
The hipnotizing <a href="http://stage.itp.nyu.edu/history/timeline/protrudeflow.html">Protrude, Flow</a> (2000, permanent exhibition)<br />
<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0038_small.jpg" border="0" alt=""><br/><br />
the golden Nicas at the award ceremony<br />
<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0071_small.jpg" border="0" alt=""><br/><br />
<a href="http://marumushi.com/apps/newsmap/">newsmap</a> in exhibition<br />
<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0074_small.jpg" border="0" alt=""><br/><br />
<a href="http://www.aec.at/en/festival/programm/project_2004.asp?iProjectID=12586">Augmented Fish Reality</a><br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0022_small.jpg" border="0" alt=""><br/><br />
<a href="http://www.traceencounters.org">Trace Encounters</a> - chip<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0088_small.jpg" border="0" alt=""><br/><br />
Trace Encounters - visualization<br/><br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0092_small.jpg" border="0" alt=""><br/><br />
Mark Hansen and Ben Rubin, winners of the Golden Nica Interactive Art for <a href="http://www.earstudio.com/projects/listeningpost.html">Listening Post</a><br />
<br/><br />
<img src="http://www.marcosweskamp.com/blog/archives/ars2004/DSCF0122_small.jpg" border="0" alt=""><br/><br />
Net Vision Forum<br />
(from left to right)<br />
Ina Zwerger, Lawrence Lessig, me, Ed Burton and Sonja Bettel (back)</p>]]>
    </content>
</entry>

</feed>
