<?xml version="1.0" encoding="iso-8859-2"?>
<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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Fractured BloughtsSite news | Fractured Bloughts</title>
	<atom:link href="http://fracturedbloughts.rolandhesz.com/category/site-news/feed/" rel="self" type="application/rss+xml" />
	<link>http://fracturedbloughts.rolandhesz.com</link>
	<description>Musings about work and life</description>
	<lastBuildDate>Mon, 10 May 2010 19:52:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19827</generator>
		<item>
		<title>Running on a new WP theme</title>
		<link>http://fracturedbloughts.rolandhesz.com/2009/08/24/running-on-a-new-wp-theme/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2009/08/24/running-on-a-new-wp-theme/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 17:15:03 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Popular]]></category>
		<category><![CDATA[Site news]]></category>
		<category><![CDATA[Blog Theme]]></category>
		<category><![CDATA[disqus]]></category>
		<category><![CDATA[Headway Theme]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plug in]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.rolandhesz.com/?p=674</guid>
		<description><![CDATA[I have fallen for the recommendations, and bought and installed the Headway Theme Finally, got it working too. It is easy, everything is a snap, except when you have want to make some really &#8220;fancy&#8221; thing on your site &#8211; like the Video Posts on the right -, then it&#8217;s php coding. Or when it...]]></description>
			<content:encoded><![CDATA[<p>I have fallen for the recommendations, and bought and installed the <a title="Headway Themes" href="http://headwaythemes.com/">Headway Theme</a></p>
<p>Finally, got it working too. It is easy, everything is a snap, except when you have want to make some really &#8220;fancy&#8221; thing on your site &#8211; like the Video Posts on the right -, then it&#8217;s php coding. Or when it chokes on plugins, like on <a class="zem_slink" title="DISQUS" rel="homepage" href="http://www.disqus.com/">Disqus</a>. Don&#8217;t know why, but it simply could not handle it.</p>
<p>I wonder what can cause this behaviour, as people say they are running it without trouble &#8211; I am well prepared now for the flaming I&#8217;m going to get for pointing out problems :) &#8211; but below you can see the problem in all it&#8217;s glory.</p>
<p><object style="width: 622px; height: 230px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="622" height="230" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://fracturedbloughts.rolandhesz.com/wp-content/uploads/2009/08/brokenfeatur.swf" /><embed style="width: 622px; height: 230px;" type="application/x-shockwave-flash" width="622" height="230" src="http://fracturedbloughts.rolandhesz.com/wp-content/uploads/2009/08/brokenfeatur.swf"></embed></object></p>
<p>The tricky thing is what I have discovered is that it only happens in the Featured leaf, and then only when I set it to Rotate the posts.</p>
<p>The solution for now was pure hacking. The Disqus code that seems to be the cuplrit &#8211; or the victim, depends on how you look at it &#8211; can be found in the disqus.php:</p>
<pre><code>
function dsq_comment_count() {
  global $dsq_cc_script_embedded;
  if ( $dsq_cc_script_embedded ) {
    return;
  } else if ( (is_single() || is_page() || $withcomments || is_feed()) ) {
    return;
  }
  ?&gt;
  &lt;script type="text/javascript"&gt;
  // &lt;![CDATA[
   (function() {
     var links = document.getElementsByTagName('a');
     var query = '&amp;';
     for(var i = 0; i &lt; links.length; i++) {
       if(links[i].href.indexOf('#disqus_thread') &gt;= 0) {
       links[i].innerHTML = 'View Comments';
       query += 'wpid' + i + '=' + encodeURIComponent(links[i].getAttribute('wpid')) + '&amp;';
     }
   }
   document.write('&lt;script charset="utf-8" type="text/javascript" src="&lt;?php echo DISQUS_URL ?&gt;/forums/&lt;?php echo strtolower(get_option('disqus_forum_url')); ?&gt;/get_num_replies_from_wpid.js?v=2.0' + query + '"&gt;&lt;' + '/script&gt;');
 })();
 //]]&gt;
 &lt;/script&gt;
 &lt;?php
   $dsq_cc_script_embedded = true;
}</code></pre>
<p><span style="text-decoration: line-through;">This only happened in the Featured Post leaf, and only when I enabled Rotate &#8211; maybe the rotate script and the Disqus script get tangled. I don&#8217;t know.</span></p>
<p><span style="text-decoration: line-through;">For now what I have done is pure, and serious no-no hacking. I have commented out the code between <code>&lt;script type="text/javascript"&gt;// &lt;![CDATA[</code> and <code>// ]]&gt;&lt;/script&gt;</code>.</span><br />
<span style="text-decoration: line-through;">Evidently it is the wrong solution, but for now it works, and I am going to find out the proper one.</span></p>
<p><strong>UPDATE: </strong>After a bit of thinking I have decided to instead implement a more cultured temporary solution.<br />
I have changed this line:</p>
<pre><code>} else if ( (is_single() || is_page() || $withcomments || is_feed()) ) {</code></pre>
<p>to this line:</p>
<pre><code>} else if ( (is_home() || is_single() || is_page() || $withcomments || is_feed()) ) {</code></pre>
<p>Yes, I know that was the logical thing from the start.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 339px; width: 1px; height: 1px;">&amp;gt;</div>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.avc.com/a_vc/2009/08/disqus-v3-is-live-on-this-blog.html">Disqus V3 Is Live On This Blog</a> (avc.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.slideshare.net/jeremyclarke/wordpress-theming-for-epic-n00bs-intro-to-template-tags-themes-and-php">WordPress Theming for Epic n00bs: Intro to Template Tags, Themes and PHP</a> (slideshare.net)</li>
<li class="zemanta-article-ul-li"><a href="http://www.benway.net/2009/07/18/disqus-and-wibiya/">Disqus and Wibiya</a> (benway.net)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/f258e61b-264c-477d-9018-0889ceece5f4/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=f258e61b-264c-477d-9018-0889ceece5f4" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2009/08/24/running-on-a-new-wp-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving, moving &#8211; but not because I wanted to</title>
		<link>http://fracturedbloughts.rolandhesz.com/2009/03/27/moving-moving-but-not-because-i-wanted-to/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2009/03/27/moving-moving-but-not-because-i-wanted-to/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 09:22:44 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[domain names]]></category>
		<category><![CDATA[registrar company]]></category>
		<category><![CDATA[slicehost]]></category>
		<category><![CDATA[szervernet kft]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.rolandhesz.com/?p=648</guid>
		<description><![CDATA[What can I say. I am all for supporting the local service providers, but there are moments when you simply can not let their complete lack of professionalism take you down. First I moved my sites physicaly to a US hosting company, slicehost, simply because with the Hungarian hosting company it took 3 phones and...]]></description>
			<content:encoded><![CDATA[<p>What can I say. I am all for supporting the local service providers, but there are moments when you simply can not let their complete lack of professionalism take you down.</p>
<p>First I moved my sites physicaly to a US hosting company, slicehost, simply because with the Hungarian hosting company it took 3 phones and 2 e-mails to reboot the server if there was a problem.</p>
<p>Now, I have to change my domain name, for although I have paid and extended the registration of heszroland.hu in February, the registrar company forgot to put it into action and since Tuesday heszroland.hu gives an &#8220;Unknonw host&#8221; message. Yes, you heard it right, I have paid the fees and still it is gone. Of course the usual call them on phone, sorry, gotta contact my colleague who actually can look at the transactions &#8211; please note I have called the guy who, according to their website, is responsible for accounts, payments and domain names so it turns out that their website is out of date too -, then I had to call them again and again to ask what&#8217;s up, because they suck so bad that even when they find out something they simply don&#8217;t call their customer back.</p>
<p>Apparently, yes I did pay it, and yes they did not act upon it, and yes it is my fault not theirs. How so? I don&#8217;t know. So I have bought a new domain name, rolandhesz.com, and moving there. I am sorry, I tried, really.</p>
<p>It is painful, I will have to find a way to forward the old links somehow &#8211; it&#8217;s just sheer luck that there are not many links to my site &#8211; but I have to move away from the Hungarian providers as much as I can because frankly, they don&#8217;t really provide, and in their world customer service means the customer serves them.</p>
<p>In case you wonder which was this marvelous company, here is the website of <a href="http://szervernet.hu">Szervernet Kft</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2009/03/27/moving-moving-but-not-because-i-wanted-to/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change of layouts</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/09/13/change-of-layouts/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/09/13/change-of-layouts/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 13:12:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[arthemia]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[glitches]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.heszroland.hu/?p=223</guid>
		<description><![CDATA[Finally, after a couple months of undecisiveness, and constant changing of layouts and themes, and logos and headers, and&#8230; well you know,the usual stuff, called creative process. So, finally the layout of the site has changed, at least the main page. I have to do something for the rest of September, no? Of course there...]]></description>
			<content:encoded><![CDATA[<p>Finally, after a couple months of undecisiveness, and constant changing of layouts and themes, and logos and headers, and&#8230; well you know,the usual stuff, called creative process.</p>
<p>So, finally the layout of the site has changed, at least the main page. I have to do something for the rest of September, no?<br />
Of course there glitches, if you came here before this post came up, you have seen it fallen to pieces, because the previous post has a video in it, and the way I pull out the post for the main page cut the embedding script in half, which messed up the whole layout &#8211; unexpected un-paired &lt;div&gt; and &lt;/div&gt; tags are a huge pain, but I don&#8217;t have to tell you that.</p>
<p>So the main page is a twisted, and reworked, and changed <a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/">Arthemia2 theme</a>, and this page will change too, Fractured bloughts will dress up in a twisted, changed, tweaked, blown up and ground down version of <a href="http://www.darrenhoyt.com/2007/08/05/wordpress-magazine-theme-released/">Mimbo theme</a>. It will take a bit of work, and another small effort to assign a category to every single post on this site, because Mimbo is category driven, and I have not used categories for the last 2 years here. Sheer luck I don&#8217;t write too often, eh?</p>
<p>So that&#8217;s it and if you ask why I did write this post, I tell you because I wanted to return the main site to the normal layout, and writing a post without pics and video was the fastest and easiest way. Yes. I am lazy.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/09/13/change-of-layouts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A bit of a setback&#8230;</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/06/19/a-bit-of-a-setback/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/06/19/a-bit-of-a-setback/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:46:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.heszroland.hu/?p=133</guid>
		<description><![CDATA[Honestly, I don&#8217;t know what happened, but the server stopped accepting my password. And the root password. After trying for a few hours, I finally gave up and reinstalled the whole thing. Now, all is back, unfortunately the Thumb on the Lens is totally gone &#8211; yes, I know, but I swear I thought it...]]></description>
			<content:encoded><![CDATA[<p>Honestly, I don&#8217;t know what happened, but the server stopped accepting my password. And the root password. After trying for a few hours, I finally gave up and reinstalled the whole thing. </p>
<p>Now, all is back, unfortunately the <a href="http://thumbonthelens.heszroland.hu">Thumb on the Lens</a> is totally gone &#8211; yes, I know, but I swear I thought it was backed up daily, like this one. It was not. So, my Fractured Bloughts have been saved, but the photos are gone.</p>
<p>And it was a surprise that when I did everything like last time, from installing the server to configuring Apache, it did not want to work. Totally baffled, only thing that gives me consolation is that as I looked for the solution on the web I realized that a lot of people have this problem.</p>
<p>And after the usual tips &#8211; set chmod right, set chown properly, run a2ensite, etc. &#8211; don&#8217;t solve the problem the threads fall into silence. So, it was a myffic event, I reinstalled it twice, and at last it works. Beats me why. Probably quantum.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/06/19/a-bit-of-a-setback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disqus this thing here&#8230;</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/05/15/disqus-this-thing-here/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/05/15/disqus-this-thing-here/#comments</comments>
		<pubDate>Thu, 15 May 2008 19:17:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[disqus]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.heszroland.hu/?p=122</guid>
		<description><![CDATA[I have to admit first I was a bit reserved about Disqus. Letting go of my comments, placing them somewhere else felt a bit weird. I have to admit, that since then I totally came to like it, especially since I experience how helpful people are at Disqus. I just wrote them that I broke...]]></description>
			<content:encoded><![CDATA[<p>
I have to admit first I was a bit reserved about Disqus. Letting go of my comments, placing them somewhere else felt a bit weird.<br />
I have to admit, that since then I totally came to like it, especially since I experience how helpful people are at Disqus.<a href="http://fracturedbloughts.heszroland.hu/2008/05/14/some-small-difficulties/"> I just wrote them that I broke my disqus comments</a> here by changing the URL, and <a href="http://tailofthesun.com/">Jason</a> put it alright in a couple of hours &#8211; which in my book is pretty fast, given that he is on the other side of the globe.</p>
<p>So I would say thank you to Jason here too.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/05/15/disqus-this-thing-here/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Some small difficulties</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/05/14/some-small-difficulties/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/05/14/some-small-difficulties/#comments</comments>
		<pubDate>Wed, 14 May 2008 12:37:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[disqus]]></category>
		<category><![CDATA[site difficulties]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.heszroland.hu/?p=119</guid>
		<description><![CDATA[The changing of the blog URL &#8220;broke&#8221; the Disqus comments. They are not gone, it&#8217;s just they don&#8217;t link to the post anymore &#8211; still pointing to the old URL &#8211; so they don&#8217;t show up on the blog, except for the sidebar widget. I tried to find the solution, but everyone who had the...]]></description>
			<content:encoded><![CDATA[<p>The changing of the blog URL &#8220;broke&#8221; the <a href="http://disqus.com">Disqus</a> comments. They are not gone, it&#8217;s just they don&#8217;t link to the post anymore &#8211; still pointing to the old URL &#8211; so they don&#8217;t show up on the blog, except for the sidebar widget.</p>
<p>I tried to find the solution, but everyone who had the same problem got the answer: please send an email to help@disqus.com &#8211; which I did, now waiting for the answer, so far I have only good experiences with Disqus, so I think there won&#8217;t be any problems. However, I think it will be a better long term solution if they give the users a possibility to correct this problem themselves.</p>
<p>And working on a new heading, the title is not &#8220;fractured&#8221; enough right now, and I really like this theme. It&#8217;s just it will take some time to finish the logo.</p>
<p>And<a title="Fresh painting for the summer" href="http://fracturedbloughts.heszroland.hu/2008/05/06/fresh-painting-for-the-summer/"> the books from Amazon</a> have arrived, still in the box, but I will have to open it soon, it&#8217;s just a good feeling looking at the brown package, almost like Christmass.</p>
<p>And the fact that they have arrived means that about 5 or 6 months from now I will change the design again. This time made by me from scratch, if I can learn whatever is needed for that. And why wouldn&#8217;t I?</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/05/14/some-small-difficulties/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cleaning, painting, rebuilding</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/05/12/cleaning-painting-rebuilding/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/05/12/cleaning-painting-rebuilding/#comments</comments>
		<pubDate>Mon, 12 May 2008 18:28:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[living in the uk]]></category>
		<category><![CDATA[new job]]></category>
		<category><![CDATA[time of change]]></category>

		<guid isPermaLink="false">http://fracturedbloughts.heszroland.hu/?p=118</guid>
		<description><![CDATA[It seems that May and June is all about cleaning and rebuilding. The smaller part of it is that I totally revamped my site &#8211; I think it was hard to miss -, and while it&#8217;s not finished, the general conception is clearly worked out. All that remains is to to tweak the layouts, the...]]></description>
			<content:encoded><![CDATA[<p>It seems that May and June is all about cleaning and rebuilding.<br />
The smaller part of it is that I totally revamped my site &#8211; I think it was hard to miss -, and while it&#8217;s not finished, the general conception is clearly worked out.<br />
All that remains is to to tweak the layouts, the colours, the widgets and the other miscellaneous stuff.</p>
<p>I have decided to put my photography stuff on a separate blog, <a href="http://thumbonthelens.heszroland.hu">Thumb on the Lens</a>, to move all the pages that were under Fractured Bloughts to their own page, independent of this blog &#8211; like the Maps, the Media Library, the About page.</p>
<p>The bigger thing rebuilding and cleaning wise is on the job front. On the 1st of June I will leave my current     job, and my new job will be in another country, far, far away, in the Misty Albion.<br />
New job, new country and a new adventure &#8211; accidentally, when that happens, I will start a new blog, where I will write about working and living in the UK, mainly for my friends, family and interested people. It will be for a different audience, written in Hungarian just to mention a &#8220;small&#8221; difference.</p>
<p>So the summer will be a time of change, and I firmly believe that it will be for the better. After all, every change can be used to better one&#8217;s life.<br />
With change comes cleaning &#8211; and I swear that I started the post way before <a title="Before you move forward, clean house!" href="http://wordsforhire.blogspot.com/2008/05/before-you-move-forward-clean-house.html">I read your post about cleaning</a>, Karen, but I fully agree with your statement:</p>
<blockquote><p><span style="font-size: 100%;">No one wants to pack up unnecessary junk and take it into a bright shiny new place, yet so often we are unable to let go of things we no longer need.</span></p></blockquote>
<p>You move you blog, I move my self. I have an advantage over you &#8211; only a limited amount of stuff fits in the suitcase and the 20kg weight limit. The rest I will have to &#8220;remote&#8221; order, and that makes it easy to leave behind unused things.</p>
<p>The harder thing will be the people. Friends, family are staying here, at home, but I am positive that I will make new ones.</p>
<p>And it&#8217;s not like I am escaping and never returning. More like in the old days, when the journeymen traveled around Europe, learning here and there returning home with the knowledge.</p>
<p>So, cleaning, painting, rebuilding.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/05/12/cleaning-painting-rebuilding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<series:name><![CDATA[Moving UK]]></series:name>
	</item>
		<item>
		<title>Fresh painting for the summer</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/05/06/fresh-painting-for-the-summer/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/05/06/fresh-painting-for-the-summer/#comments</comments>
		<pubDate>Tue, 06 May 2008 08:19:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wp-themes]]></category>

		<guid isPermaLink="false">http://heszroland.hu/?p=116</guid>
		<description><![CDATA[Sitting in Bulgaria, and I just checked amazon.com, wondering when my books will arrive. I ordered three new books on webdesign &#8211; I have none so far -, and I hope they will help with building my site the way I want it, and as a side effect learning how to make good and usable...]]></description>
			<content:encoded><![CDATA[<p>Sitting in Bulgaria, and I just checked amazon.com, wondering when my books will arrive. I ordered three new books on webdesign &#8211; I have none so far -, and I hope they will help with building my site the way I want it, and as a side effect learning how to make good and usable websites.</p>
<p><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0975841971%26tag=ahelyremedene-20%26l&lt;br &gt;&lt;/a&gt; code=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/0975841971%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_blank"><img src="http://ecx.images-amazon.com/images/I/41C84GLfCTL._SL160_.jpg" alt="The Art and Science of CSS" height="160" /></a><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0975841963%26tag=ahelyremedene-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/0975841963%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_blank"><img src="http://ecx.images-amazon.com/images/I/41z94hYU9uL._SL160_.jpg" alt="The Principles of Beautiful Web Design" height="160" /></a><a href="http://www.amazon.com/gp/redirect.html%3FASIN=0131481991%26tag=ahelyremedene-20%26lcode=xm2%26cID=2025%26ccmID=165953%26location=/o/ASIN/0131481991%253FSubscriptionId=1N9AHEAQ2F6SVD97BE02" target="_blank"><img src="http://ecx.images-amazon.com/images/I/213AH2N5RKL._SL160_.jpg" alt="Web Design Garage (The Garage Series)" height="160" /></a></p>
<p>The books got 4,5 stars on average, so I hope they will be good. With the web as an appendix, I am positive that I will be able to do a good design.</p>
<p>After all, what is a blog and a website for if not to try out new things and tinker with everything you find?</p>
<p>Plus, although there are a lot of nice free templates out there, but there are thousand, if not tens of thousands, and it is impossible to find anything by now. <a title="Problogger: Free blogger templates" href="http://www.problogger.net/archives/2006/05/31/free-blogger-templates/">Problogger points people</a> to seven sites with free templates, but if you check it you got hundreds of templates and it is impossible to find the one you want, there is no really good way to search them, it&#8217;s like finding a needle in the haystack &#8211; It was sheer luck that I found this <a title="Antbag.com : Networker - Theme for WordPress" href="http://antbag.com/networker-theme-for-wordpress/">Networker theme</a> I tweaked until I ended up with the current one.</p>
<p>Although on <a title="Theme Viewer" href="http://themes.wordpress.net/">Theme Viewer</a> you can filter, just don&#8217;t forget the &#8216;ANY&#8217;means &#8216;AND&#8217;and the &#8216;ALL&#8217;means OR, it took me a while to figure it out. It is not that logical.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/05/06/fresh-painting-for-the-summer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Painting the Air</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/04/28/painting-air/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/04/28/painting-air/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 19:01:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[Social media]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[alertthingy]]></category>
		<category><![CDATA[mysocial24x7]]></category>
		<category><![CDATA[private project]]></category>
		<category><![CDATA[spaz]]></category>
		<category><![CDATA[twhirl]]></category>

		<guid isPermaLink="false">http://heszroland.hu/?p=114</guid>
		<description><![CDATA[Ok, I know, I am a bit late to the party, but here we go. I tried Spaz, then I tried Twhirl which I really like, and now I try AlertThingy, because I like the whole Friendfeed concept, I am a bit bored with signing up to another new,revolutionary service, and then logging into each...]]></description>
			<content:encoded><![CDATA[<p>Ok, I know, I am a bit late to the party, but here we go.</p>
<p>I tried <a href="http://funkatron.com/spaz">Spaz</a>, then I tried <a href="http://www.twhirl.org/">Twhirl</a> which I really like, and now I try <a href="http://alertthingy.com/">AlertThingy</a>, because I like the whole <a href="http://friendfeed.com/">Friendfeed</a> concept, I am a bit bored with signing up to another new,revolutionary service, and then logging into each and every one of them just to see what happened.</p>
<p>So I now use AlertThingy, and sometimes I use Twhirl, but most of the time I go to the browser, because that is better. I can see more, it is more comfortable than trying to find anything on the AIR apps.</p>
<p>And for Friendfeed I mostly use the <a href="http://mysocial247.com/">MySocial24x7</a>, which has the amazing ability to filter content by service. So, decided to try my hand with this <a href="http://get.adobe.com/air/?promoid=BUIGQ">Adobe Air</a> thing, and build something that is a bit of a twhirl, and a bit of a mysocial24x7 and a bit of an alertthingy. Probably will be ugly as Hell, because I am not too good with these graphic things to be honest, actually I have been trying to build a new design for my site for the last month, but never could put together something I like.</p>
<p>So I got a basic concept, I am looking at some <a href="http://www.adobe.com/devnet/air/">Adobe Air</a> development tools, and then off to build it.</p>
<p>And doing the site redesign. Slowly it takes shape, I expect that in the next 2 months I will be able to finish it with everything. And then starting a new one, until I will be content.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/04/28/painting-air/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mayday, mayday, server&#8217;s down, I repeat, server&#8217;s down&#8230;</title>
		<link>http://fracturedbloughts.rolandhesz.com/2008/04/07/mayday-mayday-servers-down-i-repeat-servers-down/</link>
		<comments>http://fracturedbloughts.rolandhesz.com/2008/04/07/mayday-mayday-servers-down-i-repeat-servers-down/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 18:55:00 +0000</pubDate>
		<dc:creator>Roland Hesz</dc:creator>
				<category><![CDATA[Site news]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://heszroland.hu/?p=107</guid>
		<description><![CDATA[So, on a nice sunny Sunday &#8211; the 30th of March &#8211; the server hosting my blog decided that it was time to give up on life. Or something like that. I am not really sure what happened, but it was down for about 70 hours until it was removed. Then, I had to get...]]></description>
			<content:encoded><![CDATA[<p>So, on a nice sunny Sunday &#8211; the 30th of March &#8211; the server hosting my blog decided that it was time to give up on life. Or something like that.</p>
<p>I am not really sure what happened, but it was down for about 70 hours until it was removed. Then, I had to get my site data back. Well, regular backups are a good idea, but you don&#8217;t learn it until you got burned. At least,<a href="http://www.pureblogging.com/2008/04/03/five-lessons-from-the-blog-black-hole/"> I was in a really good company</a> with this trouble.</p>
<p>So when I could not reach the site for two days, I went to look for a new hosting possibility. here, I want to say thank you to <a href="http://twitter.com/darkgracie">@darkgracie</a>, <a href="http://twitter.com/karenswim">@karenswim</a>, <a href="http://twitter.com/inkedmn">@inkedmn</a> and <a href="http://twitter.com/solidsmack">@solidsmack</a> for the fast help. The winner was <a href="http://www.slicehost.com/">slicehost</a>, &#8217;cause I am a geek, and a control freak, so I like the idea of messing up my own site in a thousand different way.</p>
<p>So far I am content with it, probably because I did not mess around enough to completely screw my installation, but just wait.</p>
<p>So, after a long fight, I restored my site, and now I hope it will not disappear suddenly. And I promise I will make regular backups. Like every day.</p>
]]></content:encoded>
			<wfw:commentRss>http://fracturedbloughts.rolandhesz.com/2008/04/07/mayday-mayday-servers-down-i-repeat-servers-down/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

