<?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>byteco.de &#187; Apple</title>
	<atom:link href="http://byteco.de/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://byteco.de</link>
	<description>In a world of 1s and 0s...are you a zero, or The One?</description>
	<lastBuildDate>Sun, 05 Feb 2012 05:44:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Converting Mailman/Pipermail text archive to mbox</title>
		<link>http://byteco.de/2010/01/14/converting-mailmanpipermail-text-archive-to-mbox/</link>
		<comments>http://byteco.de/2010/01/14/converting-mailmanpipermail-text-archive-to-mbox/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 04:40:12 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[mailman]]></category>
		<category><![CDATA[mbox]]></category>

		<guid isPermaLink="false">http://byteco.de/?p=855</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p id="text_0">I wanted to import mailing list archive in my Apple Mail.app which support &#8220;Files in mbox format&#8221;. Found following python script by <a href="http://lists2.ssc.com/pipermail/linux-list/2006-February/026220.html">Paul</a> which converts text archive to mbox.</p>
<p><span id="more-855"></span></p>
<pre class="brush: python">
#!/usr/bin/env python
&quot;&quot;&quot;
to-mbox.py:  Insert line feeds to create mbox format

Usage:   ./to-mbox.py  infile outfile
&quot;&quot;&quot;
import sys

if len(sys.argv) != 3:
    print __doc__
    sys.exit()

out = open(sys.argv[2],&quot;w&quot;)

start = True
for line in open(sys.argv[1]):
    if line.find(&quot;From &quot;) == 0:
        if start:
            start = False
        else:
            out.write(&quot;\n&quot;)
        line = line.replace(&quot; at &quot;, &quot;@&quot;)
    out.write(line)

out.close()
</pre>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2010/01/14/converting-mailmanpipermail-text-archive-to-mbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Data Loss Bug in Cocoatech&#8217;s Path Finder 5.5.6</title>
		<link>http://byteco.de/2009/12/24/bug-in-cocoatechs-path-finder-5-5-6/</link>
		<comments>http://byteco.de/2009/12/24/bug-in-cocoatechs-path-finder-5-5-6/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:49:12 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[cocoatech]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[path finder]]></category>

		<guid isPermaLink="false">http://byteco.de/2009/12/24/bug-in-cocoatechs-path-finder-5-5-6/</guid>
		<description><![CDATA[Cocoatech&#8217;s Path Finder is a great application. I am trying it out for some time now. I have noticed following bug couple of times. If you have a file of more than 4gb stored on file system of type &#8220;Mac OS Extended&#8221; , and if you try to move it to a FAT32 partition, it [...]]]></description>
			<content:encoded><![CDATA[<p>Cocoatech&#8217;s Path Finder is a great application. I am trying it out for some time now. I have noticed following bug couple of times.</p>
<p>If you have a file of more than 4gb stored on file system of type &#8220;Mac OS Extended&#8221; , and if you try to move it to a FAT32 partition, it fails.</p>
<p>Which is fine since max file size on FAT32 file system is 4gb. What is frustrating is that Path Finder doesn&#8217;t tell you this that the file move operation is failed. On top of it, it will remove file stored on &#8220;Mac OS Extended&#8221; file system, thinking the file move operation was successful.</p>
<p>Uhhh&#8230;.big thumbs down&#8230; I wish they fix this problem&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2009/12/24/bug-in-cocoatechs-path-finder-5-5-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed Up SSH Connections</title>
		<link>http://byteco.de/2009/12/09/speed-up-ssh-connections/</link>
		<comments>http://byteco.de/2009/12/09/speed-up-ssh-connections/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 12:40:46 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[controlmaster]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://byteco.de/2009/12/09/speed-up-ssh-connections/</guid>
		<description><![CDATA[If you are working with a remote server using SSH, which requires frequent connections you might have noticed how it takes a lot of time to establish a connection. You also have to enter password every time you connect. You can speed up this processes by configuring ssh to reuse connection to the same server [...]]]></description>
			<content:encoded><![CDATA[<p style="clear: both">If you are working with a remote server using SSH, which requires frequent connections you might have noticed how it takes a lot of time to establish a connection. You also have to enter password every time you connect.</p>
<p style="clear: both">You can speed up this processes by configuring ssh to reuse connection to the same server if its has a connection already established. </p>
<p style="clear: both">This is a feature of OpenSSH, which I have tested on Snow Leopard and Ubuntu. </p>
<p style="clear: both">As per manual,</p>
<blockquote style="clear: both"><p>ControlMaster<br />Enables the sharing of multiple sessions over a single network connection. When set to &#8220;yes&#8221;, ssh(1) will listen for connections on a control socket specified using the ControlPath argument. Additional sessions can connect to this socket using the same ControlPath with ControlMaster set to &#8220;no&#8221; (the default). These sessions will try to reuse the master instance&#8217;s network connection rather than initiating new ones, but will fall back to connecting normally if the control socket does not exist, or is not listening.</p>
</blockquote>
<p style="clear: both">In order to configure, create or edit <strong>~/.ssh/config</strong> file and add following lines -</p>
<blockquote style="clear: both"><p>Host *<br /> ControlMaster auto<br /> ControlPath /tmp/%r@%h:%p</p>
</blockquote>
<p style="clear: both">In order to test above, you can use <strong>-v</strong> while using ssh command. This will print debug information message while establishing a connection. While using ControlMaster you will notice that the there are lesser messages.</p>
<blockquote style="clear: both"><p>debug1: auto-mux: Trying existing master</p>
</blockquote>
<p style="clear: both">If you don&#8217;t want to reuse existing connection you can use ssh with <strong> -S none</strong> which will create a new connection.</p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2009/12/09/speed-up-ssh-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Successful Installation of Snow Leopard on Dell D630</title>
		<link>http://byteco.de/2009/12/06/successful-installation-of-snow-leopard-on-dell-d630/</link>
		<comments>http://byteco.de/2009/12/06/successful-installation-of-snow-leopard-on-dell-d630/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 06:24:30 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[d630]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[hackintosh]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[osx86]]></category>
		<category><![CDATA[snow]]></category>

		<guid isPermaLink="false">http://byteco.de/?p=818</guid>
		<description><![CDATA[(Disclaimer: The following instructions/attachments potentially violates Apple’s End User License Agreement for Mac OS X. Please ensure you own a copy of Mac OS X Snow Leopard if you wish to follow the procedure.) Thanks mialemat for excellent guide. Visitors please refer http://www.megaupload.com/?d=E3O897IL]]></description>
			<content:encoded><![CDATA[<p>(Disclaimer: The following instructions/attachments potentially violates Apple’s End User License Agreement for Mac OS X. Please ensure you own a copy of Mac OS X Snow Leopard if you wish to follow the procedure.)</p>
<p>Thanks mialemat for excellent guide.</p>
<p>Visitors please refer http://www.megaupload.com/?d=E3O897IL</p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2009/12/06/successful-installation-of-snow-leopard-on-dell-d630/feed/</wfw:commentRss>
		<slash:comments>112</slash:comments>
		</item>
		<item>
		<title>My tryst with OSX86 on Dell Latitude D630</title>
		<link>http://byteco.de/2009/08/05/my-tryst-with-osx86-on-dell-latitude-d630/</link>
		<comments>http://byteco.de/2009/08/05/my-tryst-with-osx86-on-dell-latitude-d630/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 04:49:56 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[d630]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[osx86]]></category>

		<guid isPermaLink="false">http://byteco.de/?p=666</guid>
		<description><![CDATA[hmm&#8230;. Tried to setup OS X on my Dell Latitude D630 and finally gave up. I don&#8217;t think its possible to have a working OS X on D630. I had tried all three DVD&#8217;s which are available. iDeneb v1.5.1 OSX10.5.7 (UPDATED VERSION) (Intel PC AMD PC) &#8211; This seemed most promising, being latest &#8230; blah [...]]]></description>
			<content:encoded><![CDATA[<p>hmm&#8230;.</p>
<p>Tried to setup OS X on my Dell Latitude D630 and finally gave up. I don&#8217;t think its possible to have a working OS X on D630.</p>
<p>I had tried all three DVD&#8217;s which are available.</p>
<ol>
<li>iDeneb v1.5.1 OSX10.5.7 (UPDATED VERSION) (Intel PC AMD PC) &#8211; This seemed most promising, being latest &#8230; blah blah&#8230; Didn&#8217;t worked.</li>
<li>Kalyway 10.5.2 DVD Intel_Amd (sse2/sse3) EFI V8 &#8211; All praised this one. Didn&#8217;t worked.</li>
<li>IATKOS V7 10.5.7 &#8211; Didn&#8217;t worked.</li>
</ol>
<p>I always ended up with</p>
<blockquote><p>IOAPIC: Version 0&#215;20 Vectors 0:23</p></blockquote>
<p>I  tried to boot from external USB drives&#8230;same error. First restoring the iso&#8217;s on the external drive didn&#8217;t boot, partition type MBR tried using Disk Utility.</p>
<p>Had to use OSX86Tools_1.0.150 and Chameleon-1.0.11-installer to make those USB&#8217;s bootable.</p>
<p>Burned iDeneb and Kalyway on DVD&#8230; didn&#8217;t worked&#8230; booted without problem though unlike USB drive.</p>
<p>At the Darwin boot prompt entered options, -v -k -f cpus=2 etc etc still didn&#8217;t worked.</p>
<p>Disables multi-core in bios&#8230; change to AHCI from ATA&#8230;. didn&#8217;t worked.</p>
<p>Finally&#8230;. spending over two days&#8230;. my tryst with OSX86 on my Dell D630 is over.</p>
<p><strong>Update</strong>: <a href="http://byteco.de/2009/12/06/successful-installation-of-snow-leopard-on-dell-d630/">I was able to install Snow Leopard on my Dell D630</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2009/08/05/my-tryst-with-osx86-on-dell-latitude-d630/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Learning .Net and C# on Mac OS X</title>
		<link>http://byteco.de/2009/01/10/learning-net-and-c/</link>
		<comments>http://byteco.de/2009/01/10/learning-net-and-c/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 14:53:16 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://byteco.de/?p=486</guid>
		<description><![CDATA[I have been using Java for a while now, few recent instances got me interested in understanding .Net and C#.



I am using mac and decided to try out <a href="http://mono-project.com/Main_Page">mono 2.0</a> which provides .Net development platform for OS X.

]]></description>
			<content:encoded><![CDATA[<p>I have been using Java for a while now, few recent instances got me interested in understanding .Net and C#.<br />
I am using mac and decided to try out <a href="http://mono-project.com/Main_Page">mono 2.0</a> which provides .Net development platform for OS X.<br />
It also has a excellent C# and ASP.NET IDE, called <a href="http://monodevelop.com/">MonoDevelop</a>. The IDE does look familiar to the Visual Studio.Net <img src='http://byteco.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2009/01/10/learning-net-and-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invalid content in Journal</title>
		<link>http://byteco.de/2008/12/29/invalid-content-in-journal/</link>
		<comments>http://byteco.de/2008/12/29/invalid-content-in-journal/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 07:33:33 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://shivprasad.wordpress.com/2008/12/29/invalid-content-in-journal/</guid>
		<description><![CDATA[One of my macbook pro&#8217;s drive was not mounted. Using Disk Utility, i ran Repair Disk, which gave me error &#8220;Invalid content in Journal&#8221;. From discussions.apple.com and from macfixit &#8211; #diskutil list This will list the volumes on the drive, and give you their identifiers. Locate the drive&#8217;s volume name, and get the identifier for [...]]]></description>
			<content:encoded><![CDATA[<p>One of my macbook pro&#8217;s drive was not mounted. Using Disk Utility, i ran Repair Disk, which gave me error &#8220;Invalid content in Journal&#8221;.</p>
<p>From <a href="http://discussions.apple.com/thread.jspa?threadID=1404087" target="_blank">discussions.apple.com</a> and from <a href="http://www.macfixit.com/article.php?story=20080627103757208">macfixit</a> &#8211;</p>
<blockquote><p>#diskutil list</p>
<p>This will list the volumes on the drive, and give you their identifiers. Locate the drive&#8217;s volume name, and get the identifier for that drive, and then run the following command to remove the journal on the device:</p>
<p>#/System/Library/Filesystems/hfs.fs/hfs.util -N /dev/IDENTIFIER</p>
<p>NOTE: The &#8220;IDENTIFIER&#8221; should be something like &#8220;disk0s3&#8243;</p>
</blockquote>
<p>I again ran Repair Disk from Disk Utility and the drive was mounted&#8230; voila.. saved me a day&#8230;</p>
<p>Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/apple" rel="tag">apple</a>, <a class="performancingtags" href="http://technorati.com/tag/disk" rel="tag">disk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2008/12/29/invalid-content-in-journal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Graphic License Cards</title>
		<link>http://byteco.de/2007/04/09/graphic-license-cards/</link>
		<comments>http://byteco.de/2007/04/09/graphic-license-cards/#comments</comments>
		<pubDate>Mon, 09 Apr 2007 19:25:55 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://shivprasad.wordpress.com/2007/04/09/graphic-license-cards/</guid>
		<description><![CDATA[License keys don&#8217;t need to be boring text strings. All the data contained within the license key can be kept in a beautiful image, providing the following benefits: First of all &#8212; starting from the very beginning, Mac has always been more about graphics than text. Using graphics allows you to represent the information the [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://agilewebsolutions.com/images/SampleUserLicense.jpg" alt="License Image" /></p>
<p>License keys don&#8217;t need to be boring text strings. All the data<br />
contained within the license key can be kept in a beautiful image,<br />
providing the following benefits:</p>
<ol>
<li>
<p>First of all &#8212; starting from the very beginning, Mac has always<br />
been more about graphics than text. Using graphics allows you to<br />
represent the information the way you want. An image is more tangible<br />
that a hexadecimal sequence of seemingly random characters.</p>
</li>
<li>
<p>Drag-and-drop defines the Mac. We do not want people trying to<br />
type the license key by hand; images can be dragged and dropped with<br />
ease.</p>
</li>
<li>
<p>Since the license information is hidden in the image file,<br />
developers can stuff as much information as they want into it. No<br />
longer will developers need to avoid adding something to the generated<br />
license because of space constraints.</p>
</li>
<li>
<p>The license cards contain the user&#8217;s personal information, so they will be less likely to publish it on the Internet.</p>
</li>
<li>
<p>Software is intangible, and this is especially true for products<br />
purchased online without a shrink-wrapped box. The sequence seemingly<br />
random characters does not give you a feeling o that you got something<br />
real in return. This license card is a close as it gets:</p>
</li>
</ol>
<p><a href="http://1passwd.com/">Visit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2007/04/09/graphic-license-cards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSX on AppleTV</title>
		<link>http://byteco.de/2007/04/06/osx-on-appletv/</link>
		<comments>http://byteco.de/2007/04/06/osx-on-appletv/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 23:34:44 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://shivprasad.wordpress.com/2007/04/06/osx-on-appletv/</guid>
		<description><![CDATA[Well the breakthrough is done, OSX runs on AppleTV! Now we got our low budget mac we ever wanted. Infos on the install can be found at www.AppleTVHacks.net , the new special ATV kernel was posted to www.hackint0sh.org/forum.]]></description>
			<content:encoded><![CDATA[<p>Well the breakthrough is done, OSX runs on AppleTV! Now we got our<br />
low budget mac we ever wanted. Infos on the install can be found at <a href="http://www.appletvhacks.net/">www.AppleTVHacks.net</a> , the new special ATV kernel was posted to <a href="http://www.hackint0sh.org/forum">www.hackint0sh.org/forum</a>.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2007/04/06/osx-on-appletv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple TV vs. Mac mini</title>
		<link>http://byteco.de/2007/01/17/apple-tv-vs-mac-mini/</link>
		<comments>http://byteco.de/2007/01/17/apple-tv-vs-mac-mini/#comments</comments>
		<pubDate>Wed, 17 Jan 2007 10:16:32 +0000</pubDate>
		<dc:creator>shiv</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://shivprasad.wordpress.com/2007/01/17/apple-tv-vs-mac-mini/</guid>
		<description><![CDATA[The Apple Blog has written up a great side-by-side comparison of the Mac Mini and the Apple TV. Visit]]></description>
			<content:encoded><![CDATA[<p>
<div align="center"><img alt="Apple TV vs. Mac mini" src="http://www.theappleblog.com/wp-content/uploads/atv_vs_mm.png" /></div>
<p>The Apple Blog has written up a great side-by-side comparison of the <a href="http://theappleblog.com/2007/01/16/apple-tv-vs-mac-mini-which-one-is-right-for-you/">Mac<br />
Mini and the Apple TV</a>.</p>
<p><a href="http://theappleblog.com/2007/01/16/apple-tv-vs-mac-mini-which-one-is-right-for-you/">Visit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://byteco.de/2007/01/17/apple-tv-vs-mac-mini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

