<?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>Icebergist &#187; Misc</title>
	<atom:link href="http://icebergist.com/category/misc/feed" rel="self" type="application/rss+xml" />
	<link>http://icebergist.com</link>
	<description>Exploring hidden depths of web apps business</description>
	<lastBuildDate>Mon, 29 Mar 2010 13:14:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Restoring superblock on Ubutnu</title>
		<link>http://icebergist.com/posts/restoring-superblock-on-ubutnu</link>
		<comments>http://icebergist.com/posts/restoring-superblock-on-ubutnu#comments</comments>
		<pubDate>Sun, 09 Nov 2008 10:13:43 +0000</pubDate>
		<dc:creator>Slobodan Kovačević</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://icebergist.com/?p=16</guid>
		<description><![CDATA[Recently I had a problem on my Torrent box (an old PC that I use as dedicated torrent client) that runs Ubuntu. For some reason my root partition was being mounted as read-only. Everything else seemed to work (all other partitions were mounted properly), but I couldn&#8217;t change any of my config or do anything [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had a problem on my Torrent box (an old PC that I use as dedicated torrent client) that runs Ubuntu. For some reason my root partition was being mounted as read-only. Everything else seemed to work (all other partitions were mounted properly), but I couldn&#8217;t change any of my config or do anything on root partition.</p>
<p>I did the usual stuff:</p>
<ul>
<li>Run fsck checks and it said that everything is fine</li>
<li>Used Ubuntu&#8217;s live CD to boot, which got me read-write access to root partition. I changed some things in fstab, tried to get it to be rw permanently. No matter what I did as soon as I rebooted the root partition was once again read-only.</li>
<li>I tried booting from some repair disks I have, but all checks passed and no problem was detected. <img src='http://icebergist.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </li>
</ul>
<p>Finally, I read somewhere that a similar problem was caused by faulty superblock on hard drive. Fortunately Ubuntu stores superblock backups in different places around disk, so I decided to try to restore it from one of those backups.</p>
<p>It turned out that all I needed was a single command (this <a title="Bad superblock" href="http://ubuntuforums.org/showpost.php?s=72da065bbe1506b27f41a8cfc252c732&amp;p=1424786&amp;postcount=5">Ubuntu forum post helped</a>) to restore superblock:</p>
<p><code>e2fsck -b 32768 /dev/hdc1</code></p>
<p>After that my root partition was back to read-write mode. <img src='http://icebergist.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Before you do stuff like that to your computer I suggest that you read man pages for <a title="mke2fs" href="http://linux.die.net/man/8/mke2fs">mke2fs</a> and <a title="e2fsck" href="http://linux.die.net/man/8/e2fsck">e2fsck</a>. It will prevent you from doing something foolish like deleting your whole hard drive. <img src='http://icebergist.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Icebergist&amp;siteurl=http%3A%2F%2Ficebergist.com%2F&amp;linkname=Restoring%20superblock%20on%20Ubutnu&amp;linkurl=http%3A%2F%2Ficebergist.com%2Fposts%2Frestoring-superblock-on-ubutnu"><img src="http://icebergist.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16"  alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Restoring superblock on Ubutnu";
		a2a_linkurl="http://icebergist.com/posts/restoring-superblock-on-ubutnu";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://icebergist.com/posts/restoring-superblock-on-ubutnu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mosso hosting cloud</title>
		<link>http://icebergist.com/posts/mosso-hosting-cloud</link>
		<comments>http://icebergist.com/posts/mosso-hosting-cloud#comments</comments>
		<pubDate>Wed, 17 Sep 2008 10:44:33 +0000</pubDate>
		<dc:creator>Slobodan Kovačević</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Ruby and Rails]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://icebergist.com/?p=13</guid>
		<description><![CDATA[Mosso&#8217;s hosting cloud at $100 / month seems like a good solution to get a scalable server. However one thing bugs me, actually two things&#8230;
First one: they offer FTP only access. Meaning you cannot deploy sites directly from code repositories (i.e. git or svn). That sucks.
Second thing that bugs me: for $100 you get quite [...]]]></description>
			<content:encoded><![CDATA[<p><a class="external" href="http://www.mosso.com/">Mosso&#8217;s hosting cloud</a> at $100 / month seems like a good solution to get a scalable server. However one thing bugs me, actually two things&#8230;</p>
<p>First one: they offer <strong>FTP only access</strong>. Meaning you cannot deploy sites directly from code repositories (i.e. git or svn). That sucks.</p>
<p>Second thing that bugs me: for $100 you get quite a lot of computing power which can be used to run multiple sites &#8211; but <strong>you are only allowed to have one Rails app running</strong>. Only one. If you want additional Rails apps (for example to have a test server) you need to pay an extra fee.</p>
<p>I know it&#8217;s cloud computing and that you have to be able to run it with any additional configuration (that&#8217;s why I think it&#8217;s ok that you have to freeze your gems in Rails apps, because you cannot install any gems yourself)&#8230; but not being able to checkout my code from repository and having to upload the whole app each time you make changes <strong>is really annoying</strong>.</p>
<p>In their defense, the support guy said that they are working on it, but he could give me an ETA when they&#8217;ll allow something like that.</p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Icebergist&amp;siteurl=http%3A%2F%2Ficebergist.com%2F&amp;linkname=Mosso%20hosting%20cloud&amp;linkurl=http%3A%2F%2Ficebergist.com%2Fposts%2Fmosso-hosting-cloud"><img src="http://icebergist.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16"  alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Mosso hosting cloud";
		a2a_linkurl="http://icebergist.com/posts/mosso-hosting-cloud";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://icebergist.com/posts/mosso-hosting-cloud/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>This should be interesting weekly &#8211; week 28</title>
		<link>http://icebergist.com/posts/this-should-be-interesting-weekly-week-28</link>
		<comments>http://icebergist.com/posts/this-should-be-interesting-weekly-week-28#comments</comments>
		<pubDate>Sun, 13 Jul 2008 10:25:00 +0000</pubDate>
		<dc:creator>Slobodan Kovačević</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[This should be interesting - weekly]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[weekly]]></category>

		<guid isPermaLink="false">http://icebergist.com/?p=10</guid>
		<description><![CDATA[
What&#8217;s New in Edge Rails: Easy Join Table Conditions.
Faces of Millions &#8211; Art project which aims to gather one million photos of people faces and create 10m x 10m photo mosaic.
Uni-Form is an attempt to standardize form markup (xhtml) and css.
Mac OS X full screen QuickLook shortcut.
A guide to CSS support in Email.

[condensed from 'this [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>What&#8217;s New in Edge Rails: <a href="http://tumblelog.slobodankovacevic.com/post/41430445/whats-new-in-edge-rails-easy-join-table-conditions">Easy Join Table Conditions.</a></li>
<li><a href="http://tumblelog.slobodankovacevic.com/post/41483353/faces-of-millions">Faces of Millions</a> &#8211; Art project which aims to gather one million photos of people faces and create 10m x 10m photo mosaic.</li>
<li><a href="http://tumblelog.slobodankovacevic.com/post/41727168/uni-form">Uni-Form</a> is an attempt to standardize form markup (xhtml) and css.</li>
<li><a href="http://tumblelog.slobodankovacevic.com/post/41886839/mac-fullscreen-quicklook-a-k-a-slideshow">Mac OS X full screen QuickLook shortcut.</a></li>
<li>A guide to <a href="http://tumblelog.slobodankovacevic.com/post/41978415/a-guide-to-css-support-in-email">CSS support in Email</a>.</li>
</ul>
<p>[condensed from '<a href="http://tumblelog.slobodankovacevic.com/">this should be interesting</a>' tumblelog]</p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Icebergist&amp;siteurl=http%3A%2F%2Ficebergist.com%2F&amp;linkname=This%20should%20be%20interesting%20weekly%20%E2%80%93%20week%2028&amp;linkurl=http%3A%2F%2Ficebergist.com%2Fposts%2Fthis-should-be-interesting-weekly-week-28"><img src="http://icebergist.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16"  alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="This should be interesting weekly – week 28";
		a2a_linkurl="http://icebergist.com/posts/this-should-be-interesting-weekly-week-28";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://icebergist.com/posts/this-should-be-interesting-weekly-week-28/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This should be interesting weekly &#8211; week 27</title>
		<link>http://icebergist.com/posts/this-should-be-interesting-weekly-week-27</link>
		<comments>http://icebergist.com/posts/this-should-be-interesting-weekly-week-27#comments</comments>
		<pubDate>Sun, 06 Jul 2008 14:30:37 +0000</pubDate>
		<dc:creator>Slobodan Kovačević</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[This should be interesting - weekly]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[weekly]]></category>

		<guid isPermaLink="false">http://icebergist.com/?p=8</guid>
		<description><![CDATA[This is the first weekly condensed edition of my &#8220;This should be interesting&#8221; tumblelog. Every Sunday I will re-post most interesting posts here on the Icebergist.

Free Book: &#8220;Ruby on Rails 2.1 &#8211; What’s new&#8221;
Better Blockquotes &#8211; blockquotes CSS styling examples
Slife &#8211; free automatic time tracking for Mac
unfocus-history-keeper &#8211; back button enabling, deep linking, event driven [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first weekly condensed edition of my <a title="Tumblelog by Slobodan Kovacevic" href="http://tumblelog.slobodankovacevic.com/">&#8220;This should be interesting&#8221; tumblelog</a>. Every Sunday I will re-post most interesting posts here on the Icebergist.</p>
<ul>
<li><a title="Free Book: &quot;Ruby on Rails 2.1 - What’s new&quot;" href="http://tumblelog.slobodankovacevic.com/post/40966961/new-free-book-ruby-on-rails-2-1-whats-new">Free Book: &#8220;Ruby on Rails 2.1 &#8211; What’s new&#8221;</a></li>
<li><a title="Better Blockquotes - Blockquotes examples" href="http://tumblelog.slobodankovacevic.com/post/40888615/better-blockquotes-blockquotes-examples">Better Blockquotes</a> &#8211; blockquotes CSS styling examples</li>
<li><a title="Slife - free automatic time tracking for Mac" href="http://tumblelog.slobodankovacevic.com/post/39785793/slife-free-automatic-time-tracking-for-mac">Slife</a> &#8211; free automatic time tracking for Mac</li>
<li><a title="unfocus-history-keeper" href="http://tumblelog.slobodankovacevic.com/post/39263529/unfocus-history-keeper-back-button-enabling-deep">unfocus-history-keeper</a> &#8211; back button enabling, deep linking, event driven Javascrpt/DHTML/Ajax Library (works for Flash too)</li>
</ul>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Icebergist&amp;siteurl=http%3A%2F%2Ficebergist.com%2F&amp;linkname=This%20should%20be%20interesting%20weekly%20%E2%80%93%20week%2027&amp;linkurl=http%3A%2F%2Ficebergist.com%2Fposts%2Fthis-should-be-interesting-weekly-week-27"><img src="http://icebergist.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16"  alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="This should be interesting weekly – week 27";
		a2a_linkurl="http://icebergist.com/posts/this-should-be-interesting-weekly-week-27";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://icebergist.com/posts/this-should-be-interesting-weekly-week-27/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X problems upgrading from 10.5.3 to 10.5.4</title>
		<link>http://icebergist.com/posts/mac-os-x-problems-upgrading-from-1053-to-1054</link>
		<comments>http://icebergist.com/posts/mac-os-x-problems-upgrading-from-1053-to-1054#comments</comments>
		<pubDate>Fri, 04 Jul 2008 06:32:26 +0000</pubDate>
		<dc:creator>Slobodan Kovačević</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://icebergist.com/?p=7</guid>
		<description><![CDATA[Today I tried to upgrade my Mac from 10.5.3 to 10.5.4 using normal Software Update. That didn&#8217;t go as planned as installation hanged at &#8220;Configuring Installation&#8221; and only thing I could do is shutdown the computer.
After some research and few unsuccessful retries I have finally managed to solve the upgrade problem by downloading standalone 10.5.4 [...]]]></description>
			<content:encoded><![CDATA[<p>Today I tried to upgrade my Mac from 10.5.3 to 10.5.4 using normal Software Update. That didn&#8217;t go as planned as installation hanged at &#8220;Configuring Installation&#8221; and only thing I could do is shutdown the computer.</p>
<p>After some research and few unsuccessful retries I have finally managed to solve the upgrade problem by downloading standalone 10.5.4 update from <a title="Download Apple Mac OS X update" href="http://www.apple.com/support/downloads/">Apple download section</a>; booting in safe mode (hold shift key when booting) and then installing the update.</p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Icebergist&amp;siteurl=http%3A%2F%2Ficebergist.com%2F&amp;linkname=Mac%20OS%20X%20problems%20upgrading%20from%2010.5.3%20to%2010.5.4&amp;linkurl=http%3A%2F%2Ficebergist.com%2Fposts%2Fmac-os-x-problems-upgrading-from-1053-to-1054"><img src="http://icebergist.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16"  alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="Mac OS X problems upgrading from 10.5.3 to 10.5.4";
		a2a_linkurl="http://icebergist.com/posts/mac-os-x-problems-upgrading-from-1053-to-1054";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://icebergist.com/posts/mac-os-x-problems-upgrading-from-1053-to-1054/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So it begins&#8230;</title>
		<link>http://icebergist.com/posts/so-it-begins</link>
		<comments>http://icebergist.com/posts/so-it-begins#comments</comments>
		<pubDate>Tue, 24 Jun 2008 21:13:44 +0000</pubDate>
		<dc:creator>Slobodan Kovačević</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://icebergist.com/?p=3</guid>
		<description><![CDATA[Welcome to an icebergist blog. The Icebergist will be a blog about both technical and business stuff I deal with daily. From Ruby on Rails programming to time organizing, everything that’s important in my daily work as a freelance developer.
As you can see I just setup the Icebergist blog, so at the moment it&#8217;s content-free. [...]]]></description>
			<content:encoded><![CDATA[<p>Welcome to an icebergist blog. The Icebergist will be a blog about both technical and business stuff I deal with daily. From Ruby on Rails programming to time organizing, everything that’s important in my daily work as a freelance developer.</p>
<p>As you can see I just setup the Icebergist blog, so at the moment it&#8217;s content-free. While I write some posts you can checkout <a title="Slobodan Kovacevic's blog posts in AS Workshop" href="http://www.google.com/search?hl=en&amp;rlz=1B3GGGL_enYU233YU234&amp;q=%22Posted+by+Slobodan+Kovacevic%22+site%3Aarraystudio.com+inurl%3Ahtml&amp;btnG=Search">my posts from my previous blog AS Workshop</a>.</p>
<p>Also I maintain a tumble log called “<a title="Tumblelog by Slobodan Kovacevic" href="http://tumblelog.slobodankovacevic.com/">this should be interesting</a>” where I post small bits of information which I find useful or interesting.</p>
<p>If that&#8217;s not enough for you then check out my <a title="Slobodan Kovacevic's Twitter feed" href="http://twitter.com/thebasti">Twitter feed</a> where I ramble daily (unless I am to lazy or too busy to do so).</p>
<p class="addtoany_share_save">
    <a name="a2a_dd" onmouseover="a2a_show_dropdown(this)" onmouseout="a2a_onMouseOut_delay()" href="http://www.addtoany.com/bookmark?sitename=Icebergist&amp;siteurl=http%3A%2F%2Ficebergist.com%2F&amp;linkname=So%20it%20begins%E2%80%A6&amp;linkurl=http%3A%2F%2Ficebergist.com%2Fposts%2Fso-it-begins"><img src="http://icebergist.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16"  alt="Share/Save/Bookmark"/></a>
    <script type="text/javascript">
		a2a_linkname="So it begins…";
		a2a_linkurl="http://icebergist.com/posts/so-it-begins";
				a2a_show_title=1;    </script>
    <script type="text/javascript" src="http://www.addtoany.com/menu/page.js"></script>

	</p>]]></content:encoded>
			<wfw:commentRss>http://icebergist.com/posts/so-it-begins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
