<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ivana's Projects</title>
	
	<link>http://ivanasetiawan.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 12 Nov 2011 11:31:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/stalk_ivana" /><feedburner:info uri="stalk_ivana" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>My attempt to understand Closure in JS</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/LoZCURqrU8w/</link>
		<comments>http://ivanasetiawan.com/my-attempt-to-understand-closure-in-js/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 10:34:22 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Journal/coding]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=760</guid>
		<description><![CDATA[Before I start, let me give a huge shoutout to Jeff Kreeftmeijer for patiently being my partner/teacher/mentor for our JS book club; Also, this post is based on a book by Marijn Haverbeke called &#8220;Eloquent Javascript&#8220;. So now, let me get into this Closure feature in JS. Basic question is of course, what is Closure? [...]]]></description>
			<content:encoded><![CDATA[<p>Before I start, let me give a huge shoutout to <a href="http://jeffkreeftmeijer.com">Jeff Kreeftmeijer</a> for patiently being my partner/teacher/mentor for our JS book club; Also, this post is based on a book by <a href="http://marijnhaverbeke.nl/">Marijn Haverbeke</a> called &#8220;<a href="http://eloquentjavascript.net/">Eloquent Javascript</a>&#8220;.</p>
<p>So now, let me get into this Closure feature in JS. Basic question is of course, what is Closure?</p>
<p>As mentioned earlier, it is a feature. It lets a function to &#8216;closes over&#8217; some local variables; This situation is also known as the &#8220;upwards Funarg problem&#8221; and many old programming languages forbit this.</p>
<p>Next, why do we use Closure?</p>
<p>Well for one reason, Closure frees you from worrying about &#8220;alive&#8221; variables. Secondly, once we get how Closure works, we can use function values creatively to fit our purpose(s).</p>
<p class="italic" style="padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px dashed #E2DBBC;">* Please make sure you&#8217;re ready to type on your awesome console</span></p>
<p><span class="museo title">Ok, now let&#8217;s dive into the code.</span></p>
<pre><code>function formulaOne(base) {
    return function(adder) {
      return base + adder;
    }
  }</code></pre>
<p>when we run <span class="chunkcode">formulaOne()</span> on console, we will get this as a result</p>
<pre><code>function(adder) {
    return base + adder;
  }</code></pre>
<p>ok, now let&#8217;s make a new variable to make it simple</p>
<pre><code>var awesomeFormula = formulaOne(2)</code></pre>
<p>Next, let&#8217;s run <span class="chunkcode">awesomeFormula(3)</span>, then see what we get BAM!</p>
<p><span class="chunkcode">=> 5</span></p>
<p>Confused? don&#8217;t be. Here is the secret:</p>
<pre><code>awesomeFormula(3) == formulaOne(2)(3)</code></pre>
<p>Ring a bell? So basically when we type <span class="chunkcode">awesomeFormula(3)</span>, here&#8217;s what&#8217;s happening:</p>
<pre><code>  function formulaOne(2) {
    return function(3) {
      // base = 2
      // adder = 3
      return 2 + 3;
    }
  }</code></pre>
<p style="padding-top: 25px; border-top: 1px dashed #E2DBBC">Let&#8217;s make this a bit fun by returning another function inside function(adder) => not usually happen in real life but let&#8217;s do this just for fun:</p>
<pre><code>  function formulaOne(base) {
    return function(adder) {
      return function(multiply) {
        return (base + adder) * multiply;
      }
    }
  }</code></pre>
<p>// Create a variable to simplify our function</p>
<pre><code>var finalResult = awesomeFormula(3)</code></pre>
<p>when we type, <span class="chunkcode">finalResult(5) == formulaOne(2)(3)(5)</span> guess what we&#8217;ll get?</p>
<p><span class="chunkcode">=> 25</span></p>
<pre><code>  function formulaOne(2) {
    return function(3) {
      return function(5) {
        // base = 2
        // adder = 3
        // multiply = 5
        return (2 + 3) * 5;
      }
    }
  }</code></pre>
<p>Not that complicated to understand right? <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span class="museo title" style="padding-top: 30px; border-top: 1px dashed #E2DBBC;">Bonus{Passing multiple arguments}:</span></p>
<pre><code>function numberOne(basic, secondary){
  return function(multiply) {
    return (basic + secondary) * multiply;
  }
}</code></pre>
<p><span class="chunkcode">numberOne(2, 3)(5)</span></p>
<p><span class="chunkcode">=> 30</span></p>
<p>Explanation:</p>
<pre><code>function numberOne(2, 3){
  return function(5) {
    return (2 + 3) * 5;
  }
}</code></pre>
<p>PS: Thank you so much for reading this post, any feedback will be more than welcome &#8211; please be nice tho, I am still in learning stage. Also if you have any suggestions, please let me know; I am really loving learning JavaScript these days <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<style>
pre{margin: 0 0 25px 20px;}
.chunkcode{padding: 5px 10px; color: #ff9b4a; background: #232323; border-radius: 10px 10px 10px 10px;}
</style>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/my-attempt-to-understand-closure-in-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/my-attempt-to-understand-closure-in-js/</feedburner:origLink></item>
		<item>
		<title>Awesome MAMP fixes when MySQL server won’t start</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/Qzzf7y8s4bE/</link>
		<comments>http://ivanasetiawan.com/awesome-mamp-fixes-when-mysql-server-wont-start/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 12:21:33 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Journal/coding]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=751</guid>
		<description><![CDATA[Hello geeks, Today I was planning on setting up WordPress locally using MAMP. I was totally geared. MAMP checked, ScoutApp checked(Awesome Compass &#038; SASS app), coffee checked, brain checked. I also prepared that things will fuck up, considering how unlucky I am in this particular coding department; So of course, I didn&#8217;t forget to put [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://ivanasetiawan.com/wp-content/uploads/2011/11/mamp.jpg" alt="MAMP" title="mamp" width="150" height="128"  style="margin-right: 10px; float: left;" /><br />
<span class="museo title" style="margin-top: -15px;">Hello geeks,</span></p>
<p>Today I was planning on setting up WordPress locally using MAMP. I was totally geared. MAMP checked, <a href="http://mhs.github.com/scout-app/" target="_blank">ScoutApp</a> checked(Awesome Compass &#038; SASS app), coffee checked, brain checked. I also prepared that things will fuck up, considering how unlucky I am in this particular coding department; So of course, I didn&#8217;t forget to put my gay-rose-beer for stress peak helper.</p>
<p>Anyway, my problem was my MySQL Server didn&#8217;t and/or couldn&#8217;t start on MAMP. Lame, I know. So I was googling around, tried out some stuff that didn&#8217;t seem to work; Until&#8230; DUM DUM DDDUUUUMMM</p>
<p><span class="museo title">Fix #1</span>(source: <a href="http://twob.net/" target="_blank">http://twob.net/</a>)</p>
<ul style="margin: 0 0 15px 50px">
<li>1. Quit MAMP</li>
<li>2. Go to your terminal and type killall -9 mysqld</li>
<li>3. Restart MAMP, bitcheeess</li>
</ul>
<p>For most people, this step is enough. But what happened with me was a bit unordinary. MySQL was still red after I typed type killall -9 mysqld on terminal. My first thought was &#8220;goddamnit! I knew it!! It wouldn&#8217;t be this easy for me!</p>
<p>Wait! don&#8217;t be too sad, second step will work like a charm and super-fantastic-awesome. </p>
<p><span class="museo title">Fix#2</span><br />
get your hands dirty, we&#8217;ll do this manually.</p>
<ul style="margin: 0 0 15px 50px">
<li>1. Go in MAMP folder >> MAMP/db/mysql/</li>
<li>2. Delete all files but LEAVE FOLDERS ALONE &#8211; don&#8217;t touch it, don&#8217;t even think bout touching it!</li>
<li>3. Do not panic. You&#8217;re not losing your database(s), again, as long as you leave the folders alone</li>
<li>4. Open MAMP and be happy</li>
</ul>
<p>That&#8217;s all <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Short Saturday post for me. I am still lazy of course :-/ unfortunately.</p>
<p>OH! I am super excited to tell you guys about my fun-side-project. I am planning on publishing some articles; Written, designed, and drawn by independent artists out there. Here is the sample of <a href="http://ivanasetiawan.github.com/article/" target="_blank">my first article</a>, let me know if you&#8217;re interested in contributing <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/awesome-mamp-fixes-when-mysql-server-wont-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/awesome-mamp-fixes-when-mysql-server-wont-start/</feedburner:origLink></item>
		<item>
		<title>Simple poetry</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/zkqXoC5fv0E/</link>
		<comments>http://ivanasetiawan.com/simple-poetry/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 15:38:56 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Notes/blog]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=741</guid>
		<description><![CDATA[Short poetry for next (personal) music project Nothing too serious, I just love how it turns out. Maybe if I am lucky, I will write the chords together with my wedding gift song(s) for my friends tonight. But gosh, I think I am being way too optimistic :p Chest pain I probably lied to you [...]]]></description>
			<content:encoded><![CDATA[<p>Short poetry for next (personal) music project <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Nothing too serious, I just love how it turns out. Maybe if I am lucky, I will write the chords together with my wedding gift song(s) for my friends tonight. But gosh, I think I am being way too optimistic :p</p>
<p><span class="museo title">Chest pain</span></p>
<p>I probably lied to you when I said I won&#8217;t wait for you<br />
And I probably was in denial when I claimed I was taken</p>
<p>But these things I know for sure<br />
How I keep failing in love with you<br />
How you used me to fill your temporary blank pages<br />
And how I despise your presence just to feel the pain in my chest</p>
<p>You, I love; but I don&#8217;t like you<br />
And I, I refuse to be addicted to you</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/simple-poetry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/simple-poetry/</feedburner:origLink></item>
		<item>
		<title>Modernizr vs CSS3PIE?</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/NKNWd4iQPKM/</link>
		<comments>http://ivanasetiawan.com/modernizr-vs-css3pie/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 00:00:11 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Journal/coding]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=711</guid>
		<description><![CDATA[This post goal is to answer these two questions: =&#62; What&#8217;s the difference? =&#62; Why do you pick one instead of the other? 1. The difference Yes, there are two different things, thus comparing them may not be the best post I could write on Saturday morning. However, my motivation came from the fact that [...]]]></description>
			<content:encoded><![CDATA[<p>This post goal is to answer these two questions:<br />
=&gt; What&#8217;s the difference?<br />
=&gt; Why do you pick one instead of the other?</p>
<p><span class="museo title">1. The difference</span><br />
Yes, there are two different things, thus comparing them may not be the best post I could write on Saturday morning. However, my motivation came from the fact that I couldn&#8217;t explain clearly when Jeff Kreeftmeijer asked me the same question last week(I am really bad with explaining). So yea, I am gonna write the difference real clear here. When I say &#8220;real clear&#8221;, I mean real easy to understand with no fancy words involved.</p>
<p>So in plain words, <a href="http://www.modernizr.com/">Modernizr</a> detects cool features from the awesome HTML5 &amp; CSS3 specifications. It tells you whether a browser has those features natively implemented or not. That&#8217;s it.<br />
It doesn&#8217;t fix anything &#8211; but it gives you the ability to unuglify the ugliness of old browsers.</p>
<p>While <a href="http://css3pie.com/">CSS3PIE</a> makes &#8220;Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features&#8221;. Yep, a fancy line to describe &#8220;hacking&#8221;.</p>
<p><span class="museo title">2. So, which one I should use?</span><br />
Uhm&#8230; It&#8217;s up to your client really. I think most web developers will definitely go for Modernizr, since we are allergic to hacking (right?). However let&#8217;s make this post a bit entertaining &#8211; by creating two hypothetical clients.<br />
<span class="museo title">Client A = Awesomeness = MODERNIZR!!</span></p>
<ul style="margin-left: 20px;">
<li>- Clean code is important</li>
<li>- Focus on the effectiveness</li>
<li>- I want something that is ready for the future</li>
<li>- Don&#8217;t sweat the small stuff, the site doesn&#8217;t have to look the same everywhere; Just make sure it looks decent &amp; works perfect</li>
<li>- No, I won&#8217;t die if the border radius or box shadow don&#8217;t show up on old browsers</li>
</ul>
<p><span class="museo title">Client B = Bawls = CSS3PIE</span></p>
<ul style="margin-left: 20px;">
<li>- I don&#8217;t do no coding. Just make it work.</li>
<li>- Effectiveness of the site? well &#8211; the border radius will show up right?</li>
<li>- Future? what future?! just give me that goddamnboxshadow!</li>
<li>- I want the site to look exactly the same EVERYWHERE. Just put extra lines of code, use tons of images and divs, kill baby cats &#8211; whatever!</li>
</ul>
<p><span class="museo title">In conclusion,</span><br />
Personally, I would suggest everyone to stop hacking and start accepting that you cannot make a layout looks the same everywhere. Developers understand this issue, however the most important task is to educate and convince the client to invest their money to something that is long term. Yes, I am talking about transforming client B to A. Good luck with that. </p>
<p>FYI: This doesn&#8217;t mean that I dislike &#038;/or against CSS3PIE at all. I really thank them for their service. I would rather use CSS3PIE than having to slice tons of images or kill baby cats. So yea&#8230;CSS3PIE, you&#8217;re AWESOME!</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/modernizr-vs-css3pie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/modernizr-vs-css3pie/</feedburner:origLink></item>
		<item>
		<title>Basic Ruby programming for frontender</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/ARDGh5pbExY/</link>
		<comments>http://ivanasetiawan.com/basic-ruby-programming-for-frontender/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 16:31:20 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Journal/coding]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=687</guid>
		<description><![CDATA[I am writing this post to help myself during coding for SliceCraft&#8217;s projects. I actually been wanting to write this post since everytime I run into this &#8220;oh-how-I-solved-this&#8221; moment, which is pretty often since am super lame. CASE 1: Body class // Giving a body class to every page // page_classes == nameofthefileWITHOUTdotHTML %body{:class => [...]]]></description>
			<content:encoded><![CDATA[<p>I am writing this post to help myself during coding for <a href="http://slicecraft.nl">SliceCraft&#8217;s</a> projects. I actually been wanting to write this post since everytime I run into this &#8220;oh-how-I-solved-this&#8221; moment, which is pretty often since am super lame.</p>
<p><span class="museo title">CASE 1: Body class</span></p>
<pre><code>// Giving a body class to every page
// page_classes == nameofthefileWITHOUTdotHTML
%body{:class => page_classes}</code>
</pre>
<p>Let&#8217;s get more specific now, what if I ONLY want to have a class name on the index for example &#8211; I mean, I just need it there anyway! Sure, here it is:</p>
<pre><code>%body{:class => (request.path_info.include?('index') || request.path_info == '/') ? 'index' : nil}</code>
</pre>
<p><span class="museo title">CASE 2: Show this only on certain page(s)</span></p>
<pre><code>// Show this ONLY on index page
- if request.path_info.include?('index') || request.path_info == '/'
  %section#signup
  put the code here
</code></pre>
<p><span class="museo title">CASE 3: Looping</span><br />
The goal is to make:<br />
- an ordered list<br />
- with several list items(with ordered numbers)<br />
- random positioning on each of the list item</p>
<pre><code>// [10, 2, 4, 10, 7, 4] == #{val}
%ol#chart
  - [10, 2, 4, 10, 7, 4].each_with_index do |val, i|
    %li{:style => "left: #{val}px"}
      %span.num= i+1
      This is the text
</code></pre>
<p>Ok &#8211; this is it for now. More coming&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/basic-ruby-programming-for-frontender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/basic-ruby-programming-for-frontender/</feedburner:origLink></item>
		<item>
		<title>TapirGo!</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/5-LWc_Os1VM/</link>
		<comments>http://ivanasetiawan.com/tapirgo/#comments</comments>
		<pubDate>Mon, 16 May 2011 06:07:32 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Journal/coding]]></category>
		<category><![CDATA[Work/arts]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=675</guid>
		<description><![CDATA[The idea! I believe it was initiated by Jeff Kreeftmeijer and then supported by Robert Beekman &#038; Thijs Cadier. It went pretty quick, they discussed about it one afternoon -rather informal-, and then the three of them built it within one evening(yes, on the same day, they&#8217;re maniacs). Logo process They just wanted me to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tapirgo.com" style="margin-right: 10px; float: left;"><img src="http://ivanasetiawan.com/wp-content/uploads/2011/05/TAPIRGO-150x150.jpg" alt="" title="TAPIRGO" width="150" height="150"/></a> </p>
<p><span class="museo title" style="margin-top: -15px;">The idea!</span><br />
I believe it was initiated by <a href="http://jeffkreeftmeijer.com">Jeff Kreeftmeijer</a> and then supported by <a href="http://twitter.com/matsimitsu">Robert Beekman</a> &#038; <a href="http://twitter.com/thijsc">Thijs Cadier</a>. It went pretty quick, they discussed about it one afternoon -rather informal-, and then the three of them built it within one evening(yes, on the same day, they&#8217;re maniacs). </p>
<p><span class="museo title">Logo process</span><br />
They just wanted me to draw a tapir. Pretty simple request right?<br />
Unfortunately I am a picky person whom needs her space in order to create something that I like and no, I am not proud of it. Kinda annoyed me in a way actually &#8211; I am trying to learn some skills to tackle this particular problem.(see: <a href="http://forr.st/~Dw3" style="display: inline">Dear designers, how do you handle mood-swings in designing process?</a>)</p>
<p>So I drew a tapir using Illustrator on Sunday afternoon. I did that because I always feel super comfortable at home &#038; honestly, that tapir wouldn&#8217;t look like a tapir if I drew it at the office. Secondly, thanks to <a href="http://jeffkreeftmeijer.com">Jeff</a> for suggesting the stroke on the logo with a subtle drop shadow &#8211; totally loving it &#8211; and yes, we do pay attention to details because we love our Tapir.</p>
<p>Here is my logo drawing process:</p>
<p><img src="http://ivanasetiawan.com/wp-content/uploads/2011/05/process.jpg" alt="" title="tapirGo process" width="500" height="1600" class="aligncenter size-full wp-image-680" /></p>
<p><span class="museo title">Front End</span><br />
3 fancy things I like is the CSS3 transition on the logo (thanks to <a href="http://twitter.com/roy" style="display: inline;">Roy Tomeij</a>), &#8220;back to nav&#8221; button and this jQuery code that makes sure every link scrolls to its destination with duration of 1sec. (thanks <a href="http://blog.medianotions.de/" style="display: inline-block;">medianotions</a>!)</p>
<pre>
<code>$(document).ready(function() {

  // Scroll slowly
  $('a[href*=#]').click(function() {

    // duration in ms
    var duration=1000;

    // easing values: swing | linear
    var easing='swing';

    // get / set parameters
    var newHash=this.hash;
    var target=$(this.hash+', a[name='+this.hash.slice(1)+']').offset().top;
    var oldLocation=window.location.href.replace(window.location.hash, '');
    var newLocation=this;

    // make sure it's the same location
    if(oldLocation+newHash==newLocation)
    {
       // set selector
       if($.browser.safari) var animationSelector='body:not(:animated)';
       else var animationSelector='html:not(:animated)';

       // animate to target and set the hash to the window.location after the animation
       $(animationSelector).animate({ scrollTop: target }, duration, easing, function() {

          // add new hash to the browser location
          window.location.href=newLocation;
       });

       // cancel default click action
       return false;
    }

  });
});
</code>
</pre>
<p><span class="museo title">Anyway&#8230;</span><br />
That&#8217;s all I guess, we&#8217;re super excited &#038; totally geared to make <a href="http://tapirgo.com" style="display: inline-block;">Tapirgo</a> AWESOMER!! (no, that word doesn&#8217;t really exist &#8211; but whatever, deal with it, I want to use that word.)</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/tapirgo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/tapirgo/</feedburner:origLink></item>
		<item>
		<title>Talking about music I love</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/fqAj38hX-XU/</link>
		<comments>http://ivanasetiawan.com/music-for-inspiration/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 16:00:31 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Notes/blog]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=631</guid>
		<description><![CDATA[Today is Bloemencorso day in Haarlem &#8211; totally forgot about it till one of my friends called me last Friday, reminded me that I promised her I would work at her shop. Sooo yea, this weekend&#8217;s kinda tough for me but I loved the whole experience. Well, not all &#8211; you know, bitching clients and [...]]]></description>
			<content:encoded><![CDATA[<p>Today is Bloemencorso day in Haarlem &#8211; totally forgot about it till one of my friends called me last Friday, reminded me that I promised her I would work at her shop. Sooo yea, this weekend&#8217;s kinda tough for me but I loved the whole experience. Well, not all &#8211; you know, bitching clients and shit like that kinda annoyed me. But hey! lucky I got cool colleagues, they made me happy. mostly.</p>
<p>Anyway, uhm&#8230;I know I have been lazy updating my blog but I am pretty committed today. I am gonna write about some amazing musicians whom inspired me on daily basis. Well, focusing on their albums actually. I must admit that my taste is a little bit weird though, I listen from classical to hard rock with a tendency to lean towards the underground/alternative music. But hey! they&#8217;re amazing! And you should consider checking them out!</p>
<p><img src="http://ivanasetiawan.com/wp-content/uploads/2011/04/rspektor_far.jpg" alt="" title="Regina Spektor - Far" width="100" height="100" class="alignleft size-full wp-image-663" style="margin-right: 10px; float: left;" /><span class="museo title">&#8220;Far&#8221; by Regina Spektor</span><br />
This chick is freaking genius! If you&#8217;re into classical music, you&#8217;ll most probably find her music interesting &#8211; at least that&#8217;s how I got hooked. First time I heard her music was approximately 4 years ago, <a href="http://ivanasetiawan.com/wp-content/uploads/2011/04/06-Hotel-Song-copy.mp3" class="wpaudio" >Hotel Song</a> was the first song that actually made me google bout her(as far as I remember) &#8211; anyway, in 2009 she released her 5th album &#038; I totally love it:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/2DLp-vE3AKg?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2DLp-vE3AKg?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><img src="http://ivanasetiawan.com/wp-content/uploads/2011/04/metric2.jpg" alt="" title="Metric" width="100" height="67" class="alignleft size-full wp-image-670" style="margin-right: 10px; float: left;"/><span class="museo title">&#8220;Fantasies&#8221; by Metric</span><br />
Their genre is a combination between Indie Rock and New wave. They sound super amazing &#8211; like always giving me colors in my brain whenever I listen to their albums. Their music is super addictive! Seriously, google them, they&#8217;re worth it.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/KtA7YIFapnY?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/KtA7YIFapnY?version=3" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><img src="http://ivanasetiawan.com/wp-content/uploads/2011/04/y3.jpg" alt="" title="Yeah Yeah Yeahs" width="100" height="100" class="alignleft size-full wp-image-671" style="margin-right: 10px; float: left;"/><span class="museo title">&#8220;It&#8217;s Blitz!&#8221; by Yeah Yeah Yeahs </span><br />
Please don&#8217;t tell me you&#8217;ve never heard of em. I mean, they&#8217;re like one of the most awesome Indie Rock bands in the universe(according to me of course). I found out about them years ago when they weren&#8217;t so well known like now. Still tho, their music is original despite the fact that they&#8217;re pretty mainstream nowadays. Anyway, they&#8217;re kind of a band you either love or hate I guess &#8211; for me, I love their music so much because they write amazing notes that spark my brain with weird lights(sounds crazy I know, but I mean it). In fact, I often listen to their music while designing/drawing, they&#8217;re like my brain&#8217;s ecstasy.</p>
<p><object width="500" height="306"><param name="movie" value="http://www.youtube.com/v/pmGNo8RL5kM?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/pmGNo8RL5kM?version=3" type="application/x-shockwave-flash" width="500" height="306" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span class="museo title">Oh, one last thing:</span><br />
<a href="http://ivanasetiawan.com/wp-content/uploads/2011/04/750.jpg"><img src="http://ivanasetiawan.com/wp-content/uploads/2011/04/750-227x300.jpg" alt="" title="I fucking love this stick!" width="227" height="300" class="alignleft size-medium wp-image-672" /></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/music-for-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://ivanasetiawan.com/wp-content/uploads/2011/04/06-Hotel-Song-copy.mp3" length="5092406" type="audio/mpeg" />
		<feedburner:origLink>http://ivanasetiawan.com/music-for-inspiration/</feedburner:origLink></item>
		<item>
		<title>Design bundle for Japan</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/10UzhE5l3XQ/</link>
		<comments>http://ivanasetiawan.com/design-bundle-for-japan/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 09:04:19 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Notes/blog]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=620</guid>
		<description><![CDATA[Dear Designers, care for Japan? If so(and I really hope you do), go to this link &#038; get the bundle! it&#8217;s only for $5.]]></description>
			<content:encoded><![CDATA[<p><a href="http://365psd.com/bundle/"><img src="http://ivanasetiawan.com/wp-content/uploads/2011/03/bundle-for-japan.png" alt="" title="bundle-for-japan" width="485" height="317" class="aligncenter size-full wp-image-621" /></a></p>
<p>Dear Designers, care for Japan? If so(and I really hope you do), go to this <a href="http://365psd.com/bundle/">link</a> &#038; get the bundle! <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  it&#8217;s only for $5.</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/design-bundle-for-japan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/design-bundle-for-japan/</feedburner:origLink></item>
		<item>
		<title>submit input bug on IE7</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/0bYoB7YrVHA/</link>
		<comments>http://ivanasetiawan.com/submit-input-bug-on-ie7/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 16:03:44 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Journal/coding]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=615</guid>
		<description><![CDATA[*Quick post about IE7 input[type="submit"] annoying bug.* Original code: input[type="submit"] height: 30px bottom: -40px left: 0 position: absolute padding: 0 12px 0 46px line-height: 30px color: #fff background: $blue sprite($sprite, bg_button_1) no-repeat border: 0 Here is the screenshot(sigh): What triggers it? Problem usually occurs when you give a value to a button that contains longer [...]]]></description>
			<content:encoded><![CDATA[<p>*Quick post about IE7 input[type="submit"] annoying bug.*</p>
<p><span class="museo title">Original code:</span></p>
<pre>
<code>
    input[type="submit"]
      height: 30px
      bottom: -40px
      left: 0
      position: absolute
      padding: 0 12px 0 46px
      line-height: 30px
      color: #fff
      background: $blue sprite($sprite, bg_button_1) no-repeat
      border: 0
</code>
</pre>
<p>Here is the screenshot(sigh):<br />
<img src="http://ivanasetiawan.com/wp-content/uploads/2011/03/button_sample1.png" alt="" title="button sample" width="485" height="100" class="aligncenter size-full wp-image-627" style="margin: 10px 0;" /></p>
<p><span class="museo title">What triggers it?</span><br />
Problem usually occurs when you give a value to a button that contains longer than (approximately) 10 characters. O yea, padding also ignored on IEs.</p>
<p><span class="museo title">Solution:</span><br />
IF the button text is fixed, you can specify the width of the input[type="submit"] => which I still don&#8217;t prefer because giving width doesn&#8217;t sound like the code is bulletproof. Therefore, dum..dum..duuumm&#8230; there&#8217;s an easy fix for it:</p>
<pre>
<code>overflow: visible;</code>
</pre>
<p>Final IE7 screenshot:<br />
<img src="http://ivanasetiawan.com/wp-content/uploads/2011/03/Screen-shot-2011-03-26-at-10.53.00.png" alt="" title="Screen-shot-2011-03-26-at-10.53.00" width="324" height="378" class="aligncenter size-full wp-image-629" style="margin: 10px 0;"/><br />
(How do you know if the screenshot taken from IE7 you say? well&#8230;recognize how the font rendered &#038; textarea? pretty ugly eh?  <img src='http://ivanasetiawan.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/submit-input-bug-on-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/submit-input-bug-on-ie7/</feedburner:origLink></item>
		<item>
		<title>80beans redesigned website</title>
		<link>http://feedproxy.google.com/~r/stalk_ivana/~3/WUoFZ1a2TTo/</link>
		<comments>http://ivanasetiawan.com/80beans-new-website/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 18:19:51 +0000</pubDate>
		<dc:creator>ivana</dc:creator>
				<category><![CDATA[Notes/blog]]></category>
		<category><![CDATA[Work/arts]]></category>

		<guid isPermaLink="false">http://ivanasetiawan.com/?p=597</guid>
		<description><![CDATA[Today I am gonna write a bit about 80beans redesigned website. Too bad I didn&#8217;t take a screenshot from the previous version(I think I did, but then I accidentally removed it from my desktop&#8230; Oh well, anyway&#8230;) This won&#8217;t take long &#8211; I will just tell you a quick story regarding the redesign process (I [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-605 alignleft" style="margin: 0 10px 10px 0; float: left;" title="SS80b" src="http://ivanasetiawan.com/wp-content/uploads/2011/03/SS80b.png" alt="80beans screenshot" width="150" height="150" /> <span class="museo" style="font-size: 25px;">T</span>oday I am gonna write a bit about <a href="http://80beans.com" target="_blank">80beans</a> redesigned website. Too bad I didn&#8217;t take a screenshot from the previous version(I think I did, but then I accidentally removed it from my desktop&#8230; Oh well, anyway&#8230;)</p>
<p>This won&#8217;t take long &#8211; I will just tell you a quick story regarding the redesign process (I am having sorethroat &amp; severe backpain &#8211; caused by my boxing activity last weekend. Ironically on the day I am taking a day off.)</p>
<p class="museo title">Straight to te point</p>
<p>But let me make it clear before I talk about more stuff &#8211; I love how it turns out. I love how clean &amp; simple it is. Ok, move on:</p>
<p>I started enthusiastically but then a bit worn out after a couple of months. You know the feeling of like being in a studio to record your album for months(usually take approx 6months for a band/artist to finish an album &#8211; sometimes more if they get stuck) and then because you listen to your songs over and over and over again, you kinda lose your senses &amp; cannot determine if what you&#8217;re making is good or not? same shit different story.</p>
<p>Here is what I learn; Making a simple design that looks professional is tough work. Simple is not easy.</p>
<blockquote class="italic"><p>Simplicity is the ultimate sophistication ~Leonardo Da Vinci</p></blockquote>
<p>Since the beginning, Roy &amp; Thijs made it clear that they want a clean &amp; simple design that focuses on UI(easy-on-eyes). I made several sketches but didn&#8217;t really meet their expectations &#8211; I was a bit stressed out because I couldn&#8217;t think of anything cleaner &amp; simpler than what I made back then.</p>
<p>Lucky they took it a bit easy, I got several breaks during the whole process. That actually helped us to really see if what we were making was in the right direction.</p>
<p>Despite how simple it looks today &#8211; I am proud to say that it was hard, complicated &amp; well thought-out design.</p>
<p>That&#8217;s all I guess. See, this is pretty short. O yea, comments will be appreciated! you can post it <a href="http://forr.st/~tuj" target="_blank">here</a> on my forrst link.</p>
]]></content:encoded>
			<wfw:commentRss>http://ivanasetiawan.com/80beans-new-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://ivanasetiawan.com/80beans-new-website/</feedburner:origLink></item>
	</channel>
</rss>

