<?xml version="1.0"?>
<rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:blog="http://bitflux.org/doctypes/blog" xmlns:php="http://php.net/xsl" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:georss="http://www.georss.org/georss" version="2.0"><channel><title>Macends</title><link>http://www.macends.com/blog/</link><description>Mac Support / Webdesign / Give a Mac</description><generator>Flux CMS - http://www.flux-cms.org</generator><georss:point>46.95591 7.43298</georss:point><geo:lat>46.95591</geo:lat><geo:long>7.43298</geo:long><item><title>Hidden backup file clogging your laptop disk</title><link>http://www.macends.com/blog/archive/2012/03/10/hidden-backup-file-clogging-your-laptop-disk.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/435/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;You may be running out of disk space fast if you have small SSD start partition on OS X Lion if you leave MobileBackups enabled.&lt;br/&gt;
If you open Terminal and run the command "df -h" you might see the (otherwise hidden) directory .MobileBackups using up a lot of space.&lt;br/&gt;
&lt;br/&gt;
This feature is described in the &lt;a href="http://arstechnica.com/apple/reviews/2011/07/mac-os-x-10-7.ars/18"
    &gt;Ars Technica OS X Lion review&lt;/a&gt; for example. It is there so your laptop will run backups even when you're on the move with no backup disk attached.&lt;br/&gt;
&lt;br/&gt;
To disable it, run the command "tmutil disablelocal" in Terminal.&lt;br/&gt;
To enable it, use "sudo tmutil enablelocal"&lt;/p&gt;</content:encoded><dc:subject>Troubleshooting</dc:subject><dc:subject>Mac OS X</dc:subject><dc:subject>Lion</dc:subject><dc:subject>Backup</dc:subject><dc:subject>Diskspace</dc:subject><dc:creator>admin</dc:creator><dc:date>2012-03-10T18:52:19Z</dc:date></item><item><title>OS X Lion Firmware (EFI) Password Problem</title><link>http://www.macends.com/blog/archive/2011/12/11/os-x-lion-firmware-efi-password-problem.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/422/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;This MacBook (black 2 GHZ Intel Core Duo) would not accept the firmware password I just set via the Firmware Password Utility from the Recovery Partition in OS X Lion 10.7.2. &lt;br/&gt;
&lt;br/&gt;
The following steps let me turn off the firmware password protection. It only works if you haven't forgotten the password you had set. I my case this means I had used the correct password but it wasn't accepted. Seems like a bug, maybe specific to my particular (and rather old) hardware.&lt;/p&gt;
&lt;p&gt;1. Open Terminal and type diskutil list&lt;br/&gt;
2. Mount the Apple_Boot Recovery HD partition with diskutil mount disk0s3 (use the identifier you see listed)&lt;br/&gt;
3. In Terminal type: open /Volumes/Recovery\ HD/com.apple.recovery.boot/BaseSystem.dmg&lt;br/&gt;
4. In Terminal type: open /Volumes/Mac\ OS\ X\ Base\ System/Applications/Utilities/Firmware\ Password\ Utility.app&lt;br/&gt;
5. Now you can turn off firmware password - again, provided you know the password you had set&lt;/p&gt;</content:encoded><dc:subject>Troubleshooting</dc:subject><dc:subject>Mac OS X</dc:subject><dc:subject>Lion</dc:subject><dc:subject>Password</dc:subject><dc:subject>Login</dc:subject><dc:subject>Firmware</dc:subject><dc:creator>admin</dc:creator><dc:date>2011-12-11T10:38:02Z</dc:date></item><item><title>OS X encrypt directory</title><link>http://www.macends.com/blog/archive/2011/08/15/os-x-encrypt-directory.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/417/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;Create a directory, move your files into it, issue this command from terminal: &lt;br/&gt;
&lt;em&gt;hdiutil create -encryption -stdinpass -srcfolder mysecretfiles mysectretfiles.dmg&lt;/em&gt;&#xA0;&lt;/p&gt;
&lt;p&gt;Delete the unencrypted directory you created to start with.&lt;/p&gt;</content:encoded><dc:subject>Mac OS X</dc:subject><dc:subject>security</dc:subject><dc:creator>admin</dc:creator><dc:date>2011-08-15T08:24:41Z</dc:date></item><item><title>SSH Key Disable Caching</title><link>http://www.macends.com/blog/archive/2011/08/15/ssh-key-disable-caching.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/406/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;OS X seems to cache ssh-key passwords by default. This is rather useless. You can disable this with &lt;br/&gt;
&lt;em&gt;launchctl unload /System/Library/LaunchAgents/org.openbsd.ssh-agent.plist&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Source: &lt;a href="http://www.reddit.com/r/apple/comments/9fnnc/ask_rapple_how_do_i_disable_sshagent/"
    &gt;http://www.reddit.com/r/apple/comments/9fnnc/ask_rapple_how_do_i_disable_sshagent/&lt;/a&gt;&lt;em&gt;&lt;br/&gt;
&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;If you launch Keychain Access (in /Applications/Utilities/), and remove the entry for your ssh keys, you should be prompted for your password, and have the option to not save it.&lt;br/&gt;
&lt;br/&gt;
To ~remove ssh-agent you can could run..&lt;br/&gt;
&lt;br/&gt;
launchctl unload /System/Library/LaunchAgents/org.openbsd.ssh-agent.plist&lt;br/&gt;
&lt;br/&gt;
..or use http://lingon.sourceforge.net/&lt;br/&gt;
&lt;br/&gt;
Or unset the SSH_AUTH_SOCK env variable&lt;br/&gt;
&lt;br/&gt;
Or, look at the ssh-add command - ssh-add -D forgets all identities (including removing relevant entries from Keychain), ssh-agent -t 123 sets it to remember identities for 123 seconds&lt;/p&gt;</content:encoded><dc:subject>Mac OS X</dc:subject><dc:subject>ssh</dc:subject><dc:subject>server</dc:subject><dc:subject>key</dc:subject><dc:subject>terminal</dc:subject><dc:subject>security</dc:subject><dc:creator>admin</dc:creator><dc:date>2011-08-15T08:18:57Z</dc:date></item><item><title>Debian Vserver conflict with apache running on host</title><link>http://www.macends.com/blog/archive/2011/04/11/debian-vserver-conflict-with-apache-running-on-host.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/400/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;If Apache won't start in your vserver, giving this error: Address already in use: make_sock: could not bind to port:80 make sure you don't have Apache running on your host system.&lt;/p&gt;</content:encoded><dc:subject>Debian</dc:subject><dc:subject>Linux</dc:subject><dc:subject>Vserver</dc:subject><dc:creator>Kevin</dc:creator><dc:date>2011-04-11T12:39:32Z</dc:date></item><item><title>New Websites Online</title><link>http://www.macends.com/blog/archive/2011/01/20/new-websites-online.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/395/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;Two Wordpress sites are now live: &lt;a href="http://mouthwateringrecords.com"
    &gt;mouthwateringrecords.com &lt;/a&gt;&amp;amp;&lt;a href="http://stridenight.com"
    &gt; stridenight.com&lt;/a&gt;. Both based on the excellent &lt;a href="http://www.organicthemes.com/themes/structure-theme/"
    &gt;Structure Theme&lt;/a&gt; by Organic Themes.&lt;br/&gt;
&lt;br/&gt;
&lt;a href="http://stridenight.com/"
    &gt;&lt;img width="480"
     height="287"
     border="0"
     src="http://www.macends.com//files/images/blog/Screen%20shot%202011-01-20%20at%2020.34.38%20%7C%2020.%20Januar%202011.png"
     alt="stridenight.com"
    /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><dc:subject>Websites</dc:subject><dc:subject>Wordpress</dc:subject><dc:creator>Kevin</dc:creator><dc:date>2011-01-20T19:38:56Z</dc:date></item><item><title>Adding second google calendar on iPhone</title><link>http://www.macends.com/blog/archive/2011/01/11/adding-second-google-calendar-on-iphone.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/386/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;To add a second google calendar on an iPhone where you already set up your first google calendar just visit this url from the browser (safari) &lt;strong&gt;on your iphone&lt;/strong&gt;: &lt;a href="http://www.google.com/calendar/iphoneselect"
    &gt;http://www.google.com/calendar/iphoneselect&lt;/a&gt;&lt;/p&gt;</content:encoded><dc:subject>Troubleshooting</dc:subject><dc:subject>Apps &amp; Plugins</dc:subject><dc:subject>Mobile</dc:subject><dc:subject>iphone</dc:subject><dc:subject>google</dc:subject><dc:creator>Kevin</dc:creator><dc:date>2011-01-11T10:15:27Z</dc:date></item><item><title>New Website for Action Theatre Company</title><link>http://www.macends.com/blog/archive/2010/09/24/new-website-for-action-theatre-company.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/382/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;We're sponsoring our friends Doraine and Arne with a little website to support their fantastic work. Truly the funniest theatre company we know :-) Pay them a visit online, but most of all &lt;strong&gt;go see their shows&lt;/strong&gt;!&lt;a href="http://actiontheatre.ch"
    &gt; www.actiontheatre.ch&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;
&lt;iframe src="http://player.vimeo.com/video/15248370?color=ffffff"
     width="480"
     height="258"
     frameborder="0"
    /&gt;
&lt;/p&gt;</content:encoded><dc:subject>Websites</dc:subject><dc:creator>Kevin</dc:creator><dc:date>2010-09-24T14:45:07Z</dc:date></item><item><title>Syncing Address Book with Google Contacts</title><link>http://www.macends.com/blog/archive/2010/07/20/syncing-address-book-with-google-contacts.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/371/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;As crazy and esoteric it may seem, syncing your Apple AddressBook to Google really only works when your Mac is synchronized with an iPod or an iPhone. Just plugging such a device and &lt;strong&gt;syncing with iTunes triggers the sync to Google&lt;/strong&gt;. You can also edit a file on your Mac instead to get the same result, as describe on &lt;a href="http://lifehacker.com/393855/enable-google-contact-sync-without-an-iphoneipod-touch"
    &gt;Lifehacker.com&lt;/a&gt;: &lt;br/&gt;
Change  the "Family ID." value to &lt;code&gt;10001&lt;/code&gt; in ~/Library/Preferences/com.apple.iPod.plist&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Thank you &lt;/em&gt;&lt;a href="http://lifehacker.com/people/Gina/posts/"
    &gt;&lt;em&gt;Gina Trappani&lt;/em&gt;&lt;/a&gt;&lt;em&gt; and Josua Ferris!&lt;/em&gt;&lt;/p&gt;</content:encoded><dc:subject>Troubleshooting</dc:subject><dc:subject>Mac OS X</dc:subject><dc:subject>google</dc:subject><dc:subject>addressbook</dc:subject><dc:creator>Kevin</dc:creator><dc:date>2010-07-20T15:28:50Z</dc:date></item><item><title>Using Ecto 3 for blogging with Flux CMS</title><link>http://www.macends.com/blog/archive/2010/05/30/using-ecto-3-for-blogging-with-flux-cms.html</link><guid isPermaLink="false">http://www.macends.com/blog/archive/id/363/</guid><content:encoded xmlns="http://www.w3.org/1999/xhtml">&lt;p&gt;As the blog plugin of &lt;a href="http://flux-cms.org"
     title="flux-cms website"
    &gt;Flux CMS&lt;/a&gt; supports the MT Weblog API, you may want to use a desktop client for blogging.&lt;/p&gt;
&lt;p&gt;The &lt;b&gt;access point URL&lt;/b&gt; is &lt;i&gt;http://yourdomain.com/blog/xmlrpc.xml&lt;/i&gt; (replacing "yourdomain.com" with the url of your Flux CMS...)&lt;/p&gt;
&lt;p&gt;&lt;a href="http://illuminex.com/mac/ecto/"
     title="ecto website"
    &gt;ECTO&lt;/a&gt; is a great desktop blogging client, which utilises a lot of the potential of that API. One of the features is a preview pane, where you can immediatly see, how your post will look like on the webpage.&lt;/p&gt;
&lt;p&gt;To make it really look like your page, you have to adjust the template. Go to &lt;b&gt;"Settings" -&amp;gt; "Editing" -&amp;gt; "Viewer"&lt;/b&gt; and then put &lt;a href="http://macends.com/files/ecto-3-viewer.txt"
     title="example html code"
    &gt;this html&lt;/a&gt; into it. &lt;b&gt;Adjust&lt;/b&gt; the link to your &lt;b&gt;CSS&lt;/b&gt; accordingly.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Image upload:&lt;/b&gt; It makes sense to keep some sort of order with the files you upload to your server. I recommend &lt;b&gt;adjusting the path&lt;/b&gt; in image upload to &lt;b&gt;/files/images/blog/&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Also take a look at your scaling and thumbnail settings. A typical width is 480px.&lt;br/&gt;
&lt;a href="http://macends.com/en/blog/archive/2010/05/30/using-ecto-3-for-blogging-with-flux-cms.html#post_content_extended"
     title="expand whole post"
    &gt;Read whole post for screenshots.&lt;/a&gt;&lt;/p&gt;
&lt;br/&gt;&lt;br/&gt;
        &lt;a href="http://www.macends.com/blog/archive/2010/05/30/using-ecto-3-for-blogging-with-flux-cms.html#post_content_extended"&gt;
            Read whole post&lt;/a&gt;</content:encoded><dc:subject>Apps &amp; Plugins</dc:subject><dc:subject>Blog</dc:subject><dc:subject>Ecto</dc:subject><dc:subject>FluxCMS</dc:subject><dc:creator>Kevin</dc:creator><dc:date>2010-05-30T13:25:50Z</dc:date></item></channel></rss>

