<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Stories of a move (from WindowsXP to Mac)</title>
	<atom:link href="http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 14:40:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Ivan Herman</title>
		<link>http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/#comment-5764</link>
		<dc:creator><![CDATA[Ivan Herman]]></dc:creator>
		<pubDate>Fri, 25 Dec 2009 05:24:56 +0000</pubDate>
		<guid isPermaLink="false">http://ivan-herman.name/?p=478#comment-5764</guid>
		<description><![CDATA[Merci Karl,

I have tried Python already with some of my programs and I did not really have a problem (yet:-). Using PYTHONPATH to set my extra libraries worked well, and that is it. B.t.w., Jack Jansen, my colleague at CWI who is sitting in the next office to mine, is one of the maintainers of the Mac Python, so I am sure to get good help if needed:-)

I have not thought of the virtual host trick. When I do Web site development and testing locally I simply use localhost and I usually use relative URI-s in my files. That has worked well up until now...

I already realized the missing wget, for example, I did not think of compiling it for myself. Somebody advised me to use flink to get all kinds of missing tools, but that one does not have a Snow Leopard distribution yet and I am kind of lazy to start compiling it... I will take all this as it comes!

Merci encore:-)

Ivan]]></description>
		<content:encoded><![CDATA[<p>Merci Karl,</p>
<p>I have tried Python already with some of my programs and I did not really have a problem (yet:-). Using PYTHONPATH to set my extra libraries worked well, and that is it. B.t.w., Jack Jansen, my colleague at CWI who is sitting in the next office to mine, is one of the maintainers of the Mac Python, so I am sure to get good help if needed:-)</p>
<p>I have not thought of the virtual host trick. When I do Web site development and testing locally I simply use localhost and I usually use relative URI-s in my files. That has worked well up until now&#8230;</p>
<p>I already realized the missing wget, for example, I did not think of compiling it for myself. Somebody advised me to use flink to get all kinds of missing tools, but that one does not have a Snow Leopard distribution yet and I am kind of lazy to start compiling it&#8230; I will take all this as it comes!</p>
<p>Merci encore:-)</p>
<p>Ivan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karl</title>
		<link>http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/#comment-5761</link>
		<dc:creator><![CDATA[karl]]></dc:creator>
		<pubDate>Thu, 24 Dec 2009 20:30:59 +0000</pubDate>
		<guid isPermaLink="false">http://ivan-herman.name/?p=478#comment-5761</guid>
		<description><![CDATA[Developers tools on the DVD :) You should modify the article if someone is using it as a reference that will save a few megs of bandwidth. ;)

When you can&#039;t find one of your favorite file or program. Open the Terminal (shell window), and type &quot;locate …&quot; for example locate httpd.conf ;)

You can create alias in your bashrc for the open command if you wish too. That will make it shorter to type. As a text editor, I also recommend TextMate which is quite practical. There is a learning curve but productivity improves after a while.

if you are used to XChat, there is also Aqua XChat which is working perfectly for me for the last 8 years

Something you might hit soon. GNU tools are not installed on the machine because of the license. But you can download them from GNU web site and it will compile smoothly.

The preinstalled equivalent of wget is curl. Do man curl.

The date bash command doesn&#039;t work like the gnu one.

I know you are a python developer and you might have surprises at the start. The logic of directories is not the same at all. Read carefully before.

You can create virtual domains for your apache so you can test your pages like on a site. Let say by chance, you would like 

http://w3c.test.site/

In /private/etc/apache2/extra/httpd-vhosts.conf 


[VirtualHost *:80]

    DocumentRoot &quot;/Users/ivan/Sites/w3.org&quot;

    ServerName w3c.test.site

[/VirtualHost]

and in /etc/hosts

127.0.0.1   w3c.test.site

then 
    sudo apachectl graceful 

:)
Hope it helps.]]></description>
		<content:encoded><![CDATA[<p>Developers tools on the DVD <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You should modify the article if someone is using it as a reference that will save a few megs of bandwidth. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>When you can&#8217;t find one of your favorite file or program. Open the Terminal (shell window), and type &#8220;locate …&#8221; for example locate httpd.conf <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You can create alias in your bashrc for the open command if you wish too. That will make it shorter to type. As a text editor, I also recommend TextMate which is quite practical. There is a learning curve but productivity improves after a while.</p>
<p>if you are used to XChat, there is also Aqua XChat which is working perfectly for me for the last 8 years</p>
<p>Something you might hit soon. GNU tools are not installed on the machine because of the license. But you can download them from GNU web site and it will compile smoothly.</p>
<p>The preinstalled equivalent of wget is curl. Do man curl.</p>
<p>The date bash command doesn&#8217;t work like the gnu one.</p>
<p>I know you are a python developer and you might have surprises at the start. The logic of directories is not the same at all. Read carefully before.</p>
<p>You can create virtual domains for your apache so you can test your pages like on a site. Let say by chance, you would like </p>
<p><a href="http://w3c.test.site/" rel="nofollow">http://w3c.test.site/</a></p>
<p>In /private/etc/apache2/extra/httpd-vhosts.conf </p>
<p>[VirtualHost *:80]</p>
<p>    DocumentRoot &#8220;/Users/ivan/Sites/w3.org&#8221;</p>
<p>    ServerName w3c.test.site</p>
<p>[/VirtualHost]</p>
<p>and in /etc/hosts</p>
<p>127.0.0.1   w3c.test.site</p>
<p>then<br />
    sudo apachectl graceful<br />
 <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Hope it helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan Herman</title>
		<link>http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/#comment-5760</link>
		<dc:creator><![CDATA[Ivan Herman]]></dc:creator>
		<pubDate>Wed, 23 Dec 2009 08:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://ivan-herman.name/?p=478#comment-5760</guid>
		<description><![CDATA[Hi Daniel,

I thought of that, but it was not clear, and then the jungle effect prevailed:-) The fact is that I bought the machine last week, with Snow Leopard installed (and some updates ran at first startup), it was not clear that the two CD-s that came with the machine would/could be used for something like that, too. I am not sure what the &#039;applications install DVD&#039; contains, ie, whether it contains anything else that is not already installed...

Thanks!

Ivan]]></description>
		<content:encoded><![CDATA[<p>Hi Daniel,</p>
<p>I thought of that, but it was not clear, and then the jungle effect prevailed:-) The fact is that I bought the machine last week, with Snow Leopard installed (and some updates ran at first startup), it was not clear that the two CD-s that came with the machine would/could be used for something like that, too. I am not sure what the &#8216;applications install DVD&#8217; contains, ie, whether it contains anything else that is not already installed&#8230;</p>
<p>Thanks!</p>
<p>Ivan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stories of a move (from WindowsXP to Mac) « Ivan&#39;s private site</title>
		<link>http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/#comment-5759</link>
		<dc:creator><![CDATA[Stories of a move (from WindowsXP to Mac) « Ivan&#39;s private site]]></dc:creator>
		<pubDate>Wed, 23 Dec 2009 01:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://ivan-herman.name/?p=478#comment-5759</guid>
		<description><![CDATA[[...] the original post here: Stories of a move (from WindowsXP to Mac) « Ivan&#039;s private site      Рубрика: Разные рубрики &#124;  Метки: a-computer-person, are-now, [...]]]></description>
		<content:encoded><![CDATA[<p>[...] the original post here: Stories of a move (from WindowsXP to Mac) « Ivan&#39;s private site      Рубрика: Разные рубрики |  Метки: a-computer-person, are-now, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Grace</title>
		<link>http://ivan-herman.name/2009/12/22/stories-of-a-move-from-windowsxp-to-mac/#comment-5758</link>
		<dc:creator><![CDATA[Daniel Grace]]></dc:creator>
		<pubDate>Tue, 22 Dec 2009 22:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://ivan-herman.name/?p=478#comment-5758</guid>
		<description><![CDATA[The only thing on this list that you&#039;re somewhat mistaken on is Xcode. You don&#039;t have to install it from the site, it&#039;s on the install DVD. Installing from the DVD also means that you don&#039;t have to register as a developer, though it&#039;s possible that you will then have to do a software update to get the latest version. Your way definitely works, however.]]></description>
		<content:encoded><![CDATA[<p>The only thing on this list that you&#8217;re somewhat mistaken on is Xcode. You don&#8217;t have to install it from the site, it&#8217;s on the install DVD. Installing from the DVD also means that you don&#8217;t have to register as a developer, though it&#8217;s possible that you will then have to do a software update to get the latest version. Your way definitely works, however.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

