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

<channel>
	<title>Mental notes to myself &#187; Software</title>
	<atom:link href="http://livebookmark.net/journal/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://livebookmark.net/journal</link>
	<description>web, money and etc.</description>
	<lastBuildDate>Sat, 31 Oct 2009 15:36:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ezComponents ready for prod?</title>
		<link>http://livebookmark.net/journal/2008/02/11/ezcomponents-ready-for-prod/</link>
		<comments>http://livebookmark.net/journal/2008/02/11/ezcomponents-ready-for-prod/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 17:47:37 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2008/02/11/ezcomponents-ready-for-prod/</guid>
		<description><![CDATA[I&#8217;m following what ezComponents doing for sometime now.
Quite nice framework for whatever you need.
I gave a try to write a mysql schema sync.
Real easy to write. only 4-5 lines of code to sync schemas.
It would have been great if it was actually working. The outout sql ddl is not runnable in some cases (syntax errors). [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m following what <a href="http://ez.no/ezcomponents">ezComponents</a> doing for sometime now.<br />
Quite nice framework for whatever you need.<br />
I gave a try to write a mysql schema sync.<br />
Real easy to write. only 4-5 lines of code to sync schemas.<br />
It would have been great if it was actually working. The outout sql ddl is not runnable in some cases (syntax errors). Or the order of the columns are different.<br />
I&#8217;m sure they&#8217;ll fix it soon but this tells me they are not yet ready for production quality.</p>
<p>See the code below, maybe I&#8217;m doing something wrong.<br />
<span id="more-163"></span></p>
<p><code><br />
&lt;?php<br />
require_once "ezcomponents/Base/src/base.php";</p>
<p>function __autoload( $className ){<br />
        ezcBase::autoload( $className );<br />
}</p>
<p>$sourcedb['host']= isset($_POST['sourcedb']['host'])? $_POST['sourcedb']['host']:'';<br />
$sourcedb['port']= isset($_POST['sourcedb']['port'])? $_POST['sourcedb']['port']:'';<br />
$sourcedb['user']= isset($_POST['sourcedb']['user'])? $_POST['sourcedb']['user']:'';<br />
$sourcedb['pass']= isset($_POST['sourcedb']['pass'])? $_POST['sourcedb']['pass']:'';<br />
$sourcedb['db']= isset($_POST['sourcedb']['db'])? $_POST['sourcedb']['db']:'';<br />
$destdb['host']= isset($_POST['destdb']['host'])? $_POST['destdb']['host']:'';<br />
$destdb['port']=  isset($_POST['destdb']['port'])? $_POST['destdb']['port']:'';<br />
$destdb['user']=  isset($_POST['destdb']['user'])? $_POST['destdb']['user']:'';<br />
$destdb['pass']=  isset($_POST['destdb']['pass'])? $_POST['destdb']['pass']:'';<br />
$destdb['db']=  isset($_POST['destdb']['db'])? $_POST['destdb']['db']:'';</p>
<p>$ddl = null;<br />
if (count($_POST)&gt;0){<br />
	$sdb = ezcDbFactory::create("mysql://{$sourcedb['user']}:{$sourcedb['pass']}@{$sourcedb['host']}:{$sourcedb['port']}/{$sourcedb['db']}");<br />
	$souceSchema = ezcDbSchema::createFromDb($sdb);</p>
<p>	$ddb = ezcDbFactory::create("mysql://{$destdb['user']}:{$destdb['pass']}@{$destdb['host']}:{$destdb['port']}/{$destdb['db']}");<br />
	$destSchema = ezcDbSchema::createFromDb($ddb);<br />
	$diffSchema = ezcDbSchemaComparator::compareSchemas( $destSchema,$souceSchema );<br />
	$ddl = $diffSchema-&gt;convertToDDL( $ddb );<br />
}<br />
?&gt;</p>
<p>&lt;html&gt;<br />
&lt;style&gt;<br />
input{<br />
	width:120px;<br />
}<br />
&lt;/style&gt;<br />
&lt;body&gt;<br />
&lt;h1&gt; Schema Comparator for MySQL&lt;/h1&gt;<br />
&lt;p&gt;Compares the source and destination db schemas, gives the DDL to apply to the destination.&lt;/p&gt;<br />
&lt;br /&gt;<br />
&lt;form action="#" method="post"&gt;<br />
&lt;table border="1"&gt;<br />
&lt;tr&gt;&lt;td&gt;</p>
<p>&lt;table&gt;<br />
&lt;tr&gt;&lt;td&gt;Source Db Server: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="sourcedb[host]" value="&lt;?php echo $sourcedb['host'];?/&gt;"/&gt; Port:&lt;input type="text" name="sourcedb[port]" value="&lt;?php echo $sourcedb['port'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;Source Db Username: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="sourcedb[user]" value="&lt;?php echo $sourcedb['user'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;Source Db Password: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="sourcedb[pass]" value="&lt;?php echo $sourcedb['pass'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;Source Db : &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="sourcedb[db]" value="&lt;?php echo $sourcedb['db'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/td&gt;&lt;td&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;&lt;td&gt;Destination Db Server: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="destdb[host]" value="&lt;?php echo $destdb['host'];?/&gt;"/&gt; Port:&lt;input type="text" name="destdb[port]" value="&lt;?php echo $destdb['port'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;Destination Db Username: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="destdb[user]" value="&lt;?php echo $destdb['user'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;Destination Db Password: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="destdb[pass]" value="&lt;?php echo $destdb['pass'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;Destination Db : &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="destdb[db]" value="&lt;?php echo $destdb['db'];?/&gt;"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td colspan="2" align="center"&gt;&lt;input type="submit" value="Compare"/&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/form&gt;<br />
&lt;pre&gt;<br />
&lt; ?php<br />
	if (count($_POST)&gt;0){<br />
		if ($ddl!=null &#038;&#038; count($ddl)&gt;0){<br />
			echo 'USE '.$destdb['db'].";\n";<br />
			foreach($ddl as $lines){<br />
				echo $lines.";\n";<br />
			}<br />
		}<br />
		else{<br />
			echo '-- No diff';<br />
		}<br />
	}<br />
?&gt;<br />
&lt;/pre&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p>
<p></code></p>
<p>Followup:<br />
bug is entered as <a href="http://issues.ez.no/IssueView.php?Id=12538&#038;activeItem=1">http://issues.ez.no/IssueView.php?Id=12538&#038;activeItem=1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2008/02/11/ezcomponents-ready-for-prod/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Great Programmers Answer</title>
		<link>http://livebookmark.net/journal/2006/07/24/great-programmers-answer/</link>
		<comments>http://livebookmark.net/journal/2006/07/24/great-programmers-answer/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 13:29:09 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2006/07/24/great-programmers-answer/</guid>
		<description><![CDATA[Reading this interview is  a really good start to monday morning.
The questiongs are directed to the well known and not so well known programmers.
Linus Torvalds &#8211; The Linux kernel author
Dave Thomas &#8211; Author of the Pragmmatic Programmer, Programming Ruby and other great books about programming. One can read his mainly programming-related thoughts here.
David Heinemeier [...]]]></description>
			<content:encoded><![CDATA[<p>Reading this interview is  a really good start to monday morning.<br />
The questiongs are directed to the well known and not so well known programmers.</p>
<p><strong>Linus Torvalds</strong> &#8211; The Linux kernel author<br />
<strong>Dave Thomas</strong> &#8211; Author of the Pragmmatic Programmer, Programming Ruby and other great books about programming. One can read his mainly programming-related thoughts here.<br />
<strong>David Heinemeier Hansson</strong> &#8211; Author of the Rails Framework &#8211; the new hot web development framework. He has a weblog here.<br />
<strong>Steve Yegge</strong> &#8211; Proably the least known from guys here, but also made one of the most interestings answers, has a popular weblog about programming. He is also the author of a game called Ã¢â‚¬Å¾WyvernÃ¢â‚¬Â.<br />
<strong>Peter Norvig</strong> &#8211; Research Director at Google, a well known Lisper, author of famous (in some circles at least) books about AI. See his homepage.<br />
<strong>Guido Van Rossum</strong> &#8211; The Python language creator<br />
<strong>James Gosling</strong> &#8211; The Java language creator<br />
<strong>Tim Bray</strong> &#8211; One of the XML and Atom specifications author and a blogger too.</p>
<p><span id="more-136"></span><br />
Read the rest of the interview from here: <a href="http://sztywny.titaniumhosting.com/2006/07/23/stiff-asks-great-programmers-answers/">StiffLog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2006/07/24/great-programmers-answer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real kick the ball cell phone camera game</title>
		<link>http://livebookmark.net/journal/2006/02/08/real-kick-the-ball-cell-phone-camera-game/</link>
		<comments>http://livebookmark.net/journal/2006/02/08/real-kick-the-ball-cell-phone-camera-game/#comments</comments>
		<pubDate>Thu, 09 Feb 2006 00:32:18 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Cell phones]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[Seimens]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2006/02/08/real-kick-the-ball-cell-phone-video-camera-game/</guid>
		<description><![CDATA[It&#8217;s a really nice innovative idea from Siemens to launch the new game augmented reality (AR) football game on the mobile phone for the coming world cup. At last another use of cell phone cameras other than taking up skirt pictures.
Here  is a nice screen cap of the game:

]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a really nice innovative idea from Siemens to launch the new game augmented reality (AR) football game on the mobile phone for the coming world cup. At last another use of cell phone cameras other than taking <a href="http://yellow.ribbon.to/%7Emajires/figure.html">up skirt pictures</a>.</p>
<p>Here  is a nice screen cap of the game:<br />
<a class="imagelink" title="ar-football-cell-game" href="http://livebookmark.net/journal/wp-content/uploads/2006/02/Photo5946.jpg"><img id="image119" height=86 alt="ar-football-cell-game" src="http://livebookmark.net/journal/wp-content/uploads/2006/02/Photo5946.thumbnail.jpg" width="128"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2006/02/08/real-kick-the-ball-cell-phone-camera-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL is here</title>
		<link>http://livebookmark.net/journal/2005/10/25/mysql-is-here/</link>
		<comments>http://livebookmark.net/journal/2005/10/25/mysql-is-here/#comments</comments>
		<pubDate>Tue, 25 Oct 2005 13:41:55 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2005/10/25/mysql-is-here/</guid>
		<description><![CDATA[It&#8217;s a great day. At least for me.
The well anticipated mySQL 5.0 is out!
Go get it. Use it. 
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a great day. At least for me.<br />
The well anticipated mySQL 5.0 is out!<br />
<a href="http://dev.mysql.com/downloads/mysql/5.0.html">Go get it</a>. Use it. </p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/10/25/mysql-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When C is the Best (Tool for the Job)</title>
		<link>http://livebookmark.net/journal/2005/10/11/when-c-is-the-best-tool-for-the-job/</link>
		<comments>http://livebookmark.net/journal/2005/10/11/when-c-is-the-best-tool-for-the-job/#comments</comments>
		<pubDate>Tue, 11 Oct 2005 12:43:44 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[References]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2005/10/11/when-c-is-the-best-tool-for-the-job/</guid>
		<description><![CDATA[Here is a great article why C should be prefered sometimes, which I totally agree:
Portability
Open-Sourcability
Low-levelness
Self-contained-ness
Making use of UNIXisms
Integrability
Speed and Memory Consumption
Here is the rest : link
]]></description>
			<content:encoded><![CDATA[<p>Here is a great article why C should be prefered sometimes, which I totally agree:</p>
<li>Portability</li>
<li>Open-Sourcability</li>
<li>Low-levelness</li>
<li>Self-contained-ness</li>
<li>Making use of UNIXisms</li>
<li>Integrability</li>
<li>Speed and Memory Consumption</li>
<p>Here is the rest : <a href="http://www.shlomifish.org/philosophy/computers/when-c-is-best/when-c-is-the-best.html">link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/10/11/when-c-is-the-best-tool-for-the-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New HCIs and SymphonyOS</title>
		<link>http://livebookmark.net/journal/2005/09/07/new-hcis-and-symphonyos/</link>
		<comments>http://livebookmark.net/journal/2005/09/07/new-hcis-and-symphonyos/#comments</comments>
		<pubDate>Wed, 07 Sep 2005 13:39:23 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/?p=81</guid>
		<description><![CDATA[I was reading this article about &#8220;Top 8 Reasons HCI is in its Stone Age&#8221; and one of the arguments was about the screen corners:
The irony is that we argue about whether systems should be application-centered or document-centered, probably the two most important entities in a computer. Have you ever seen a system which lets [...]]]></description>
			<content:encoded><![CDATA[<p>I was reading this article about &#8220;<a href="http://juicability.blogspot.com/2005/09/top-8-reasons-hci-is-in-its-stone-age.html">Top 8 Reasons HCI is in its Stone Age</a>&#8221; and one of the arguments was about the screen corners:</p>
<blockquote><p>The irony is that we argue about whether systems should be application-centered or document-centered, probably the two most important entities in a computer. Have you ever seen a system which lets you, out-of-the-box, hit a corner in order to do anything at all even remotely related to anything having anything at all to do with a document or application? So maybe documents aren&#8217;t the most important entity in a computer. Browse the internet by hitting the screen corner? Check mail in the screen corner? Get Info in the screen corner? System preferences in the screen corner? Switching applications in the screen corner? </p></blockquote>
<p>And this argument makes more sense after seeing <a href="http://www.symphonyos.com/">SymphonyOS</a>: a Desktop computer operating system based on Debian GNU/Linux and Knoppix GNU/Linux.</p>
<p>I seems some people out there is really working on human computer interfaces&#8230;<br />
Great job. I&#8217;m impressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/09/07/new-hcis-and-symphonyos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PSP Browser</title>
		<link>http://livebookmark.net/journal/2005/08/26/psp-browser/</link>
		<comments>http://livebookmark.net/journal/2005/08/26/psp-browser/#comments</comments>
		<pubDate>Fri, 26 Aug 2005 15:32:48 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[PSP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2005/08/26/psp-browser/</guid>
		<description><![CDATA[The update 2.0 for PSP is out so the internet browser&#8230;
here is the headers for PSP browser&#8230;
no gzip or other encoding it seems&#8230;
A huge warning : If you want to be PSP friendly website. Don&#8217;t use upper case letters in the URL.
Update: One of the biggest questions: No it doesn&#8217;t support AJAX
and CSS is a [...]]]></description>
			<content:encoded><![CDATA[<p>The update 2.0 for PSP is out so the internet browser&#8230;</p>
<p>here is the headers for PSP browser&#8230;<br />
no gzip or other encoding it seems&#8230;</p>
<p>A huge warning : If you want to be PSP friendly website. Don&#8217;t use upper case letters in the URL.</p>
<p><strong>Update:</strong> One of the biggest questions: No it doesn&#8217;t support AJAX<br />
and CSS is a bit problematic for the div having absolute positioning in relative divs&#8230;</p>
<p><span id="more-76"></span><br />
<code><br />
 Timestamp:Fri, 26 Aug 2005 15:24:45 +0000<br />
SERVER:Array<br />
(<br />
    [DOCUMENT_ROOT] => /*******/test<br />
    [HTTP_ACCEPT] => */*;q=0.01<br />
    [HTTP_ACCEPT_ENCODING] =><br />
    [HTTP_ACCEPT_LANGUAGE] => en<br />
    [HTTP_CONNECTION] => Keep-Alive<br />
    [HTTP_HOST] => test.tumbleside.com<br />
    [HTTP_USER_AGENT] => <strong>Mozilla/4.0 (PSP (PlayStation Portable); 2.00)</strong><br />
    [PATH] => /*******/sbin<br />
    [REMOTE_ADDR] => *******<br />
    [REMOTE_PORT] => 53356<br />
    [SCRIPT_FILENAME] => /*******/browsers/infomailer.php<br />
    [SERVER_ADDR] => *******<br />
    [SERVER_ADMIN] => *******<br />
    [SERVER_NAME] => test.tumbleside.com<br />
    [SERVER_PORT] => 80<br />
    [SERVER_SIGNATURE] =><br />
<address>Apache/1.3.33 Server at test.tumbleside.com Port 80</address>
<p>    [SERVER_SOFTWARE] => Apache/1.3.33 (Unix) mod_gzip/1.3.26.1a mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 PHP/4.4.0 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a<br />
    [GATEWAY_INTERFACE] => CGI/1.1<br />
    [SERVER_PROTOCOL] => HTTP/1.1<br />
    [REQUEST_METHOD] => GET<br />
    [QUERY_STRING] =><br />
    [REQUEST_URI] => /browsers/infomailer.php<br />
    [SCRIPT_NAME] => /browsers/infomailer.php<br />
    [PATH_TRANSLATED] => /*******/infomailer.php<br />
    [PHP_SELF] => /browsers/infomailer.php<br />
    [argv] => Array<br />
        (<br />
        )</p>
<p>    [argc] => 0<br />
)<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/08/26/psp-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meetro</title>
		<link>http://livebookmark.net/journal/2005/08/09/meetro/</link>
		<comments>http://livebookmark.net/journal/2005/08/09/meetro/#comments</comments>
		<pubDate>Tue, 09 Aug 2005 17:14:57 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2005/08/09/meetro/</guid>
		<description><![CDATA[ICQ +  L10n sounds like a good idea.
But the bad side of Meetro is I guess, that you have to download something.
All the functionality of Meetro would be on a website&#8230;
And what about a dating website together with functionality of Google Maps and blogging&#8230;
That would be hot!
]]></description>
			<content:encoded><![CDATA[<p>ICQ +  L10n sounds like a good idea.<br />
But the bad side of <a href="http://meetro.com">Meetro</a> is I guess, that you have to download something.<br />
All the functionality of Meetro would be on a website&#8230;</p>
<p>And what about a dating website together with functionality of Google Maps and blogging&#8230;</p>
<p>That would be hot!</p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/08/09/meetro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on rails</title>
		<link>http://livebookmark.net/journal/2005/08/05/ruby-on-rails/</link>
		<comments>http://livebookmark.net/journal/2005/08/05/ruby-on-rails/#comments</comments>
		<pubDate>Fri, 05 Aug 2005 13:34:31 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2005/08/05/ruby-on-rails/</guid>
		<description><![CDATA[Here is a video of Ruby on Rails in use.
54MB
]]></description>
			<content:encoded><![CDATA[<p>Here is a video of Ruby on Rails in use.</p>
<p><a href="http://www.rubyonrails.com/media/video/rails_take2_with_sound.mov">54MB</a></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/08/05/ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.rubyonrails.com/media/video/rails_take2_with_sound.mov" length="54364199" type="video/quicktime" />
		</item>
		<item>
		<title>Windows Vista and IE7</title>
		<link>http://livebookmark.net/journal/2005/07/28/windows-vista-and-ie7/</link>
		<comments>http://livebookmark.net/journal/2005/07/28/windows-vista-and-ie7/#comments</comments>
		<pubDate>Thu, 28 Jul 2005 14:56:14 +0000</pubDate>
		<dc:creator>Harun Yayli</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Longhorn]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://livebookmark.net/journal/2005/07/28/windows-vista-and-ie7/</guid>
		<description><![CDATA[Now both Windows Vista and IE7 is on beta&#8230;
We&#8217;ll see what will happen. I hope microsoft does not spoil RSS with IE7.
Links:
http://www.microsoft.com/windowsvista/default.mspx
http://www.microsoft.com/windows/IE/ie7/default.mspx
]]></description>
			<content:encoded><![CDATA[<p>Now both Windows Vista and IE7 is on beta&#8230;</p>
<p>We&#8217;ll see what will happen. I hope microsoft does not spoil RSS with IE7.</p>
<p>Links:<br />
<a href="http://www.microsoft.com/windowsvista/default.mspx">http://www.microsoft.com/windowsvista/default.mspx</a><br />
<a href="http://www.microsoft.com/windows/IE/ie7/default.mspx">http://www.microsoft.com/windows/IE/ie7/default.mspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://livebookmark.net/journal/2005/07/28/windows-vista-and-ie7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
