<?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>goes Zen</title>
	<atom:link href="http://www.goeszen.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.goeszen.com</link>
	<description>Where many things go really Zen</description>
	<lastBuildDate>Tue, 08 May 2012 18:25:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Moving a website from one server to another</title>
		<link>http://goeszen.com/moving-a-website-from-one-server-to-another</link>
		<comments>http://goeszen.com/moving-a-website-from-one-server-to-another#comments</comments>
		<pubDate>Sat, 05 May 2012 12:41:01 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1405</guid>
		<description><![CDATA[This here is a simple cheat sheet of CLI commands to move or migrate directories and sql databases from one machine to another: Dump a database table from MySQL: $ mysqldump -u &#60;db-username&#62; -&#60;db-password&#62; --opt --quote-names --allow-keywords --complete-insert &#60;db-name&#62; &#60;db-table&#62; &#62; &#60;output-file&#62; Slurp a database table back into MySQL: $ mysql -u &#60;db-username&#62; --password=&#60;db-password&#62; -D [...]]]></description>
			<content:encoded><![CDATA[<p>This here is a simple cheat sheet of CLI commands to <em>move</em> or <em>migrate directories and sql databases</em> from one machine to another:</p>
<p>Dump a database table from MySQL:<br />
<em>$ mysqldump -u &lt;db-username&gt; -&lt;db-password&gt; --opt --quote-names --allow-keywords --complete-insert &lt;db-name&gt; &lt;db-table&gt;  &gt; &lt;output-file&gt;</em></p>
<p>Slurp a database table back into MySQL:<br />
<em> $ mysql -u &lt;db-username&gt; --password=&lt;db-password&gt; -D &lt;db-name&gt; &lt; &lt;input-file&gt;</em></p>
<p>Copy over a MySQL table dump or any other file<br />
<em> $ scp -P &lt;optional-port&gt; &lt;username&gt;@&lt;IP&gt;:/some/path/to/remote/file &lt;local-file&gt;</em></p>
<p>Copy over a complete directory with rsync, with additional ssh parameters:<br />
<em>$ rsync -av --progress --stats --copy-links -e 'ssh -p &lt;ssh-port&gt;' &lt;username&gt;@&lt;IP&gt;:/path/to/dir/with/trailing/slash/ /path/to/target/dir</em><br />
&#160;</p>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/moving-a-website-from-one-server-to-another/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP &#8220;You do not have sufficient permissions to access this page&#8221;</title>
		<link>http://goeszen.com/wp-you-do-not-have-sufficient-permissions-to-access-this-page</link>
		<comments>http://goeszen.com/wp-you-do-not-have-sufficient-permissions-to-access-this-page#comments</comments>
		<pubDate>Wed, 02 May 2012 16:13:24 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1401</guid>
		<description><![CDATA[Today, after I moved the database around on MySQL for one of my WordPress installs, I was suddenly greeted with this error after logging in: "You do not have sufficient permissions to access this page." Following some of the guidance on the Codex' Login Trouble page brought now resolution, some even felt simple-minded, like deactivating [...]]]></description>
			<content:encoded><![CDATA[<p>Today, after I moved the database around on MySQL for one of my <em><strong>WordPress</strong></em> installs, I was suddenly greeted with this error after logging in: "<em>You do not have sufficient permissions to access this page.</em>"</p>
<p>Following some of the guidance on the Codex' <a href="http://codex.wordpress.org/Login_Trouble">Login Trouble</a> page brought now resolution, some even felt simple-minded, like deactivating plugins or chaning file permissions - the latter being stupid as this was clearly an application layer problem and nothing with permission on the fs level...</p>
<p>The <strong>solution</strong> came <a href="http://wordpress.org/support/topic/you-do-not-have-sufficient-permissions-to-access-this-page-45#post-2081220">via this post</a>:</p>
<p>This post mentioned what I had done: renaming the database tables from the default <em>wp_&lt;whatever&gt;</em> to <em>wp_&lt;some-id&gt;_&lt;whatever&gt;</em>. I did this to accommodate multiple WP installs in one database.<br />
Of course, I had properly changed the prefix in the wp-config.php file, from <em>$table_prefix&#160; = 'wp_pf_';</em> to <em>$table_prefix  = 'wp_&lt;some-id&gt;_';</em></p>
<p>The problem was that WP pulls user permissions from the wp_usermeta and the wp_options tables and uses (why! why! why!?) the prefix supplied in the wp-config.php file to build some essential keys, like <em>&lt;prefix&gt;_capabilities</em> in these dbs!</p>
<p>So I could <em>resolve the insufficient permission error</em> by doing this:<br />
You have to update the key/value pairs in the following database-tables:</p>
<p>In the <em>&lt;prefix&gt;_usermeta</em> table, there are several keys that need to be renamed:</p>
<blockquote>
<p>&lt;prefix&gt;_capabilities<br />
&lt;prefix&gt;_dashboard_quick_press_last_post_id<br />
&lt;prefix&gt;_prefix_user-settings<br />
&lt;prefix&gt;_user-settings-time</p>
</blockquote>
<p>and in the &lt;prefix&gt;_options table:</p>
<blockquote>
<p>&lt;prefix&gt;_user_roles</p>
</blockquote>
<p>After that, login worked again.</p>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/wp-you-do-not-have-sufficient-permissions-to-access-this-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;request length exceeds MaxRequestLen&#8221; with Apache2 on Debian Squeeze</title>
		<link>http://goeszen.com/request-length-exceeds-maxrequestlen-apache2-debian-squeeze</link>
		<comments>http://goeszen.com/request-length-exceeds-maxrequestlen-apache2-debian-squeeze#comments</comments>
		<pubDate>Wed, 25 Apr 2012 16:40:56 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[webserver]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1397</guid>
		<description><![CDATA[If you see an error in your Apache2 logs "mod_fcgid: HTTP request length 131198 (so far) exceeds MaxRequestLen (131072)" The defaults for fcgi have changed from Lenny (was 1GB) to Squeeze (is now 128KB) Solution is: Go to /etc/apache2/mods-available/fcgid.conf and add (here for 2GB): &#60;IfModule mod_fcgid.c&#62; ... ... # 2GB FcgidMaxRequestLen 2147483648 &#60;/IfModule&#62; via Simple [...]]]></description>
			<content:encoded><![CDATA[<p>If you see an error in your Apache2 logs "<em>mod_fcgid: HTTP request length 131198 (so far) exceeds MaxRequestLen (131072)</em>"</p>
<p>The defaults for <em>fcgi </em>have changed from <em>Lenny</em> (was 1GB) to <em>Squeeze</em> (is now 128KB)</p>
<p>Solution is:<br />
Go to /etc/apache2/mods-available/fcgid.conf<br />
and add (here for 2GB):</p>
<blockquote>
<p>&lt;IfModule mod_fcgid.c&gt;<br />
...<br />
...<br />
# 2GB<br />
FcgidMaxRequestLen 2147483648<br />
&lt;/IfModule&gt;</p>
</blockquote>
<p><a href="http://www.debianroot.de/server/mod_fcgid-http-request-length-exceeds-maxrequestlen-131072-1313.html">via</a> </p>
<p>Simple<a href="http://www.t1shopper.com/tools/calculate/"> byte calculator</a></p>
<blockquote><br />
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/request-length-exceeds-maxrequestlen-apache2-debian-squeeze/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple name-based virtual hosts with SSL on one IP</title>
		<link>http://goeszen.com/multiple-name-based-virtual-hosts-with-ssl-on-one-ip</link>
		<comments>http://goeszen.com/multiple-name-based-virtual-hosts-with-ssl-on-one-ip#comments</comments>
		<pubDate>Tue, 24 Apr 2012 20:15:33 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gnutls]]></category>
		<category><![CDATA[https]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1395</guid>
		<description><![CDATA[Ok, read: http://www.g-loaded.eu/2007/08/10/ssl-enabled-name-based-apache-virtual-hosts-with-mod_gnutls/ http://forceping.com/2010/03/18/mod_gnutls-sorgt-fur-namebased-ssl-virtualhosts/ http://www.outoforder.cc/projects/apache/mod_gnutls/docs/#example then install $ apt-get install libapache2-mod-gnutls then run $ a2enmod gnutls check if anything is configured in these files that would prevent apache2 from working with gnutls: nano /etc/apache2/httpd.conf nano /etc/apache2/apache.conf configure your virtual hosts, refer to the manual mentioned above on how to do that nano /etc/apache2/sites-enabled/000-default Possibly your [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, read:</p>
<ul>
    <li><a href="http://www.g-loaded.eu/2007/08/10/ssl-enabled-name-based-apache-virtual-hosts-with-mod_gnutls/">http://www.g-loaded.eu/2007/08/10/ssl-enabled-name-based-apache-virtual-hosts-with-mod_gnutls/</a></li>
    <li><a href="http://forceping.com/2010/03/18/mod_gnutls-sorgt-fur-namebased-ssl-virtualhosts/">	http://forceping.com/2010/03/18/mod_gnutls-sorgt-fur-namebased-ssl-virtualhosts/</a></li>
    <li><a href="http://www.outoforder.cc/projects/apache/mod_gnutls/docs/#example">	http://www.outoforder.cc/projects/apache/mod_gnutls/docs/#example</a></li>
</ul>
<p>then install<br />
<em>	$ apt-get install libapache2-mod-gnutls</em></p>
<p>then run<br />
<em>	$ a2enmod gnutls</em></p>
<p>check if anything is configured in these files that would prevent apache2 from working with gnutls:<br />
<em>	nano /etc/apache2/httpd.conf</em><br />
<em>	nano /etc/apache2/apache.conf</em></p>
<p>configure your virtual hosts, refer to the manual mentioned above on how to do that<br />
<em>	nano /etc/apache2/sites-enabled/000-default</em></p>
<p>Possibly your will need to add the GnuTlsPriorities directive to common config examples, see:<br />
<a href="http://www.outoforder.cc/projects/apache/mod_gnutls/docs/">	http://www.outoforder.cc/projects/apache/mod_gnutls/docs/</a></p>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/multiple-name-based-virtual-hosts-with-ssl-on-one-ip/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tar a file or directory and 7zip it in one go</title>
		<link>http://goeszen.com/tar-a-file-or-directory-and-7zip-it</link>
		<comments>http://goeszen.com/tar-a-file-or-directory-and-7zip-it#comments</comments>
		<pubDate>Tue, 24 Apr 2012 20:04:27 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Sillyness]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1392</guid>
		<description><![CDATA[tar cf - &#60;path or file&#62; &#124; 7zr a -si &#60;output&#62;.tar.7z tar outputs to stdout ("-", the minus), 7-zip, here 7zr, reads from stdin ("-si") and outputs a 7zip file - all connected by the pipe.]]></description>
			<content:encoded><![CDATA[<p><em>tar cf - &lt;path or file&gt; | 7zr a -si &lt;output&gt;.tar.7z</em></p>
<p><em>tar</em> outputs to stdout ("-", the minus), 7-zip, here <em>7zr</em>, reads from stdin ("-si") and outputs a 7zip file - all connected by the <em>pipe</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/tar-a-file-or-directory-and-7zip-it/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exim4: &#8220;temporarily rejected RCPT&#8221; problem solved</title>
		<link>http://goeszen.com/exim4-temporarily-rejected-rcpt-problem-solved</link>
		<comments>http://goeszen.com/exim4-temporarily-rejected-rcpt-problem-solved#comments</comments>
		<pubDate>Tue, 24 Apr 2012 14:10:05 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1387</guid>
		<description><![CDATA[If you, like me, get many "temporarily rejected RCPT &#60;mail@example.com&#62;: remote host address is the local host" messages in exim's /var/log/exim4/mainlog log, then here's what I found out to be the solution. So you've freshly installed exim or got a fresh install with Debian Squeeze? You did not tinker with the config files manually but [...]]]></description>
			<content:encoded><![CDATA[<p>If you, like me, get many "<strong><em>temporarily rejected RCPT</em></strong> &lt;mail@example.com&gt;: <em><strong>remote host address is the local host</strong></em>" messages in exim's /var/log/exim4/mainlog log, then here's what I found out to be the <strong>solution</strong>.</p>
<ul>
    <li>So you've freshly installed exim or got a <em>fresh install</em> with Debian Squeeze?</li>
    <li>You did not tinker with the config files manually but used <em>dpkg-reconfigure exim4-config</em> so that you were guided through the basic config?</li>
    <li>You are not running <em>greylistd</em>, although all the other posts you've found related to "temporarily rejected RCPT" are related to that? (Note that exim4 has greylisting <strong>not</strong> built in or installed with it by default! So the error here is <strong>not</strong> coming from there.)</li>
    <li>No mail is getting into your server, you are not receiving mail in your inbox.</li>
</ul>
<p><strong>My solution:</strong><br />
Check your <em>FQDN</em> (fully qualified domain name), the value the wizard filled in for you on the first reconfgure question seems to be wrong!<br />
Use <em>hostname --fqdn</em> to get the real FQDN of your machine. After that answer all the questions as before and after exim has restarted mail should work.</p>
<p>(In a debug session [see below: Coda point 2 for that] I found out that exim reported "<em>451 Temporary local problem - please try later</em>" to calling SMTP servers, so my local config seemed to be the problem, and as the errors also mentioned something with local host name as the root of the problem, I figured it had to do with my FQDN setting.)</p>
<p><strong>Coda<br />
</strong>Some posts say that this is related to DNS - it is not, not really. I had no hints of failed DNS lookups in the logs.</p>
<p>Watch what exim is doing, the easy way with:<br />
<em>$ tail /var/log/exim4/mainlog -f</em></p>
<p>This <a href="http://lists.debian.org/debian-user/2011/04/msg00917.html">post here</a> was useful:<br />
use exim -d -bh [a-senders-ip-address] with an IP from the logs where you've found the error with exim in a debug session.<br />
Manually enter a <em>MAIL FROM:</em> foo@example.com and exim will tell you how it handles it.<br />
Then manually enter a receiver address with <em>RCPT TO: </em>my-email@example.com, where in my case exim began to point me into the right direction.</p>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/exim4-temporarily-rejected-rcpt-problem-solved/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple video editing with ffmpeg</title>
		<link>http://goeszen.com/simple-video-editing-with-ffmpeg</link>
		<comments>http://goeszen.com/simple-video-editing-with-ffmpeg#comments</comments>
		<pubDate>Mon, 09 Apr 2012 15:20:58 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1381</guid>
		<description><![CDATA[If you want to trim, cut, chop or in any way edit a video on the command line, these commands here help you to get simple editing done with ffmpeg: Editing a section out from the middle of a video: $ ffmpeg -i &#60;input&#62; -ss hh:mm:ss.000 -t hh:mm:ss.000 -sameq &#60;output&#62; (-ss seek to position, -t [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to trim, <em>cut</em>, chop or in any way <em>edit a video</em> on the <em>command line</em>, these commands here help you to get <em>simple editing</em> done with <em>ffmpeg</em>:</p>
<p><strong>Editing a section out from the middle of a video:</strong><br />
<em>$ ffmpeg -i &lt;input&gt; -ss hh:mm:ss.000 -t hh:mm:ss.000 -sameq &lt;output&gt;</em><br />
(-ss seek to position, -t duration of relevant segment, -sameq maintain quality of input)<br />
You might also use <em>-vcodec copy -acodec copy</em> to 1:1 edit out data from the input, but I've found that most videos don't have keyframes where you expect them, for example with one mov I've edited, the result was all black as the video didn't render. So on editing video, you seem to have to re-encode with most video to get what you expect, loosing a generation in the process.<br />
&#160;</p>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/simple-video-editing-with-ffmpeg/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert video to a series of JPG stills with ffmpeg</title>
		<link>http://goeszen.com/convert-video-to-jpg-with-ffmpeg</link>
		<comments>http://goeszen.com/convert-video-to-jpg-with-ffmpeg#comments</comments>
		<pubDate>Mon, 09 Apr 2012 12:47:03 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1377</guid>
		<description><![CDATA[Here's how to convert a video to a series / sequence of jpeg images, effectively converting every still frame into a jpg, with numbering, using the magic of ffmpeg: ffmpeg -i &#60;input_video&#62; -f image2 &#60;output_name&#62;%03d.jpg a more verbose variant: ffmpeg -i &#60;input&#62;.avi -r 1 -s WxH -f image2 &#60;output&#62;-%03d.jpeg To create a video from a [...]]]></description>
			<content:encoded><![CDATA[<p>Here's how to <em>convert a video</em> to a <em>series / sequence</em> of <em>jpeg images</em>, effectively converting every still frame into a jpg, with numbering, using the magic of <em>ffmpeg</em>:</p>
<p><em>ffmpeg -i &lt;input_video&gt; -f image2 &lt;output_name&gt;%03d.jpg</em></p>
<p>a more verbose variant:</p>
<p><em>ffmpeg -i &lt;input&gt;.avi -r 1 -s WxH -f image2 &lt;output&gt;-%03d.jpeg</em></p>
<p>To create a video from a sequence of images (the other way round):</p>
<p>ffmpeg -f image2 -i foo-%03d.jpeg -r 12 -s WxH foo.avi</p>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/convert-video-to-jpg-with-ffmpeg/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring Summer 2012: Yellow</title>
		<link>http://goeszen.com/spring-summer-2012-yellow</link>
		<comments>http://goeszen.com/spring-summer-2012-yellow#comments</comments>
		<pubDate>Tue, 03 Apr 2012 23:41:21 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Fashion]]></category>
		<category><![CDATA[Shirts & Tops]]></category>
		<category><![CDATA[Shoes]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1346</guid>
		<description><![CDATA[Spring Sommer 2012 has some very strong colour trends, yellow, mangenta and cobalt blue, blocked with each other and black. (c) Zara, image linked from their website This insta-glow-ish yellow top from Zara is a good example of trendy yellow SS2012. 19.99 GBP Link (c) Louis Vuitton, image linked from their website The Louis Vuitton [...]]]></description>
			<content:encoded><![CDATA[<p>Spring Sommer 2012 has some very strong colour trends, yellow, mangenta and cobalt blue, blocked with each other and black.</p>
<table border="0" style="width: 100%;">
    <tbody>
        <tr>
            <td>
            <img width="400" height="600" alt="from Zara" src="http://static.zara.net/photos//2012/V/1/l/1000003/1000003_1_1_4.jpg" title="Zara yellow top" /><br />(c) Zara, image linked from their website
            </td>
            <td>
            <p>This insta-glow-ish yellow top from <strong>Zara <br />
            </strong></p>
            is a good example of trendy yellow SS2012.
            <p>19.99 GBP <a href="http://www.zara.com/webapp/wcs/stores/servlet/product/uk/en/zara-S2012/189509/773009/LONG%2BASYMMETRIC%2BT-SHIRT">Link</a></p>
            </td>
        </tr>
        <tr>
            <td>
            <img width="354" height="288" class="alignnone" title="LV Merry-Go-Round" src="http://stylepantry.com/wp-content/uploads/2012/03/LV-Merry-Go-Round-Pump-in-Alligator-Jaune.jpg" alt="Louis Vuitton Merry-Go-Round" />
            <br />(c) Louis Vuitton, image linked from their website
            </td>
            <td>The <strong>Louis Vuitton</strong> "Merry-Go-Round" collection has pumps in bright yellow with a silver toe cap. As SP from stylepanty.com <a href="http://stylepantry.com/2012/03/07/louis-vuitton-merry-go-round-shoe-collection/">also pointed out</a>, there's a cheaper version from Zara. LV is billing up to 6,000GBP for the yellow Alligator version. Kristen Steward seems to be a fan of the kid leather version. 640GBP / 6,300GBP (34-41) <a href="http://www.louisvuitton.co.uk/front/#/eng_GB/Collections/Women/Shoes/products/Merry-go-round-pump-in-leather-881929">Link</a></td>
        </tr>
        <tr>
            <td>
            <img width="395" height="507" title="Zara yellow pumps" src="http://static.zara.net/photos//2012/V/1/1/p/1192/101/090/1192101090_2_1_3.jpg" alt="" />
            <br />(c) Zara, image linked from their website
            </td>
            <td>From <strong>Zara</strong> comes this pump, very similar to Louis Vuitton's "Merry-Go-Round" but also crossed with Casadei's "Blade" in terms of heel style.</td>
        </tr>
        <tr>
            <td>
            <img td="" src="http://www.casadei.com/image.php?src=http://www.casadei.com/media/prodotti/32/colors/f009_blade_pump_fluo_yellow_day_high_heel_1328282576.jpg&amp;w=450&amp;h=400&amp;zc=1" alt="" />
            <br />(c) Casadei, linked from their website
            </td>
            <td>
            Following the strong trend for bright colours <strong>Casadei</strong> introduces the popular Blade in <em>fluo yellow</em> (pictured left), <em>fluo green</em> and <em>fluo orange</em>.</p>
            <p>Available from Boutiques. Ask for price. <a href="http://www.casadei.com/it/product/F008_Blade_Pump_Fluo_Yellow_day_high_heel-32">Via</a></p>
            </td>
        </tr>
        <tr>
            <td><img src="http://www.stefanel.com/media/catalog/product/cache/17/thumbnail/400x400/9df78eaa33525d08d6e5cb8d27736e94/Q/D/QD209DT0000_2159_002.jpg" alt="" /><br />(c) Stefanel, image linked from their website</td>
            <td><strong>Stefanel</strong> has an interesting Neoprene pointed toe pump, in a greenish-yellow colour titled girasol. In real life they look more yellow than in this picture... 159EUR (35-41) <a href="http://www.stefanel.com/de_en/shop/shoes-and-bags/scarpa-neoprene.html">Link</a></td>
        </tr>
        <tr>
            <td>
            <p><img alt="" src="http://i1.ztat.net/detail/ZA/52/1C/01/E7/04/ZA521C01E-704@1.1.jpg" /></p>
            <br />image (c) Zalando, linked from their website
            </td>
            <td>
            <p><strong>Bernadette Penkov</strong> has some very nice tops and dresses, including this one with a bright yellow on beige / grey-ish background</p>
            <p>45GBP via Zalando <a href="http://www.zalando.co.uk/zalando-collection-dress-yellow-za521c01e-704.html">Link</a></p>
            </td>
        </tr>
        <tr>
            <td>
            <img alt="" src="http://deichmann.scene7.com/is/image/deichmann/t_p_detail?$im=1102497_P&amp;$sh=1102497_P&amp;defaultImage=default_dsd" td="" />
            <br />Image (c) Deichmann, linked from their website
            </td>
            <td>
            <p>German retailer <strong>Deichmann</strong> (similar to UK's Barratts) offers some brighter colours in their April line. For example this yellow-ish wedge which extends the yellow palette into a very trendy mustard. A little glimpse into the yellow transformation we'll see in Autumn where things seem to go <em>Chelsea</em> and <em>Cognac</em>.</p>
            <p>39,90 EUR via <a href="http://www.deichmann.com/DE/de/shop/damen/damen-schuhe/00000001102497/Keil%20Pumps.prod?r=5&amp;c=3&amp;filter_brand=all&amp;filter_color=10&amp;filter_heel=all&amp;filter_padding=all&amp;filter_size=all&amp;orderby=topseller&amp;st=PRODUCT&amp;filter_cat=damen/damen-schuhe">Deichmann</a></p>
            </td>
        </tr>
        <tr>
            <td><img src="http://static.zara.net/photos//2012/V/1/1/p/1160/101/097/1160101097_1_1_3.jpg" alt="" /></td>
            <td>
            <p><strong>Zara</strong> has a very nice suede slingback peeptoe, also available in black.</p>
            <p>49.99 GBP from <a href="http://www.zara.com/webapp/wcs/stores/servlet/product/uk/en/zara-S2012/189510/630809/SUEDE%2BSLINGBACK">Zara</a></p>
            </td>
        </tr>
        <tr>
            <td>
            <img alt="" src="http://www.casadei.com/image.php?src=http://www.casadei.com/media/prodotti/103/views/f026_fontana_platform_sandal_fluo_yellow_calf_black_day_super_high_heel_1328290856.jpg&amp;w=450&amp;h=400&amp;zc=1" td="" />
            <br />(c) Casadei, linked from their website
            </td>
            <td>
            <p><strong>Casadei</strong> also offers this giant wedge, blocking black with a bright yellow. Kenzo offers a very similar Sandal - all black with bright coloured (yellow) toe strap.</p>
            <p><a href="http://www.casadei.com/it/collection_current/fluo-7">Casadei Fluo line</a></p>
            </td>
        </tr>
    </tbody>
</table>]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/spring-summer-2012-yellow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activating Swap&#8230; failed on Debian Squeeze</title>
		<link>http://goeszen.com/activating-swap-failed-on-debian-squeeze</link>
		<comments>http://goeszen.com/activating-swap-failed-on-debian-squeeze#comments</comments>
		<pubDate>Mon, 02 Apr 2012 13:33:11 +0000</pubDate>
		<dc:creator>goes</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[webserver]]></category>

		<guid isPermaLink="false">http://goeszen.com/?p=1364</guid>
		<description><![CDATA[Recently, on a very fresh install of Debian Squeeze I've noticed that on boot, the log said "Activating Swap... FAILED". A look into /etc/fstab brought up nothing helpful: UUID=xyz none&#160; swap&#160;&#160;&#160; sw 0 0 seemed okay. So as it seems there was an error with the volume that was listed as swap. Then, listing partitions [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, on a very fresh install of <em>Debian Squeeze</em> I've noticed that on boot, the log said "<em>Activating Swap... FAILED</em>".</p>
<p>A look into <em>/etc/fstab</em> brought up nothing helpful: UUID=xyz none&#160; swap&#160;&#160;&#160; sw 0 0 seemed okay. So as it seems there was an error with the volume that was listed as swap.</p>
<p>Then, listing partitions with fdisk -l showed that there was no swap.</p>
<p><em>swapon -a -v</em> gave me:</p>
<blockquote>
<p>swapon on /dev/sda5<br />
swapon: /dev/sda5: found swap signature: version 1, page-size 4, same byte order<br />
swapon: /dev/sda5: pagesize=4096, swapsize=3016753152, devsize=3007315968<br />
swapon: /dev/sda5: last_page 0xb3d00000 is larger than actual size of swapspace<br />
swapon: /dev/sda5: swapon failed: Invalid argument</p>
</blockquote>
<p>Looks like something corrupted my swap. Or the swap might not be formatted. Thus, I created/formatted it anew with:</p>
<p><em>mkswap /dev/sda5</em></p>
<p>which gave the device a new UUID. After adding the new UUID to <em>/etc/fstab</em> the swapon command worked and swap was there. Looking at the boot sequence is a todo.<br />
All this might have resulted from a strange hiccup before I possibly never will find out about.<br />
&#160;</p>
]]></content:encoded>
			<wfw:commentRss>http://goeszen.com/activating-swap-failed-on-debian-squeeze/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

