<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://andreys.info" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>mac</title>
 <link>http://andreys.info/blog/tags/mac</link>
 <description>The taxonomy view with a depth of 0.</description>
 <language>en</language>
<item>
 <title>Emergency fix OSX permissions (the rookie way)</title>
 <link>http://andreys.info/blog/2008-10-02/emergency-fix-osx-permissions-the-rookie-way</link>
 <description>&lt;p&gt;&lt;img src=&quot;/files/hfs-permissions-fat.jpg&quot; alt=&quot;HFS permissions going mad&quot; class=&quot;imgleft&quot; /&gt;I&#039;ve ruined permissions at my home backup drive (it was 75% my fault to be honest). I tried to fix it terminal/unix way but it ended up with something even worser. Broken resource forks, fancy non existing users and permissions... (OMG, my lovely icons collection gone in bits and pieces). Then I was looking for easy solution to get back those zillion files live and proper. And you know what?&lt;/p&gt;
&lt;p&gt;The easiest way is to copy your files to FAT32 dive if you have any handy. What will happen: all your permissions will null comparing to HFS+ (but keeping icons, forks, bundles etc intact though). &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://andreys.info/blog/2008-10-02/emergency-fix-osx-permissions-the-rookie-way&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://andreys.info/blog/2008-10-02/emergency-fix-osx-permissions-the-rookie-way#comments</comments>
 <category domain="http://andreys.info/blog/tags/mac">mac</category>
 <category domain="http://andreys.info/blog/tags/troubleshooting">troubleshooting</category>
 <pubDate>Thu, 02 Oct 2008 21:55:38 +0200</pubDate>
 <dc:creator>Andrey</dc:creator>
 <guid isPermaLink="false">351 at http://andreys.info</guid>
</item>
<item>
 <title>SE P1i iSync synchronization tips</title>
 <link>http://andreys.info/blog/2008-07-19/se-p1i-isync-synchronization-tips</link>
 <description>&lt;p&gt;&lt;img src=&quot;/files/se-p1i.jpg&quot; alt=&quot;SE P1i and Mac&quot; class=&quot;imgleft&quot; /&gt;I&#039;ve been reinstalling my P1i again (experimenting too much...). Next step is to sync it with my Mac. But there is a glitch with Sony&#039;s iSync plugin: connection lost with the phone when syncing for a first time. I think the problem is with amount of contacts you have in your Address Book. I have over 500 and it never worked for me straight away. &lt;/p&gt;
&lt;p&gt;A small hint to deal with the situation: backup your Address Book (File -&gt; Export -&gt; Address Book Archive) then delete all the contacts in your Address Book (don&#039;t be scared, you have a backup). Sync your P1i again with empty Address Book. The process should go fine now. Right after that restore your Address Book archive (File -&gt; Import -&gt; Address Book Archive) and sync devices again. Here you go: all contacts transfered smoothly.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://andreys.info/blog/2008-07-19/se-p1i-isync-synchronization-tips&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://andreys.info/blog/2008-07-19/se-p1i-isync-synchronization-tips#comments</comments>
 <category domain="http://andreys.info/blog/tags/mac">mac</category>
 <category domain="http://andreys.info/blog/tags/mobile">mobile</category>
 <pubDate>Sat, 19 Jul 2008 18:44:34 +0200</pubDate>
 <dc:creator>Andrey</dc:creator>
 <guid isPermaLink="false">340 at http://andreys.info</guid>
</item>
<item>
 <title>Delete .svn folders on your Mac</title>
 <link>http://andreys.info/blog/2008-03-15/delete-svn-folders-on-your-mac</link>
 <description>&lt;p&gt;Sometimes you need to get rid of .svn hidden folders on your Mac. In my case it was about resyncing my local working copy with client subversion repository. Everything was broken at both ends.&lt;/p&gt;
&lt;p&gt;A couple of terminal commands to get rid of unneeded svn tracks: &lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;cd /some/of/your/folders/&lt;br /&gt;rm -rf `find . -type d -name .svn`&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
It will delete any .svn folders under your current. &lt;/p&gt;
&lt;p&gt;For lazy typists: don&#039;t forget that you can drag and drop folder from finder to terminal to populate path.&lt;/p&gt;
</description>
 <comments>http://andreys.info/blog/2008-03-15/delete-svn-folders-on-your-mac#comments</comments>
 <category domain="http://andreys.info/blog/tags/mac">mac</category>
 <category domain="http://andreys.info/blog/tags/subversion">subversion</category>
 <category domain="http://andreys.info/blog/tags/terminal">terminal</category>
 <pubDate>Sat, 15 Mar 2008 13:50:52 +0100</pubDate>
 <dc:creator>Andrey</dc:creator>
 <guid isPermaLink="false">278 at http://andreys.info</guid>
</item>
<item>
 <title>Configuring terminal to work with MAMP mysql on Leopard</title>
 <link>http://andreys.info/blog/2007-11-07/configuring-terminal-to-work-with-mamp-mysql-on-leopard</link>
 <description>&lt;p&gt;I&#039;ve decided to try &lt;a href=&quot;http://mamp.info&quot; target=&quot;_blank&quot;&gt;MAMP&lt;/a&gt; on new Mac OS X 10.5. Mostly because PHP bundled with Leopard doesn&#039;t have GD library (otherwise it has quite cool set of modules). The other reason that is better &lt;a href=&quot;http://www.entropy.ch/software/macosx/php/&quot; target=&quot;_blank&quot;&gt;Marc Liyanage&#039;s PHP installer&lt;/a&gt; is not yet ready for Leopard.&lt;/p&gt;
&lt;p&gt;But after backing up all my MySQL databases (around 200Mb dump) it turned out that you can&#039;t acces MAMP&#039;s mysql via terminal to restore it (or I was something terribly missing from FAQs).&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://andreys.info/blog/2007-11-07/configuring-terminal-to-work-with-mamp-mysql-on-leopard&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://andreys.info/blog/2007-11-07/configuring-terminal-to-work-with-mamp-mysql-on-leopard#comments</comments>
 <category domain="http://andreys.info/blog/tags/code">code</category>
 <category domain="http://andreys.info/blog/tags/mac">mac</category>
 <category domain="http://andreys.info/blog/tags/mysql">mysql</category>
 <category domain="http://andreys.info/blog/tags/terminal">terminal</category>
 <pubDate>Wed, 07 Nov 2007 19:55:44 +0100</pubDate>
 <dc:creator>Andrey</dc:creator>
 <guid isPermaLink="false">273 at http://andreys.info</guid>
</item>
</channel>
</rss>
