<?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/" version="2.0">

<channel>
	<title>Isaac Keyet</title>
	
	<link>http://www.isaackeyet.com/blog</link>
	<description>Design, and more</description>
	<lastBuildDate>Mon, 26 Apr 2010 03:01:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/isaackeyet" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="isaackeyet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Disabling “Mood Messages” in Skype</title>
		<link>http://www.isaackeyet.com/blog/2010/disabling-mood-messages-in-skype/</link>
		<comments>http://www.isaackeyet.com/blog/2010/disabling-mood-messages-in-skype/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 23:25:37 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=123</guid>
		<description><![CDATA[If you&#8217;re using Skype regularly, perhaps even on an everyday basis like I do, you might have noticed an annoying new feature that is shipped with Skype: &#8220;Mood Messages&#8221;. If you&#8217;re expecting new chat messages from someone and the mood messages kick in your first reaction will be that you have received a message &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.isaackeyet.com/blog/wp-content/uploads/2010/01/skype-mood-messages-annoying1.png"><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2010/01/skype-mood-messages-annoying1-235x300.png" alt="skype-mood-messages-annoying" title="" width="235" height="300" class="alignright size-medium wp-image-130" /></a>If you&#8217;re using Skype regularly, perhaps even on an everyday basis like I do, you might have noticed an annoying new feature that is shipped with Skype: &#8220;Mood Messages&#8221;. If you&#8217;re expecting new chat messages from someone and the mood messages kick in your first reaction will be that you have received a message &#8211; so you open the Skype chat window with a confused look on your face (because there are no new messages) until you realize that once again the lovely &#8220;Mood Messages&#8221; have foiled you.</p>
<p>I still don&#8217;t understand what these messages actually are. And who at Skype made them enabled by default. But let&#8217;s just try to solve the problem instead.</p>
<p>For some reason the setting to disable these messages is not in the Preferences dialog of Skype, instead it&#8217;s hidden pretty well. Here&#8217;s what you need to do.</p>
<ol>
<li>Open Skypes main window (the buddy list).</li>
<li>In the top you&#8217;ll find the &#8220;Show History&#8221; button, which changes to a notification counter if you have new unread notifications. As for me, I have 1 unread notification, a dreadful &#8220;Mood Message&#8221;. Double-click this message and it will open in Skypes chat window.</li>
<li><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2010/01/skype-mood-messages-chat_window.png" alt="skype-mood-messages-chat_window" title="" width="329" height="198" class="alignright size-full wp-image-127" />In the chat drawer, right click on &#8220;Mood Messages&#8221; and select &#8220;Chat Notification Settings&#8230;&#8221;</li>
<li>A dialog opens, simply select &#8220;Do not notify me&#8221; and also remember to check &#8220;Mark unread messages as read immediately&#8221;.</li>
</ol>
<p>That should do it.<br />
<span class="clear"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2010/disabling-mood-messages-in-skype/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>JavaScript innerHTML problem</title>
		<link>http://www.isaackeyet.com/blog/2010/javascript-innerhtml-problem/</link>
		<comments>http://www.isaackeyet.com/blog/2010/javascript-innerhtml-problem/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 00:02:37 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=121</guid>
		<description><![CDATA[Recently I was updating a JavaScript function which simply added another element to a page, complete with content. The innerHTML function was used. However, I was very confused that some HTML elements I&#8217;d added using innerHTML were stripped on rendering.
Problem: I was trying to add a new row plus cells to an existing table on [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I was updating a JavaScript function which simply added another element to a page, complete with content. The innerHTML function was used. However, I was very confused that some HTML elements I&#8217;d added using innerHTML were stripped on rendering.</p>
<p>Problem: I was trying to add a new row plus cells to an existing table on a page. It seems like innerHTML in Firefox strips new rows and cells (tr and td). Example:</p>
<p><code>&lt;table id="table1"&gt;<br />
   &lt;tr&gt;<br />
      &lt;td&gt;&lt;h3&gt;Existing header&lt;/h3&gt;&lt;/td&gt;<br />
   &lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;script&gt;<br />
   var newRow = document.createElement("tr");<br />
   newRow.innerHTML = '\<br />
   &lt;tr&gt;\<br />
      &lt;td&gt;&lt;h3&gt;New header&lt;/h3&gt;\<br />
   &lt;/tr&gt;\<br />
   ';<br />
   document.getElementById("table1").appendChild(newRow);<br />
&lt;/script&gt;<br />
</code></p>
<p>This would simply output:<br />
<code>&lt;table id="table1"&gt;<br />
   &lt;tr&gt;<br />
      &lt;td&gt;&lt;h3&gt;Existing header&lt;/h3&gt;&lt;/td&gt;<br />
   &lt;/tr&gt;<br />
   &lt;h3&gt;New header&lt;/h3&gt;<br />
&lt;/table&gt;<br />
</code></p>
<p>&#8230;Which is incorrect by web standards and is not much to work with.</p>
<p>Solution: Instead of inserting the new element (the &lt;tr&gt;) <strong>after</strong> the innerHTML string is added, I did it before. It seems like the browser doesn&#8217;t like that we add elements that are strictly associated with tables unless it actually knows for sure that they&#8217;ll be added to the correct structure.</p>
<p>This is the simple solution for disappearing tds and rows:</p>
<p><code>&lt;script&gt;<br />
   var newRow = document.createElement("tr");<br />
   document.getElementById("table1").appendChild(newRow);<br />
   newRow.innerHTML = '\<br />
   &lt;tr&gt;\<br />
      &lt;td&gt;&lt;h3&gt;New header&lt;/h3&gt;\<br />
   &lt;/tr&gt;\<br />
   ';<br />
&lt;/script&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2010/javascript-innerhtml-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quebec</title>
		<link>http://www.isaackeyet.com/blog/2009/quebec/</link>
		<comments>http://www.isaackeyet.com/blog/2009/quebec/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 01:24:05 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=120</guid>
		<description><![CDATA[Just wanted to post a note about the awesome meetup I just got back from in Quebec, Canada. I finally got to meet the rest of the Automatticians (well most of them) and had a great time overall. Everyone is just so intelligent, successful and cool to talk to that it was almost intimidating. We [...]]]></description>
			<content:encoded><![CDATA[<p>Just wanted to post a note about the awesome meetup I just got back from in Quebec, Canada. I finally got to meet the rest of the Automatticians (well most of them) and had a great time overall. Everyone is just so intelligent, successful and cool to talk to that it was almost intimidating. We went mountain biking and gokarting, both of which I really enjoyed and I hope we&#8217;ll do more next year.</p>
<p>Oh, and my team for the week came up with a really cool update to a certain something that I&#8217;m not sure if I should mention right now. Will post more about this later though. It&#8217;s a-w-e-s-o-m-e!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/quebec/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title />
		<link>http://www.isaackeyet.com/blog/2009/ps3-headache/</link>
		<comments>http://www.isaackeyet.com/blog/2009/ps3-headache/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 02:11:20 +0000</pubDate>
		<dc:creator />
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=119</guid>
		<description><![CDATA[I&#8217;m in pain right now. My PS3 broke down big time, keeps throwing what I&#8217;ve learned is the dreaded &#8220;80010514&#8243; error which basically means you&#8217;re f*d and have to return the machine to the vendor to have either the HDD or the BluRay drive swapped. Major bummer.
In other news: It&#8217;s been (and is) a great, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in pain right now. My PS3 broke down big time, keeps throwing what I&#8217;ve learned is the dreaded &#8220;80010514&#8243; error which basically means you&#8217;re f*d and have to return the machine to the vendor to have either the HDD or the BluRay drive swapped. Major bummer.</p>
<p>In other news: It&#8217;s been (and is) a great, warm summer in Sweden. I&#8217;ve moved into a new apartment where I&#8217;m going to stay for a while and I&#8217;m still cranking hard with <a href="http://intensedebate.com">IntenseDebate</a>. Watch out for new cool updates to the plugin soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/ps3-headache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Incredible artwork: Bendito Machine</title>
		<link>http://www.isaackeyet.com/blog/2009/incredible-artwork-bendito-machine/</link>
		<comments>http://www.isaackeyet.com/blog/2009/incredible-artwork-bendito-machine/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 22:23:28 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=117</guid>
		<description><![CDATA[There are three short films in the Bendito Machine series (so far, don&#8217;t know if more are planned). This one I discovered just now, and I&#8217;m amazed by the detail and perfection in the artwork. Check it out and fall in love.

]]></description>
			<content:encoded><![CDATA[<p>There are three short films in the Bendito Machine series (so far, don&#8217;t know if more are planned). This one I discovered just now, and I&#8217;m amazed by the detail and perfection in the artwork. Check it out and fall in love.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/xiXOigfDb0U&#038;hl=sv&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/xiXOigfDb0U&#038;hl=sv&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/incredible-artwork-bendito-machine/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New, flashy user menus for IntenseDebate!</title>
		<link>http://www.isaackeyet.com/blog/2009/new-flashy-user-menus-for-intensedebate/</link>
		<comments>http://www.isaackeyet.com/blog/2009/new-flashy-user-menus-for-intensedebate/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 22:43:42 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=116</guid>
		<description><![CDATA[A few days ago we went live with some new user menus for the IntenseDebate plugin. I&#8217;ve made the design of course, and while they&#8217;re meant to resemble the looks of the old menus in a lot of ways, there are some notable differences. The most striking change is of course the avatar being a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2009/04/idc-newavatarmenu09.jpg" alt="User menu design for IntenseDebate by Isaac Keyet" title="idc-newavatarmenu09" width="362" height="303" class="alignright size-full wp-image-115" />A few days ago we went live with some new user menus for the IntenseDebate plugin. I&#8217;ve made the design of course, and while they&#8217;re meant to resemble the looks of the old menus in a lot of ways, there are some notable differences. The most striking change is of course the avatar being a part of the popup as this was not the case before. An enlarged avatar gives the reader a more personal and complete insight in a user profile.</p>
<p>The goal for the redesign was to remove non-vital elements from the menu, items that you&#8217;re probably not interested in until you know the other stuff anyway. It now shows the username in large letters, along with the reputation meter. If you have enabled your latest twitter messages, and have a description as well, now both will show &#8211; not one or the other like it was before. This is true for the IntenseDebate.com profile as well.</p>
<p>Of course I&#8217;m going for pixel-perfect, clean, and with fancy effects once you notice them. Hint: The &#8220;border&#8221; around the avatar is actually a semi-transparent sweet-looking box, and all buttons have fancy :hover and :active effects. All in a single CSS sprite of course. Hope you like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/new-flashy-user-menus-for-intensedebate/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Sad robot</title>
		<link>http://www.isaackeyet.com/blog/2009/sad-robot/</link>
		<comments>http://www.isaackeyet.com/blog/2009/sad-robot/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 00:25:02 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=112</guid>
		<description><![CDATA[
This blog is not all about YouTube, I promise.. But this video was just awesome.
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Vj8qOYaJTWs&#038;hl=sv&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Vj8qOYaJTWs&#038;hl=sv&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>This blog is not all about YouTube, I promise.. But this video was just awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/sad-robot/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Updated blog design</title>
		<link>http://www.isaackeyet.com/blog/2009/updated-blog-design/</link>
		<comments>http://www.isaackeyet.com/blog/2009/updated-blog-design/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 20:29:57 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=113</guid>
		<description><![CDATA[If you&#8217;re reading this in a reader, you might want to click through to the actual web page (www.isaackeyet.com/blog) to see the beauty. It&#8217;s a minor update but still refreshing if you ask me. Will touch it up a bit again soon when I have the inspiration. A design update is coming to my personal [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re reading this in a reader, you might want to click through to the actual web page (<a href="http://www.isaackeyet.com/blog/">www.isaackeyet.com/blog</a>) to see the beauty. It&#8217;s a minor update but still refreshing if you ask me. Will touch it up a bit again soon when I have the inspiration. A design update is coming to my personal swedish blog as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/updated-blog-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The first useful ad</title>
		<link>http://www.isaackeyet.com/blog/2009/the-first-useful-ad/</link>
		<comments>http://www.isaackeyet.com/blog/2009/the-first-useful-ad/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 00:13:37 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=110</guid>
		<description><![CDATA[I was actually pleasantly surprised when I discovered this new advertisement type on YouTube the other day, it&#8217;s a large bar that goes across the bottom of the video that tells the name of the song, displays some artwork if available AND links to services where you can buy and download the song. How awesome [...]]]></description>
			<content:encoded><![CDATA[<p>I was actually pleasantly surprised when I discovered this new advertisement type on YouTube the other day, it&#8217;s a large bar that goes across the bottom of the video that tells the name of the song, displays some artwork if available AND links to services where you can buy and download the song. How awesome is that? Go YouTube!</p>
<p><img src="http://www.isaackeyet.com/blog/wp-content/uploads/2009/04/blog-youtube.png" alt="YouTube music advertisement screenshot" width="500" height="270" class="alignnone size-full wp-image-111" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/the-first-useful-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress nominated for Webware 2009</title>
		<link>http://www.isaackeyet.com/blog/2009/wordpress-nominated-for-webware-2009/</link>
		<comments>http://www.isaackeyet.com/blog/2009/wordpress-nominated-for-webware-2009/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 20:24:30 +0000</pubDate>
		<dc:creator>Isaac Keyet</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.isaackeyet.com/blog/?p=109</guid>
		<description><![CDATA[So this is pretty cool&#8230; The Wordpress platform was nominated in the Webware awards anno 2009. If you love WordPress as much as I do, you don&#8217;t hesitate to go vote for your champ!
Seriously though, I&#8217;m proud. The whole team behind WordPress is truly amazing.
]]></description>
			<content:encoded><![CDATA[<p>So this is pretty cool&#8230; The Wordpress platform was nominated in the Webware awards anno 2009. If you love WordPress as much as I do, you don&#8217;t hesitate to <a href="http://www.cnet.com/html/ww/100/2009/poll/social.html">go vote for your champ</a>!</p>
<p>Seriously though, I&#8217;m proud. The whole team behind WordPress is truly amazing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.isaackeyet.com/blog/2009/wordpress-nominated-for-webware-2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
