<?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>zeyaLabs &#187; howtos</title>
	<atom:link href="http://www.zeyalabs.ch/tags/howtos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zeyalabs.ch</link>
	<description>Binary and Plain Stuff... and more</description>
	<lastBuildDate>Tue, 30 Nov 2010 14:27:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>External USB Hard Drive under Linux</title>
		<link>http://www.zeyalabs.ch/posts/external-usb-hard-drive-under-linux/</link>
		<comments>http://www.zeyalabs.ch/posts/external-usb-hard-drive-under-linux/#comments</comments>
		<pubDate>Sun, 23 May 2010 22:27:39 +0000</pubDate>
		<dc:creator>Oldie</dc:creator>
				<category><![CDATA[Techy Articles]]></category>
		<category><![CDATA[drives]]></category>
		<category><![CDATA[gear]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.zeyalabs.ch/?p=312</guid>
		<description><![CDATA[&#8220;640 kilobytes ought to be enough for anybody.&#8221; — unknown source (often misattributed to Bill Gates) Yesterday, I had to replace a one-terabyte external USB hard drive attached to my home file server with a larger one&#8230; Oh, I wasn&#8217;t going to ramble about these days&#8217; lack of disk space, I just wanted to document&#160;<a class="more" href="http://www.zeyalabs.ch/posts/external-usb-hard-drive-under-linux/" title="read whole article">[...]</a>]]></description>
			<content:encoded><![CDATA[<p class="epigraph">
&#8220;640 kilobytes ought to be enough for anybody.&#8221;<br />
— unknown source (often misattributed to Bill Gates)
</p>
<p>Yesterday, I had to replace a one-terabyte external <acronym title="Universal Serial Bus">USB</acronym> hard drive attached to my home file server with a larger one&#8230;</p>
<p>Oh, I wasn&#8217;t going to ramble about these days&#8217; lack of disk space, I just wanted to document what I did to get the drive up and running: maybe someone could use this article as a quick start for their own configuration. (Mine was a two-terabyte Hitachi SimpleDrive under Fedora Core Linux.)</p>
<p>Please note that this is not a complete newbie manual on all aspects of the procedure, so don&#8217;t expect to find detailed explanations on things like which shell command does what or why this filesystem is better than that one or why I am <code>sudo</code>-ing when switching to <code>root</code> seems to be much easier an approach.</p>
<p>Here we go now. (Skip steps marked with <code>**</code> if you are not replacing a drive but installing a new one.)</p>
<ul>
<li>First of all, connect the <acronym title="Universal Serial Bus">USB</acronym> drive to your running Linux machine and power the former up.</li>
</ul>
<ul>
<li>Find out if and how the system recognized it.</li>
</ul>
<pre class="brush: plain; title: ; notranslate">
$&gt; sudo dmesg | tail
usb 4-6: new high speed <acronym title="Universal Serial Bus">USB</acronym> device using ehci_hcd and address 3
usb 4-6: configuration #1 chosen from 1 choice
scsi3 : <acronym title="Small Computer System Interface">SCSI</acronym> emulation for <acronym title="Universal Serial Bus">USB</acronym> Mass Storage devices
usb-storage: device found at 3
usb-storage: waiting for device to settle before scanning
usb-storage: device scan complete
scsi 3:0:0:0: Direct-Access     Hitachi  HDS722020ALA330       PQ: 0 ANSI: 2 CCS
sd 3:0:0:0: [sdc] 3907029168 512-byte hardware sectors (2000399 <acronym title="Megabyte">MB</acronym>)
sd 3:0:0:0: [sdc] Write Protect is off
sd 3:0:0:0: [sdc] Mode Sense: 34 00 00 00
sd 3:0:0:0: [sdc] Assuming drive cache: write through
sd 3:0:0:0: [sdc] 3907029168 512-byte hardware sectors (2000399 <acronym title="Megabyte">MB</acronym>)
sd 3:0:0:0: [sdc] Write Protect is off
sd 3:0:0:0: [sdc] Mode Sense: 34 00 00 00
sd 3:0:0:0: [sdc] Assuming drive cache: write through sdc: sdc1
sd 3:0:0:0: [sdc] Attached <acronym title="Small Computer System Interface">SCSI</acronym> disk
sd 3:0:0:0: Attached scsi generic sg3 type 0
VFS: Can't find ext3 filesystem on dev sdc1.
</pre>
<p>From this output you can see that the drive was recognized as device <code>/dev/sdc</code> with a single partition <code>/dev/sdc1</code>.</p>
<p>The partition&#8217;s filesystem is not ext3. (Factory-preformatted FAT32, most likely.) Since the drive will remain attached to a Linux machine, it would make sense to reformat it into something native.</p>
<ul>
<li>Partition the drive.</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo /sbin/fdisk /dev/sdc
</pre>
<p>Choose the appropriate options from the menu. I went this way:<br />
<code>p</code> — print current partition table;<br />
<code>l</code> — list known partition types (filesystems);<br />
<code>d</code> — delete current partition;<br />
<code>n</code> — create new partition.</p>
<p>For this new partition, specify:<br />
<code>p</code> — primary partition;<br />
<code>1</code> — partition number;<br />
default values for first/last cylinder;<br />
<code>Linux</code> — partition type (which is <code>etx3</code> on this system; ID 83 in the list of known partition types mentioned above).</p>
<p>And finally:<br />
<code>w</code> — write table to disk and exit.</p>
<ul>
<li>Create filesystem (format partition).</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo /sbin/mkfs.ext3 -j /dev/sdc1
</pre>
<ul>
<li>Create mount point.</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo mkdir /mnt/mynewdrive
</pre>
<ul>
<li>Mount the new drive&#8217;s partition for file transfer.**</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo mount -t ext3 /dev/sdc1 /mnt/mynewdrive
</pre>
<ul>
<li>Transfer files from the old drive.**</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo cp -Rvp /mnt/myolddrive/ /mnt/mynewdrive
</pre>
<p>Don&#8217;t forget the <code>-p</code> option to preserve file ownership and permissions. Mind the slash after <code>myolddrive/</code>.</p>
<p>This will take some time. (14 hours for approximately 800 <acronym title="Gigabyte">GB</acronym> in my case.)</p>
<ul>
<li>Unmount both drives.**</li>
</ul>
<p>Prior to that, stop any processes/services which might still be using the drives. (In my case, for instance, it was a Samba fileserver daemon holding shared folders on the old drive.)</p>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo umount /mnt/mynewdrive
$&gt; sudo umount /mnt/myolddrive
</pre>
<p>Notice that the command is <code>umount</code>, not <code>u<del>n</del>mount</code>.</p>
<ul>
<li>Disconnect the old drive. Reposition and/or reconnect the new one, if necessary.**</li>
</ul>
<ul>
<li>Check if the new drive is still recognized under its original name.**</li>
</ul>
<p>In my case, it wasn&#8217;t: it took place of the old one, which went under <code>/dev/sdb</code> (with partition <code>/dev/sdb1</code>).</p>
<p>For this check, look through latest system messages like you did in the beginning:</p>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo dmesg | tail
</pre>
<ul>
<li>Adjust <code>fstab</code>.</li>
</ul>
<p>Open <code>fstab</code> for editing:</p>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo vi /etc/fstab
</pre>
<p>Remove old drive&#8217;s mapping**:</p>
<pre class="brush: bash; title: ; notranslate">
/dev/sdb1     /mnt/myolddrive     ext3     defaults     0 0
</pre>
<p>Add new drive&#8217;s mount options:</p>
<pre class="brush: bash; title: ; notranslate">
/dev/sdb1     /mnt/mynewdrive     ext3     defaults     0 0
</pre>
<p>Make sure to specify the correct partition name.</p>
<p>Save changes.</p>
<ul>
<li>Re-mount the new drive.</li>
</ul>
<pre class="brush: bash; title: ; notranslate">
$&gt; sudo mount /dev/sdc1
</pre>
<ul>
<li>Enjoy your new large-capacity storage.</li>
</ul>
<p>Two terabytes ought to be enough for anybody, right?</p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.zeyalabs.ch%2Fposts%2Fexternal-usb-hard-drive-under-linux%2F&amp;title=External%20USB%20Hard%20Drive%20under%20Linux" id="wpa2a_2"><img src="http://www.zeyalabs.ch/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zeyalabs.ch/posts/external-usb-hard-drive-under-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ох уж эти професюбители&#8230;</title>
		<link>http://www.zeyalabs.ch/posts/wedding-photography-quick-start/</link>
		<comments>http://www.zeyalabs.ch/posts/wedding-photography-quick-start/#comments</comments>
		<pubDate>Thu, 20 May 2010 21:29:23 +0000</pubDate>
		<dc:creator>Oldie</dc:creator>
				<category><![CDATA[Techy Articles]]></category>
		<category><![CDATA[gear]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.zeyalabs.ch/?p=277</guid>
		<description><![CDATA[Перепост, боян, &#8220;было&#8221;, классика, &#8220;скокаможна&#8221;? Ну&#8230; да. Но можно ли более наглядно и красноречиво пояснить ситуацию? Ой, вряд ли. Итак&#8230; Вопрос начинающего фотографа на одном из форумов: &#8220;Недавно приобрел себе камеру Canon EOS 450D. За месяц успел отфоткать кучу фоток, снимал преимущественно знакомых, кошку и просто людей на улице, а теперь подумываю совместить приятное с&#160;<a class="more" href="http://www.zeyalabs.ch/posts/wedding-photography-quick-start/" title="read whole article">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Перепост, боян, &#8220;было&#8221;, классика, &#8220;скокаможна&#8221;? Ну&#8230; да. Но можно ли более наглядно и красноречиво пояснить ситуацию? Ой, вряд ли. Итак&#8230;</p>
<p>Вопрос начинающего фотографа на одном из форумов:</p>
<blockquote><p>&#8220;Недавно приобрел себе камеру Canon EOS 450D. За месяц успел отфоткать кучу фоток, снимал преимущественно знакомых, кошку и просто людей на улице, а теперь подумываю совместить приятное с полезным. А именно: стать свадебным фотографом. С практикой фотосъёмки знаком не понаслышке &#8212; имел опыт фотосъёмки с &#8220;Зенитом&#8221;. Вот сижу и прикидываю, что нужно для свадебной фотосъемки. У меня пока только китовый объектив, что нужен лучше, но сейчас не потяну. Реально ли только с китовым? Нужна внешняя вспышка, по деньгам прикидываю баксов за 100-150, порекомендуйте, какую лучше взять. Дополнительную карту памяти и аккумулятор куплю. Что ещё нужно? Штатив с &#8220;тросиком&#8221;? Не знаю&#8230; по-моему, не обязательно иметь.&#8221;</p></blockquote>
<p><img src="http://www.zeyalabs.ch/wp-content/uploads/bride-500x351.jpg" alt="" title="Newbie Wedding Shot" width="500" height="351" class="aligncenter size-large wp-image-284" /></p>
<p>Ответ на том же форуме:</p>
<blockquote><p>&#8220;Недавно приобрел себе в магазине &#8220;Медтехника&#8221; скальпель. За месяц успел изрезать кожаный диван, ковер и едва не прирезал свою кошку, а теперь подумываю совместить приятное с полезным. А именно: поработать кардиохирургом. С практикой хирургии знаком не понаслышке, имел опыт работы с консервным ножом. Вот сижу и прикидываю, что для этого нужно. Скальпель пока не заточен и только один, понимаю, что нужен другой, но сейчас не потяну. Реально ли только одним скальпелем сделать аорто-коронарное шунтирование? Нужен еще кровоостанавливающий зажим, по деньгам прикидываю баксов за 10-15, порекомендуйте, какой лучше взять. Вату и тампоны куплю сам. Что еще нужно для хирургической операции на сердце? Троакар полостной и пинцет тканевый? Не знаю&#8230; по-моему, не обязательно иметь.&#8221;</p></blockquote>
<p>Увы, ни названия форума, ни имен авторов назвать не могу: натыкался только на перепосты. За сам факт существования оригинала тоже не ручаюсь: история больше смахивает на легенду.</p>
<p>Но это не столь важно. Главное &#8212; мораль той басни. (Какова?)</p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.zeyalabs.ch%2Fposts%2Fwedding-photography-quick-start%2F&amp;title=%D0%9E%D1%85%20%D1%83%D0%B6%20%D1%8D%D1%82%D0%B8%20%D0%BF%D1%80%D0%BE%D1%84%D0%B5%D1%81%D1%8E%D0%B1%D0%B8%D1%82%D0%B5%D0%BB%D0%B8%26%238230%3B" id="wpa2a_4"><img src="http://www.zeyalabs.ch/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zeyalabs.ch/posts/wedding-photography-quick-start/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Echoing Parentheses in Windows Batch Files</title>
		<link>http://www.zeyalabs.ch/posts/echoing-parentheses-in-batch-files/</link>
		<comments>http://www.zeyalabs.ch/posts/echoing-parentheses-in-batch-files/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 21:33:08 +0000</pubDate>
		<dc:creator>Oldie</dc:creator>
				<category><![CDATA[Techy Articles]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.zeyalabs.ch/?p=235</guid>
		<description><![CDATA[It&#8217;s not just about parentheses, really. It&#8217;s about almost anything that a script engine will ruthlessly interpret before executing a command: variable markers (percent signs), redirection symbols, parentheses, double quotes, ampersands&#8230; My most common&#8230; let&#8217;s say, case, is this: Put this in a BATch file, run it, and you&#8217;ll end up with a message saying&#160;<a class="more" href="http://www.zeyalabs.ch/posts/echoing-parentheses-in-batch-files/" title="read whole article">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s not just about parentheses, really. It&#8217;s about almost anything that a script engine will ruthlessly interpret before executing a command: variable markers (percent signs), redirection symbols, parentheses, double quotes, ampersands&#8230;</p>
<p>My most common&#8230; let&#8217;s say, <em>case</em>, is this:</p>
<pre class="brush: bash; title: ; notranslate">
@echo off

echo Doing something (very important)...
</pre>
<p>Put this in a BATch file, run it, and you&#8217;ll end up with a message saying</p>
<pre class="brush: bash; light: true; title: ; notranslate">
... was unexpected at this time.
</pre>
<p>No, seriously? It&#8217;s great that the engine is trying to evaluate an expression within an <code>echo</code>, but this time I need something much more simple: round brackets embedded into a text message. Just that. Please.</p>
<p>Thank heavens there is a &#8220;cure&#8221;: parentheses can be escaped with a caret character.</p>
<pre class="brush: bash; title: ; notranslate">
@echo off

echo Doing something ^(very important^)...
</pre>
<p>Now we&#8217;re good:</p>
<pre class="brush: bash; light: true; title: ; notranslate">
Doing something (very important)...
</pre>
<p>Carets can be used to escape almost any special character, even a newline &#8212; to break a single command in several lines.</p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.zeyalabs.ch%2Fposts%2Fechoing-parentheses-in-batch-files%2F&amp;title=Echoing%20Parentheses%20in%20Windows%20Batch%20Files" id="wpa2a_6"><img src="http://www.zeyalabs.ch/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zeyalabs.ch/posts/echoing-parentheses-in-batch-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacBook Forgetting Wireless Network</title>
		<link>http://www.zeyalabs.ch/posts/macbook-forgetting-wireless-network/</link>
		<comments>http://www.zeyalabs.ch/posts/macbook-forgetting-wireless-network/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 08:26:03 +0000</pubDate>
		<dc:creator>Oldie</dc:creator>
				<category><![CDATA[Techy Articles]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.zeyalabs.ch/?p=224</guid>
		<description><![CDATA[Everything had worked just fine until my wireless router waved everyone goodbye and I had to replace it. The model of the new device was slightly different, though, but it did &#8220;understand&#8221; the settings loaded from backup configuration and &#8212; voilà, my mobile devices were back online within minutes. The only thing I adjusted in&#160;<a class="more" href="http://www.zeyalabs.ch/posts/macbook-forgetting-wireless-network/" title="read whole article">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Everything had worked just fine until my wireless router waved everyone goodbye and I had to replace it. The model of the new device was slightly different, though, but it did &#8220;understand&#8221; the settings loaded from backup configuration and &#8212; voilà, my mobile devices were back online within minutes. The only thing I adjusted in the settings was disabling the <acronym title="Service Set Identifier">SSID</acronym> broadcast.</p>
<p>An unpleasant surprise waited for me when I turned on my MacBook Pro: it said, &#8220;None of your preferred wireless networks are available.&#8221; I didn&#8217;t believe it, of course. Every other device was proving the opposite. I tried to enter the <acronym title="Service Set Identifier">SSID</acronym> and password anew&#8230; aha! It worked! Temporary memory loss, I thought. Yawn. Total shutdown and good night.</p>
<p>Next morning, however, I was greeted with the same phrase again: no wireless network found. Which made me choke on my coffee. A perspective of typing rather long and complex <acronym title="Service Set Identifier">SSID</acronym> and password every time the laptop is turned on or woken up did not exactly make me happy.</p>
<p>In the next days, I tried to fix the problem by rebooting (all over again) all involved devices, restoring the original configuration, changing the <acronym title="Service Set Identifier">SSID</acronym> and then the password, enabling/disabling the <acronym title="Service Set Identifier">SSID</acronym> broadcast, poking a finger at LEDs, swearing and, finally, &#8220;killing&#8221; the keychain file in the laptop&#8217;s system&#8230; Nada.</p>
<p>Yesterday, I finally performed a long-planned upgrade of Mac <acronym title="Operating System">OS</acronym> X from 10.5.something to Snow Leopard (10.6.latest). And guess what? That&#8217;s right, this turned out to be the cure.</p>
<pre class="brush: bash; light: true; title: ; notranslate">
$ tribaldance -v -n 100 -c &quot;:-)&quot;
</pre>
<p>I&#8217;m still trying not to breathe while opening the lid of my MacBook Pro, but it works now, every time, it does. Don&#8217;t ask me why.</p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.zeyalabs.ch%2Fposts%2Fmacbook-forgetting-wireless-network%2F&amp;title=MacBook%20Forgetting%20Wireless%20Network" id="wpa2a_8"><img src="http://www.zeyalabs.ch/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zeyalabs.ch/posts/macbook-forgetting-wireless-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attaching Guitar Strings to Machine Heads</title>
		<link>http://www.zeyalabs.ch/posts/attaching-guitar-strings/</link>
		<comments>http://www.zeyalabs.ch/posts/attaching-guitar-strings/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 17:04:40 +0000</pubDate>
		<dc:creator>Oldie</dc:creator>
				<category><![CDATA[Jukebox]]></category>
		<category><![CDATA[gear]]></category>
		<category><![CDATA[guitars]]></category>
		<category><![CDATA[howtos]]></category>

		<guid isPermaLink="false">http://www.zeyalabs.ch/?p=69</guid>
		<description><![CDATA[Guitar strings do not always want to stay in machine heads. Sometimes they slip, sometimes they snap, and they never hold tuning. If you change your strings regularly, you probably don&#8217;t have this problem, but occasional players just don&#8217;t seem to be able to keep this little trick in mind. Watch how it should be&#160;<a class="more" href="http://www.zeyalabs.ch/posts/attaching-guitar-strings/" title="read whole article">[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Guitar strings do not always want to stay in machine heads. Sometimes they slip, sometimes they snap, and they never hold tuning. If you change your strings regularly, you probably don&#8217;t have this problem, but occasional players just don&#8217;t seem to be able to keep this little trick in mind. Watch how it should be done to ensure that your strings remain in place (I didn&#8217;t make this video, just <a href="http://www.youtube.com/watch?v=M5iuAZxZtjk" target="_blank" class="extlink">found it on YouTube</a>):</p>
<p><object width="600" height="473"><param name="movie" value="http://www.youtube.com/v/M5iuAZxZtjk&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/M5iuAZxZtjk&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="473"></embed></object></p>
<p>This goes for both acoustic and electric guitars, except the part where you fix the strings on the bridge, which is different but not difficult. No tricks here, you&#8217;ll figure it out all right.</p>
<p>Just one more thing: before you fix a string on the peg, leave a slack of some three or four centimeters before you start twisting up. Otherwise, if you do it exactly as the video shows, your strings might slip.</p><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.zeyalabs.ch%2Fposts%2Fattaching-guitar-strings%2F&amp;title=Attaching%20Guitar%20Strings%20to%20Machine%20Heads" id="wpa2a_10"><img src="http://www.zeyalabs.ch/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.zeyalabs.ch/posts/attaching-guitar-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

