<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[1001 untold stories]]></title><description><![CDATA[1001 untold stories]]></description><link>https://aint-no-soul.com/</link><image><url>https://aint-no-soul.com/favicon.png</url><title>1001 untold stories</title><link>https://aint-no-soul.com/</link></image><generator>Ghost 3.31</generator><lastBuildDate>Mon, 08 Aug 2022 14:48:47 GMT</lastBuildDate><atom:link href="https://aint-no-soul.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[How to file a bug report]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Since I waste lot of time on interpreting bug reports, I'd like to give a little guidance on how to file it correctly. I would claim that I spend at least 10% of my time on guessing and asking the reporter what the bug means. Plus - 5% more on</p>]]></description><link>https://aint-no-soul.com/how-to-file-a-bug-report/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc31</guid><category><![CDATA[code]]></category><category><![CDATA[digital life]]></category><category><![CDATA[work]]></category><category><![CDATA[development]]></category><category><![CDATA[project management]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Fri, 23 Mar 2012 11:36:02 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>Since I waste lot of time on interpreting bug reports, I'd like to give a little guidance on how to file it correctly. I would claim that I spend at least 10% of my time on guessing and asking the reporter what the bug means. Plus - 5% more on fixing stuff, that I thought I've already fixed but misinterpreted the ticket because it was to vague or badly written. That is 15% completely wasted time.</p>
<h2>Explaining "the issue"</h2>
A simple "<em>does not work</em>", does indeed simply not work. You should try to use at least three interrogatives like: <strong>what, when and where</strong>.
<p>It is also important in some situations and especially for web development to mention the browser or device and the version of it, the operating system, the screen resolution, etc.</p>
<p>Be precise in your description to make it reproducible.</p>
<h2>Use screenshots</h2>
If something is hard to explain with words - use screenshots if possible - or show it on screen to the developer.
<h2>Prioritizing</h2>
Try to prioritize the bugs. Or even better, let the developers estimate the bug's and then prioritize it.
<h2>Evaluation</h2>
When the developer said it should work now, for instance he/she has fixed a color, or behavior - you should always clear the cache before you try it out.
<h2>An analogy</h2>
Do you remember math tests at school? The teacher always marks the error preferably with red. The teacher did also note what exactly was wrong: Sometimes only the result was wrong, or you missed a comma, or used the wrong formula.
<p>Imagine the teacher would only mark the whole arithmetic problem as false or even worse, just write a big nasty failed under the test and leave the rest to you ;)</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[PNG Image Optimisation]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>I did some research at work for PNG image optimization, to find out what  are the best tools to compress PNG RGBA to paletted png with alpha  channel, that would also fit into a good workflow.<br>
In previous projects it was common to compress each picture individually  and that, of</p>]]></description><link>https://aint-no-soul.com/png-image-optimisation/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc2f</guid><category><![CDATA[code]]></category><category><![CDATA[css]]></category><category><![CDATA[work]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Mon, 14 Feb 2011 13:52:33 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>I did some research at work for PNG image optimization, to find out what  are the best tools to compress PNG RGBA to paletted png with alpha  channel, that would also fit into a good workflow.<br>
In previous projects it was common to compress each picture individually  and that, of course, was a long and repeating process. Screen’s often  change during development and if you need to do a task over and over  again, you might end up finding a solution that shortens the process.</p>
<p>My goal was find a solution and tools that would cover the following things:</p>
<ul>
	<li>Tools that are available on linux and OSX from commandline, to execute them via script</li>
	<li>a good compression ratio in a short amount of time</li>
	<li>Tools that transcode from rgba to paletted images with alpha cannel</li>
	<li>Tools that can read, modify (optional) and delete Header-Chunks</li>
	<li>Tools have to be opensourced or must be at least for free</li>
</ul>
For comparsion I’ve choose the following tools:
<ul>
	<li>pngcrush [<a href="http://pmt.sourceforge.net/pngcrush/"> http://pmt.sourceforge.net/pngcrush/</a> ]</li>
	<li>pngrewrite [<a href="http://entropymine.com/jason/pngrewrite/"> http://entropymine.com/jason/pngrewrite/</a> ]</li>
	<li>imagemagic (convert binary) [<a href="http://www.imagemagick.org/script/convert.php"> http://www.imagemagick.org/script/convert.php</a> ]</li>
	<li>pngnq [<a href="http://pngnq.sourceforge.net/"> http://pngnq.sourceforge.net/</a> ]</li>
	<li>pngout [ <a href="http://www.jonof.id.au/kenutils">http://www.jonof.id.au/kenutils</a> ]</li>
	<li>optipng [<a href="http://optipng.sourceforge.net/"> http://optipng.sourceforge.net/</a> ]</li>
</ul>
<h3>Tested Tools</h3>
Here  is a brief overview of what matters: Short description + usage example.  When I mention quantize, i mean the reductions of colors from rgba to a  paletted color map with alpha channel.
<h4>Pngcrush</h4>
Can not quantize as described above but processes fast when optimizing the IDAT Stream.
<code>Usage: pngcrush -reduce alpha24.png alpha24-crushed.png</code>
<h4>Pngrewrite</h4>
Can handle only paletted images but the result then is very good.
<code>Usage: pngrewrite alpha24.png alpha24-pngrewrite.png</code>
<h4>ImageMagick</h4>
Comes  with a hugh amount of features but is no good choice for compression,  it produces partial bigger file sizes than the original. I was not able  to archive any good results - thus I’m just mention it here for the  completeness, but do not enlist it in the charts.
<h4>Pngnq</h4>
Can not quantize as described above but works very well for all other purposes.
<code>Usage: pngnq -s1 -e"-nq256.png" -v alpha24.png</code>
<h4>PNGOUT</h4>
The main feature is quantisation as we want it and it does the job very well. It "Quantizes a 32-bit RGBA PNG image to an 8 bit RGBA palette PNG using the neuquant algorithm".
<code>Usage: pngout alpha24.png alpha24-pngout-default.png</code>
<h4>OptiPNG</h4>
Is  seems to be very similar to Pngcrush (the Author states that OptiPNG is  inspired by Pngcrush) but the results are a little bit better and the  arguments differs.
<code>Usage: optipng -full alpha24.png -out alpha24-optipng-full.png</code>
<h3>Feature Overview</h3>
<img class="alignnone size-full wp-image-327" title="img-opt-chart-1-nq8-pngrewrite" src="https://aint-no-soul.com/content/images/2013/02/img-opt-chart-1-nq8-pngrewrite.png" alt width="550" height="436">
<h3>Benchmark and Comparsion</h3>
I've  taken one RGBA TrueColor image with a dimension of 300x300, with  lossless compression. The arguments used, are those in the usage  examples described earlier.
<p>Original file size in Bytes &quot;4739&quot;</p>
<table class="tbl-chart"><colgroup></colgroup>
<tbody>
<tr>
<td>tool</td>
<td>size after optimization</td>
<td class="td-last">Saved Bytes</td>
</tr>
<tr>
<td>pngcrush</td>
<td>3954</td>
<td class="td-last">785</td>
</tr>
<tr>
<td>optipng</td>
<td>3953</td>
<td class="td-last">786</td>
</tr>
<tr>
<td>pngrewrite</td>
<td>can't handle format</td>
<td class="td-last">0</td>
</tr>
<tr>
<td>pngnq</td>
<td>3344</td>
<td class="td-last"><strong>1395</strong></td>
</tr>
<tr>
<td>pngout</td>
<td>4096</td>
<td class="td-last">634</td>
</tr>
</tbody>
</table>
As you can see, pngnq had the best results and therefor I’ll use it for the next step.
<table class="tbl-chart"><colgroup></colgroup>
<tbody>
<tr>
<td>tool</td>
<td>size after optimization</td>
<td class="td-last">Saved Bytes</td>
</tr>
<tr>
<td>pngcrush</td>
<td>3344</td>
<td class="td-last">0</td>
</tr>
<tr>
<td>optipng</td>
<td>3329</td>
<td class="td-last">15</td>
</tr>
<tr>
<td>pngrewrite</td>
<td>2604</td>
<td class="td-last"><strong>740</strong></td>
</tr>
<tr>
<td>pngout</td>
<td>2866</td>
<td class="td-last">478</td>
</tr>
</tbody>
</table>
That means I've saved 2135 bytes and the optimised image is only 45,05%  of the original file size. In comparsion to ImageOptim, that is a GUI  App for OSX and only can save up to 25,5% (74,5% of original file size),  the result ist pretty impressing. It is worth to mention, that none of  the Adobe Products, besides Fireworks, can produce  8bit-paletted-with-alpha images.
<p>Note:<br>
The optimisation is meant for UI-images. Sprites, buttons, etc - not for user generated content or similar.</p>
<h3>Buildprocess</h3>
If you need to do a task over and over again: automate it ;)
<p>My  idea is to have a source image in full quality, that gets processed via  a script and then gets stored into a destination folder. However, some  images needs a special treatment and therefore it makes sense to have a  configuration file.</p>
<p>In  order to not process images twice, you could modify the iTxt for  instance, to mark it as processed and if the image has such header chunk  - do not process it. If you drop a new image into the source folder,  the image doesn’t have the chunk, thus it gets processed. But that’s  just micro-tuning, because pngnq and pngrewrite are fast enough … IMHO …  because you shouldn’t have more than 10 - 20 images to process.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Workaround for Zend_Dojo_Form when you render elements individually and dijit.byId() returns 'undefined']]></title><description><![CDATA[<!--kg-card-begin: markdown--><p><strong>Problem:</strong> When you render the form as a whole (<code>i.e: &lt;?php echo $this-&gt;form ?&gt;</code>), everything works fine, but when you render each element separate, the zendDijit <code>{&quot;id&quot;:&quot;yourFormId&quot;,&quot;params&quot;:{&quot;dojoType&quot;:&quot;dijit.form.Form&quot;}}</code> is missing. This</p>]]></description><link>https://aint-no-soul.com/workaround-for-zend_dojo_form-when-you-render-elements-individually-and-dijit-byid-returns-undefined/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc2e</guid><category><![CDATA[code]]></category><category><![CDATA[dijit]]></category><category><![CDATA[dojo]]></category><category><![CDATA[php]]></category><category><![CDATA[zend framework]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Fri, 11 Jun 2010 09:46:08 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p><strong>Problem:</strong> When you render the form as a whole (<code>i.e: &lt;?php echo $this-&gt;form ?&gt;</code>), everything works fine, but when you render each element separate, the zendDijit <code>{&quot;id&quot;:&quot;yourFormId&quot;,&quot;params&quot;:{&quot;dojoType&quot;:&quot;dijit.form.Form&quot;}}</code> is missing. This causes to break the validation/xhr process, because <code>dijit.byId()</code> returns only an 'undefined' value.</p>
<p><strong>Solution:</strong> Go to your View, where you render your form and add the following:</p>
<pre name="code" class="php:nocontrols:nogutter">
$form = $this->form;
$this->dojo()->setDijit($form->getId(), array('dojoType' => 'dijit.form.Form')); 

// add form tag ...
// add elements ...
</pre>
<p>It took me nearly 3 hours to figure this out ;)<br>
Hope this helps someone.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[mismatched (minimal / tech-house)]]></title><description><![CDATA[<!--kg-card-begin: markdown--><iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/2666693&amp;color=00aabb&amp;auto_play=false&amp;hide_related=true&amp;show_comments=false&amp;show_user=true&amp;show_reposts=false"></iframe>
<p>did it last week - hope you like it.</p>
<!--kg-card-end: markdown-->]]></description><link>https://aint-no-soul.com/mismatched-minimal-tech-house/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc2d</guid><category><![CDATA[music]]></category><category><![CDATA[dj-set]]></category><category><![CDATA[minimal]]></category><category><![CDATA[tech-house]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Mon, 03 May 2010 10:10:18 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/2666693&amp;color=00aabb&amp;auto_play=false&amp;hide_related=true&amp;show_comments=false&amp;show_user=true&amp;show_reposts=false"></iframe>
<p>did it last week - hope you like it.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[lemonade allegory]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p><a href="http://sethgodin.typepad.com/seths_blog/2010/01/the-lesson-from-two-lemonade-stands.html">What lemonade can teach us</a>: A value is defined by how much personal importance we attach. Attributeless things are worthless.</p>
<p>Found it via twitter and worth a read.</p>
<!--kg-card-end: markdown-->]]></description><link>https://aint-no-soul.com/lemonade-allegory/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc2c</guid><category><![CDATA[motd]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Fri, 22 Jan 2010 20:49:05 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p><a href="http://sethgodin.typepad.com/seths_blog/2010/01/the-lesson-from-two-lemonade-stands.html">What lemonade can teach us</a>: A value is defined by how much personal importance we attach. Attributeless things are worthless.</p>
<p>Found it via twitter and worth a read.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[e-mu 0404 usb control panel won't display on windows 7 and the default 48KHz issue.]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Since a few months I had the very strange issue that the default samplerate is 48KHz which caused me to set it manualy each time I wanted to play &quot;normal&quot; encoded audio. When I upgraded to windows 7 the control panel stopped displaying. It launches correctly when windows</p>]]></description><link>https://aint-no-soul.com/e-mu-0404-usb-control-panel-wont-display-on-windows-7-and-the-default-48khz-issue/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc2b</guid><category><![CDATA[digital life]]></category><category><![CDATA[music]]></category><category><![CDATA[e-mu 0404]]></category><category><![CDATA[windows 7]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Thu, 05 Nov 2009 11:18:10 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>Since a few months I had the very strange issue that the default samplerate is 48KHz which caused me to set it manualy each time I wanted to play &quot;normal&quot; encoded audio. When I upgraded to windows 7 the control panel stopped displaying. It launches correctly when windows starts but it won't open the control panel when i click it - and it's strangely enough to mention that the pane preview works fine. Since I am listnen to music primary via winamp, I could work around the samplerate issue via the <a href="http://otachan.com/out_asio(exe).html">out_aiso</a> plugin, so that I can listnen to music again.</p>
<p>However, the disappearing of the control panel &quot;on screen&quot; can be eventually solved if you do the following very few steps:</p>
<ul>
<li>close the control panel</li>
<li>open up rededit</li>
<li>navigate to HKEY_CURRENT_USER\Software\Creative Professional\E-MU USB Audio Control Panel</li>
<li>delete the following entries: "WindowX", "WindowY"</li>
<li>launch the CP again and you will see it again ;)</li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[The one and only correct way to use sprites.]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>In this post I'll show you the one and only correct way to use sprites and the very little benefit if you use sprites the wrong way.</p>
<p>It's in everyones mouth but a lot of people do not understand fully what sprites are supposed to optimize. Well we want so</p>]]></description><link>https://aint-no-soul.com/the-one-and-only-correct-way-to-use-sprites-in-css/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc2a</guid><category><![CDATA[code]]></category><category><![CDATA[css]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Tue, 11 Aug 2009 19:11:26 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>In this post I'll show you the one and only correct way to use sprites and the very little benefit if you use sprites the wrong way.</p>
<p>It's in everyones mouth but a lot of people do not understand fully what sprites are supposed to optimize. Well we want so badly to reduce the HTTP requests but as I'll show you, a lot of people do not understand how to write efficient selectors for sprites.</p>
<p>Here's a meaningfull chart I'm going to explain a few pixel down.<br>
<img src="https://aint-no-soul.com/examples/css-sprites/images/stats.png" alt="css sprites the wrong and correct way"></p>
<p>The <a href="https://aint-no-soul.com/examples/css-sprites/wrong-nosprites.html">first</a> &quot;wrong way&quot; uses multiple images and no sprites and show you what you might except. For each image a request gets done. 22ms were used.</p>
<p>The <a href="https://aint-no-soul.com/examples/css-sprites/wrong-sprites.html">second</a> wrong way shows you something, a lot of people wouldn't have guessed. For each CSS selector a request is made! The reason is, that the Browser does not know that the image has been already requested and requests it again. The browser then, when it does it's pre-processing understands, that tghe ressource has been already requested and grabs it ideally from the browser-cache. However that's just 4ms faster than without sprites.</p>
<pre class="css:nocontrols:nogutter" name="code">
.icon-mail 			{ background: transparent url(images/sprite.png) 0 0 no-repeat }
.icon-mail-add 		{ background: transparent url(images/sprite.png) 0 -40px no-repeat }
.icon-mail-attach 		{ background: transparent url(images/sprite.png) 0 -80px no-repeat }
.icon-mail-delete 		{ background: transparent url(images/sprite.png) 0 -120px no-repeat }
.icon-mail-edit 		{ background: transparent url(images/sprite.png) 0 -160px no-repeat }
.icon-mail-error 		{ background: transparent url(images/sprite.png) 0 -200px no-repeat }
.icon-mail-go 			{ background: transparent url(images/sprite.png) 0 -240px no-repeat }
.icon-mail-link 		{ background: transparent url(images/sprite.png) 0 -280px no-repeat }
.icon-nail-open 		{ background: transparent url(images/sprite.png) 0 -320px no-repeat }
.icon-mail-open-image 	{ background: transparent url(images/sprite.png) 0 -360px no-repeat }
</pre>
<p><a href="https://aint-no-soul.com/examples/css-sprites/right-sprites.html">The third and correct way</a> uses one selector containing the sprite and a few others to change only the position of the sprite. As you can see in my fancy chart, the benefit is: 4ms for the whole test document.  Thats 5.5 times faster than the first example and unbelievable 4 times faster than the second example, which uses the very same sprite!</p>
<pre class="css:nocontrols:nogutter" name="code">
.icons { background-image: url(images/sprite.png); background-repeat: none }
.icon-mail 			{ background-position: 0 0 }
.icon-mail-add 		{ background-position: 0 -40px }
.icon-mail-attach 		{ background-position: 0 -80px }
.icon-mail-delete 		{ background-position: 0 -120px }
.icon-mail-edit 		{ background-position: 0 -160px }
.icon-mail-error 		{ background-position: 0 -200px }
.icon-mail-go 			{ background-position: 0 -240px }
.icon-mail-link 		{ background-position: 0 -280px }
.icon-nail-open 		{ background-position: 0 -320px }
.icon-mail-open-image 	{ background-position: 0 -360px }
</pre>
<p>ps: You need something like firebug or httpwatch to check it for yourself.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[life moves pretty fast]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Every once in a while I write something really personal - and today is such day. As I've posted earlier on my flicker account, my step dead died a lonesome death. A few weeks have passed and all I can say is that time moves pretty fast. Your Mom gives</p>]]></description><link>https://aint-no-soul.com/life-moves-pretty-fast/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc29</guid><category><![CDATA[personal]]></category><category><![CDATA[death]]></category><category><![CDATA[life]]></category><category><![CDATA[memories]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Thu, 09 Jul 2009 20:53:36 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>Every once in a while I write something really personal - and today is such day. As I've posted earlier on my flicker account, my step dead died a lonesome death. A few weeks have passed and all I can say is that time moves pretty fast. Your Mom gives birth and it's you - your parents raise you and especially when you're young - time moves so slow - you can't become old enougth to early. However - the older one become, the faster lifes moves. Not forgetting: the faster it goes on - the less we do remember certain things. Less we wonder and slowly we loose the ability to be surprised.</p>
<p>This post is personal - as I've already mentioned - and I guess I am in the position to say that I've matured without becoming old. And for my step dad - I'd arrogate to oneself that i knew him that much, that he was a good person suffered a great burden he was unable to fight. Over a few years he has supported me financially and personal - because as he stated - he was able to at that time. I know he had a good reputation and people liked him for his honesty and the ability to say whats important. The sadly part about it - he wasn't able to do all the good things to himself - which he adviced to others. It's always easy to give good advice ...</p>
<p>And the good thing is - he'll be in my heart - forever. No matter how fucked up the situations sometimes was with him ... he tought me a few essential things I continue to teach aswell to others:</p>
<ul>
	<li><strong>have a real opinion</strong></li>
	<li><strong>believe in yourself</strong></li>
	<li><strong>it doesn't matter what other people say - as long as you don't betray yourself</strong></li>
</ul>
In two weeks will be the ceremony and I guess it's my first funeral after all ... and the family will come together - after long period of being not together. 
<p>May he rest in peace and whatever he has wished for shall come true in eternity.<br>
Word!</p>
<p>PS: A few links I've just discovered about him (in german):</p>
<ul>
	<li><a href="http://www.abendblatt.de/region/pinneberg/article1083247/Die-Wedeler-Gruenen-trauern-um-Bernd-Reifhardt.html">abendblatt about his death notice and obituary</a></li>
	<li><a href="http://www.gruene-wedel.de/archiv/1981-2006/">grüne wedel (scroll down to Bernd Reifhardt) about his political career</a></li>
	<li><a href="http://www.abendblatt.de/region/pinneberg/article937433/Personal-Rotation-bei-den-Wedeler-Gruenen.html">abendblatt about his political retirement in 2002</a></li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[if your svn is obstructed]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>try to run a cleanup and remove all obstructed files from your local copy. Or better said: copy them to a save place! Now remove all .svn dirs from your copy and run an update on your local project and copy back the »obstructed« dirs/files. Hit refresh and commit</p>]]></description><link>https://aint-no-soul.com/if-your-svn-is-obstructed/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc28</guid><category><![CDATA[digital life]]></category><category><![CDATA[svn]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Thu, 28 May 2009 18:09:13 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>try to run a cleanup and remove all obstructed files from your local copy. Or better said: copy them to a save place! Now remove all .svn dirs from your copy and run an update on your local project and copy back the »obstructed« dirs/files. Hit refresh and commit it. That should fix the &quot;obstructed&quot; files.</p>
<p>The reason might be, you've copied from another repos some files - including - some .svn dirs.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Permission denied in Unknown on line 0]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>if you install apache/php and get the following error:<br>
<code>Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0</code><br>
Then consider to check the permissions.</p>
<p>What user/group has the apache?<br>
<code>ps -ef | grep apache</code></p>
<p>Who owns the files in your htdocs?</p>
<p>...</p>
<p>Because it is most</p>]]></description><link>https://aint-no-soul.com/permission-denied-in-unknown-on-line-0/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc27</guid><category><![CDATA[code]]></category><category><![CDATA[digital life]]></category><category><![CDATA[apache2]]></category><category><![CDATA[server]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Wed, 13 May 2009 19:53:48 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>if you install apache/php and get the following error:<br>
<code>Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0</code><br>
Then consider to check the permissions.</p>
<p>What user/group has the apache?<br>
<code>ps -ef | grep apache</code></p>
<p>Who owns the files in your htdocs?</p>
<p>...</p>
<p>Because it is most likely that you need to chown your htdocs, and or add a user to the correct group.</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[no fun with server]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>At work we've ordered a new server and I've installed and configured apache, mysql, php5 and lighty + some tools, when spontaneously 'less' died and also 'vim' broke. Then mysql didn't start, because 'There's not enough space in /var/lib/mysql/' and the eth0 changes I made broke aswell. reinstalling</p>]]></description><link>https://aint-no-soul.com/no-fun-with-server/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc26</guid><category><![CDATA[digital life]]></category><category><![CDATA[server]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Fri, 01 May 2009 17:09:01 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>At work we've ordered a new server and I've installed and configured apache, mysql, php5 and lighty + some tools, when spontaneously 'less' died and also 'vim' broke. Then mysql didn't start, because 'There's not enough space in /var/lib/mysql/' and the eth0 changes I made broke aswell. reinstalling mysql didn't solve it - actually the installation broke. Dependencies errors and the same ol 'not enough space' stuff. 'Dmesg' is reporting 'Invalid field in CDB' a few times and that eth0: link is not ready...</p>
<p>This is a fresh server with 500gig and only 1% is in use - so there is space and I guess there is something else wrong. fsck 'mention' that the superblock is corrupted. Well ok - I know it is not so wise to run fsck on a running mashine - it would be more wise from lilo or a live cd - but it is a 'managed OS' so the hoster do not provide such thing. If the worse get worse, I can call them and let em reinstall everything but all my configurations would be lost - or at least I had to copy my configs to the new one.</p>
<p>Right now I am in fsck's interactive mode and pushing the confirm button repeatedly and /lost+found is getting affiled.</p>
<p>And then some message:<br>
<code>/dev/sda1: 37458/30277632 Dateien (1.3% nicht zusammenhängend), 2216874/121093945 Blöcke</code><br>
and the console stands still. no Ctrl+C, no 'enter', no nothing works...</p>
<p><em>duck</em></p>
<p>and then<br>
<code><br>
[LOCAL] : SSH2Core version 4.3.0.371<br>
[LOCAL] : Connecting to netfreaks.de:22 ...<br>
[LOCAL] : Changing state from STATE_NOT_CONNECTED to STATE_EXPECT_KEX_INIT<br>
[LOCAL] : RECV: TCP/IP close<br>
[LOCAL] : Changing state from STATE_EXPECT_KEX_INIT to STATE_CLOSED<br>
[LOCAL] : Connected for 0 seconds, 47 bytes sent, 0 bytes received<br>
</code></p>
<p>it wasn't me!</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[The golden age of rap]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Classics at: <a href="http://songza.com/blog/the-golden-age-of-rap/">http://songza.com/blog/the-golden-age-of-rap/</a><br>
... and even today: awesome!</p>
<!--kg-card-end: markdown-->]]></description><link>https://aint-no-soul.com/the-golden-age-of-rap/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc25</guid><category><![CDATA[media]]></category><category><![CDATA[music]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Thu, 16 Apr 2009 12:44:05 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>Classics at: <a href="http://songza.com/blog/the-golden-age-of-rap/">http://songza.com/blog/the-golden-age-of-rap/</a><br>
... and even today: awesome!</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[got new server]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>bigger, better, faster. (AMD Athlon 64 X2 5600+ Dual Core / 4 GB DDR2 / 2 x 400 GB SATA II / Debian)<br>
Well ok - bigger, and better than the current one ;)</p>
<!--kg-card-end: markdown-->]]></description><link>https://aint-no-soul.com/got-new-server/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc24</guid><category><![CDATA[digital life]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Wed, 15 Apr 2009 09:40:10 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>bigger, better, faster. (AMD Athlon 64 X2 5600+ Dual Core / 4 GB DDR2 / 2 x 400 GB SATA II / Debian)<br>
Well ok - bigger, and better than the current one ;)</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Dresden day one and a half]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>We woke up at 7am and I was tiered as fuck, because it was after 1am<br>
when we finaly went to bed. I kinda hate it when I go on a trip - the<br>
preperation sucks but luckily we've managed everything in time, at<br>
least we didn't miss the train.</p>]]></description><link>https://aint-no-soul.com/dresden-day-one-and-a-half/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc23</guid><category><![CDATA[somewhere]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Fri, 10 Apr 2009 08:37:51 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>We woke up at 7am and I was tiered as fuck, because it was after 1am<br>
when we finaly went to bed. I kinda hate it when I go on a trip - the<br>
preperation sucks but luckily we've managed everything in time, at<br>
least we didn't miss the train. What can I say - the weather is and<br>
was fine - the sun is shining and I try to be relaxed.</p>
<p>Of course we went to the 'Semper opera', the 'Zwinger', the<br>
'Frauenkirche', took some tourist-like photos and spent the evening at<br>
'Neustadt'.</p>
<p>Right now we wait for the ship to 'Rathen' to see the 'Elb-Sandstein<br>
Mountains' and I am starving and hope there something to eat on board.<br>
A sausage with mustard + a bun would be great!</p>
<p>...</p>
<p>--<br>
Sent from my mobile device</p>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[testing the cronscript]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>should work aswell...</p>
<!--kg-card-end: markdown-->]]></description><link>https://aint-no-soul.com/testing-the-cronscript/</link><guid isPermaLink="false">5f4e4a4216aff5370ff1bc22</guid><category><![CDATA[somewhere]]></category><dc:creator><![CDATA[biophonc]]></dc:creator><pubDate>Wed, 08 Apr 2009 22:10:18 GMT</pubDate><content:encoded><![CDATA[<!--kg-card-begin: markdown--><p>should work aswell...</p>
<!--kg-card-end: markdown-->]]></content:encoded></item></channel></rss>