<?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>Webmaster-Source &#187; Mac</title>
	<atom:link href="https://www.webmaster-source.com/tag/mac/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>4 Useful cURL Tricks</title>
		<link>https://www.webmaster-source.com/2012/12/26/4-useful-curl-tricks/</link>
		<comments>https://www.webmaster-source.com/2012/12/26/4-useful-curl-tricks/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 11:28:09 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[cURL]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4927</guid>
		<description><![CDATA[cURL is pretty much the universal go-to tool for testing HTTP responses from the command line. If you&#8217;re not already familiar with it, here are a few handy things you can use it for. Checking Headers You can use cURL to see the headers sent in a request. I use this all the time to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://curl.haxx.se/">cURL</a> is pretty much the universal go-to tool for testing HTTP responses from the command line. If you&#8217;re not already familiar with it, here are a few handy things you can use it for.</p>
<h3>Checking Headers</h3>
<p>You can use cURL to see the headers sent in a request. I use this all the time to see if the headers I&#8217;m trying to send in a script are working right.</p>
<pre class="brush: bash; title: ; notranslate">
$ curl -I http://www.google.com
</pre>
<pre class="brush: bash; title: ; notranslate">
HTTP/1.1 200 OK
Date: Thu, 06 Dec 2012 02:45:58 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=ISO-8859-1
(...)
</pre>
<h3>Sending POST Requests</h3>
<p>I was working on a project recently that involved receiving POST requests from a client script running on another server. Since there was no convenient HTML form to use to repeatedly test changes made to the API, I ended up using cURL. Sending POST data is a simple matter of passing an argument that looks something like a query string.</p>
<pre class="brush: bash; title: ; notranslate">
curl http://example.org/url-to-recieve-post-request -d &quot;name=Gandalf&amp;type=wizard&quot;;
</pre>
<p><span id="more-4927"></span></p>
<pre></pre>
<h3>Spoofing User Agents</h3>
<p>You can edit the user agent sent along with the request, which is another thing I&#8217;ve found useful in testing.</p>
<pre class="brush: bash; title: ; notranslate">
curl http://example.org -d &quot;name=Gandalf&amp;type=wizard&quot; --user-agent &quot;WordPress&quot;
</pre>
<h3>Downloading Files</h3>
<p>While my first instinct is usually to use <code>wget</code> to quickly snag a remote file, that particular package isn&#8217;t installed on every system. I don&#8217;t believe OS X includes it by default (though that&#8217;s nothing <a href="http://mxcl.github.com/homebrew/">Homebrew</a> can&#8217;t take care of), for example. cURL can also be used to quickly download and save a remote URL to your current directory.</p>
<pre class="brush: bash; title: ; notranslate">
curl -O http://wordpress.org/latest.zip
</pre>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/12/26/4-useful-curl-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FinderPath Extension for Alfred</title>
		<link>https://www.webmaster-source.com/2012/11/28/finderpath-extension-for-alfred/</link>
		<comments>https://www.webmaster-source.com/2012/11/28/finderpath-extension-for-alfred/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 11:46:18 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[Alfred]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4904</guid>
		<description><![CDATA[I use Alfred for all of my application launching, number calculating and folder-finding needs. It usually does a good job at finding what I&#8217;m looking for, though sometimes you already have an exact file path in mind and want to jump right to it. One example is the Library folder. I find myself digging around [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I use <a href="http://www.alfredapp.com/">Alfred</a> for all of my application launching, number calculating and folder-finding needs. It usually does a good job at finding what I&#8217;m looking for, though sometimes you already have an exact file path in mind and want to jump right to it. One example is the Library folder. I find myself digging around in there regularly for whatever reason (retrieving Minecraft screenshots, diagnosing crashy apps, etc.) and it just takes too long to get there manually. Lion and Mountain Lion made it especially vexing, as it&#8217;s hidden by default. (And it re-hidden after each software update, even if you change the setting with a terminal command.)</p>
<p>So I made an Alfred extension that will open any supplied path in a new Finder window. No fancy searching, just a direct &#8220;open this.&#8221; It uses the standard &#8220;cd ~/Documents/GitHub&#8221; syntax experienced users of the command line will be familiar with. It even escapes spaces automatically.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="size-full wp-image-4905 aligncenter imgborder" title="Opening a file path in Finder with Alfred" src="//www.webmaster-source.com/wp-content/uploads/2012/11/alfred-extension-finderpath.png" alt="" width="600" height="195" /></p>
<h3>Installation Instructions</h3>
<ul>
<li>Download <a href="http://www.webmaster-source.com/wp-content/uploads/2012/11/FinderPath.zip">the FinderPath extension</a></li>
<li>Unzip the archive and double-click the resulting <code>FinderPath.alfredextension</code> file</li>
<li>Alfred should do the rest</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/11/28/finderpath-extension-for-alfred/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Slow Hosts File Lookups in OS X Mountain Lion</title>
		<link>https://www.webmaster-source.com/2012/11/14/fixing-slow-hosts-file-lookups-in-os-x-mountain-lion/</link>
		<comments>https://www.webmaster-source.com/2012/11/14/fixing-slow-hosts-file-lookups-in-os-x-mountain-lion/#comments</comments>
		<pubDate>Wed, 14 Nov 2012 11:58:47 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4869</guid>
		<description><![CDATA[Mac users with custom entries in their /etc/hosts files may have noticed that, under Mountain Lion at least, lookup times for local resources are incredibly slow. I routinely set up names that point to virtual hosts on my laptop so I can give projects their own local domain instead of having http://localhost/projects/something/index.php or somesuch. Typing [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Mac users with custom entries in their <code>/etc/hosts</code> files may have noticed that, under Mountain Lion at least, lookup times for local resources are incredibly slow. I routinely set up names that point to virtual hosts on my laptop so I can give projects their own local domain instead of having <code>http://localhost/projects/something/index.php</code> or somesuch. Typing <code>something.dev</code> is much easier. I noticed that, since upgrading from Snow Leopard to Mountain Lion, Firefox would spend several seconds trying to look up those names before consulting the hosts file and loading the page.</p>
<p>While I don&#8217;t know why it&#8217;s happening, exactly, I do have a fix. The wait goes away if you put the local entries on one line.</p>
<p>Instead of having something like this:</p>
<pre class="brush: plain; title: ; notranslate">
#virtual hosts
127.0.0.1 myproject.dev
127.0.0.1 wordpress.dev
127.0.0.1 somesuch.dev
</pre>
<p>You need to have this:</p>
<pre class="brush: plain; title: ; notranslate">
#virtual hosts
127.0.0.1 myproject.dev wordpress.dev somesuch.dev
</pre>
<p>Leave the lines that say &#8220;localhost&#8221; alone, of course. Messing with those could cause all manner of Bad Things.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/11/14/fixing-slow-hosts-file-lookups-in-os-x-mountain-lion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Syntax Highlighting in Mac OS X Quick Look</title>
		<link>https://www.webmaster-source.com/2012/10/25/syntax-highlighting-in-mac-os-x-quick-look/</link>
		<comments>https://www.webmaster-source.com/2012/10/25/syntax-highlighting-in-mac-os-x-quick-look/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 13:06:04 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4823</guid>
		<description><![CDATA[Starting in OS X 10.5, Apple introduced the handy Quick Look feature, which of course enables you to preview a file by tapping the spacebar. If you&#8217;re like me, you probably use it regularly for quick glances at files that you don&#8217;t really need to open in your text editor. But it lacks one thing, [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Starting in OS X 10.5, Apple introduced the handy Quick Look feature, which of course enables you to preview a file by tapping the spacebar. If you&#8217;re like me, you probably use it regularly for quick glances at files that you don&#8217;t really need to open in your text editor. But it lacks one thing, one thing that makes reading long source files bearable: syntax highlighting.</p>
<p>I can&#8217;t believe it took me so long to find it, but there <em>is</em> an extension for Quick Look that adds color coding to source files in most common languages. <a href="http://code.google.com/p/qlcolorcode/">QLColorCode</a>, as it is called, is compatible with every version of OS X from Leopard to Mountain Lion. You just drop the <code>.qlgenerator</code> file into <code>~/Library/QuickLook</code> or <code>/Library/QuickLook</code> and enjoy your improved Quick Look functionality.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4824 imgborder" title="QLColorCode" src="//www.webmaster-source.com/wp-content/uploads/2012/08/QLColorCode.jpg" alt="" width="600" height="214" /></p>
<p><a href="http://code.google.com/p/qlcolorcode/">QLColorCode</a> [Google Code]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/10/25/syntax-highlighting-in-mac-os-x-quick-look/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Imgur Support to Tweetbot for Mac</title>
		<link>https://www.webmaster-source.com/2012/10/20/adding-imgur-support-to-tweetbot-for-mac/</link>
		<comments>https://www.webmaster-source.com/2012/10/20/adding-imgur-support-to-tweetbot-for-mac/#comments</comments>
		<pubDate>Sat, 20 Oct 2012 14:02:50 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tweetbot]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4876</guid>
		<description><![CDATA[The leading Twitter client for iOS just made its OS X debut on Thursday, and it has a very interesting feature. In the application&#8217;s preferences window, you can set the services that are used for URL shortening, image hosting, reading later, and so on. In addition to the usual suspects, you can choose &#8220;custom&#8221; as [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The leading Twitter client for iOS just made its OS X debut on Thursday, and it has a very interesting feature. In the application&#8217;s preferences window, you can set the services that are used for URL shortening, image hosting, reading later, and so on. In addition to the usual suspects, you can choose &#8220;custom&#8221; as an option for image uploads.</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  src="//www.webmaster-source.com/wp-content/uploads/2012/10/tweetbot-upload-endpoint.png" alt="" title="Tweetbot custom upload endpoint" width="600" height="412" class="aligncenter size-full wp-image-4878 imgborder" /></p>
<p>Federico Viticci included <a href="http://www.macstories.net/news/tweetbot-for-mac-review/#mediauploads">a couple of PHP scripts</a> in his review that interface with the Tweetbot uploader and save the image to either Rackspace Files or your own server.</p>
<p>Well, I didn&#8217;t want to be left out of the fun, so I wrote one for <a href="http://imgur.com/">Imgur</a>, the supremely famous image host that grew out of Reddit&#8217;s habit of using up other image hosts&#8217; low per-image bandwidth allotments.<span id="more-4876"></span></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
 
class TweetbotImgurEndpoint {
 
 
    private $api_key;
    private $api_url = &quot;https://api.imgur.com/3/upload.json&quot;;
    private $file_temp_location;
    private $file_name;
     
 
 
    function __construct($api_key, $file_temp_location, $file_name) {
        $this-&gt;api_key = $api_key;
        $this-&gt;file_temp_location = $file_temp_location;
        $this-&gt;file_name = $file_name;
        $this-&gt;upload();
    }
 
 
 
    private function upload() {
 
        $image_info = getimagesize($this-&gt;file_temp_location);
 
        if ($image_info !== false &amp;&amp; in_array($image_info['mime'], array(&quot;image/png&quot;, &quot;image/jpeg&quot;, &quot;image/pjpeg&quot;, &quot;image/gif&quot;))) {
            $fh = fopen($this-&gt;file_temp_location, &quot;rb&quot;);
            $file_contents = fread($fh, filesize($this-&gt;file_temp_location));
            fclose($fh);
            $data = array(&quot;image&quot; =&gt; base64_encode($file_contents));
            $options = array('http' =&gt; array(
                'method'  =&gt; 'POST',
                'header' =&gt; 'Authorization: Client-ID ' . $this-&gt;api_key,
                'content' =&gt; http_build_query($data)
            ));
            $context  = stream_context_create($options);
            $result = file_get_contents($this-&gt;api_url, false, $context);
            $result = json_decode($result);
            $url = $result-&gt;data-&gt;link;
            echo json_encode(array('url' =&gt; $url));
        } else {
            echo &quot;Could not upload image: invalid format.&quot;;
        }
 
    }
 
 
 
}
 
 
if ($_POST) {
    $imgur_api_key = 'YOUR_IMGUR_CLIENT_ID'; //replace with the &quot;client ID&quot; Imgur gives you
    $imgur = new TweetbotImgurEndpoint($imgur_api_key, $_FILES['media']['tmp_name'], $_FILES['media']['name']);
}
</pre>
<p>Just upload that to your web server, replace <code>YOUR_IMGUR_CLIENT_ID</code> with <a href="https://api.imgur.com/oauth2/addclient">a client ID obtained from here.</a> (You want to select the &#8220;anonymous usage without user authorization&#8221; option.)</p>
<p><strong>Edit, 2013/10/25:</strong> Imgur has since changed their API. This post has been updated to reflect the changes. If you&#8217;re looking for the original code, for version 2 of the API, it can be found in <a href="https://gist.github.com/redwallhp/7165014">this GitHub Gist.</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/10/20/adding-imgur-support-to-tweetbot-for-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Prediction: Higher Resolution MacBooks Soon to Come</title>
		<link>https://www.webmaster-source.com/2012/03/22/prediction-higher-resolution-macbooks-soon-to-come/</link>
		<comments>https://www.webmaster-source.com/2012/03/22/prediction-higher-resolution-macbooks-soon-to-come/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 11:40:42 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4570</guid>
		<description><![CDATA[The addition of a 2048&#215;1536 pixel &#8220;retina&#8221; display on the latest model of the iPad has created an interesting conundrum: many developers will no longer be able to fit the iOS Simulator on their computer screens. If you toggle it into the mode added for the third-generation iPad, it&#8217;s too big to fit on the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The addition of a 2048&#215;1536 pixel &#8220;retina&#8221; display on the latest model of the iPad has created an interesting conundrum: many developers will no longer be able to fit the iOS Simulator on their computer screens. If you toggle it into the mode added for the third-generation iPad, it&#8217;s too big to fit on the screen of any MacBook or iMac. <a href="https://twitter.com/tapbot_paul/statuses/178162615204319233">According to</a> Paul Haddad, developer of <a href="http://tapbots.com/software/tweetbot/">Tweetbot</a>, it just barely fits on his 30&#8243; Apple Cinema monitor.</p>
<blockquote class="twitter-tweet" width="500"><p>Simulator at least fits on the 30&#8243;, barely. <a href="http://t.co/Ys3eedDZ" title="http://twitter.com/tapbot_paul/status/178162615204319233/photo/1">twitter.com/tapbot_paul/st…</a></p>
<p>&mdash; Paul Haddad (@tapbot_paul) <a href="https://twitter.com/tapbot_paul/status/178162615204319233" data-datetime="2012-03-09T16:57:33+00:00">March 9, 2012</a></p></blockquote>
<p><script src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>If you&#8217;re not familiar with iOS development, the Simulator is used to run an Xcode project on a Mac instead of waiting for the freshly compiled binary to sync to the device and then launch. (Also, sometimes you may not have an iOS device handy while you&#8217;re making a minor bug fix&#8230;or you might not have an iPad yet at all!)</p>
<p>I can&#8217;t be the only one to think it strange that Apple would, in the long term, make it difficult for developers to work on their apps on anything other than a desktop Mac driving a 30&#8243; monitor. (That&#8217;s a surefire way to cut down on software for the new iPad!)</p>
<p>This, to me at least, seems like a strong suggestion that a refresh of the MacBook Pro line is on the way, bringing with it screen resolutions equal to or higher than the iPad&#8217;s. Maybe the iMacs will get a resolution bump, too.</p>
<p>Edit: Ars Technica <a href="http://arstechnica.com/apple/news/2012/03/signs-in-mountain-lion-point-to-retina-display-coming-this-summer.ars">is now reporting</a> (it&#8217;s uncanny, they posted just a few hours after me&#8230;) that the latest Mountain Lion beta has double-sized graphic resources, indicating that this is something Apple is at least working towards.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/03/22/prediction-higher-resolution-macbooks-soon-to-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to Do After You Install Ubuntu Server in VMwware Fusion</title>
		<link>https://www.webmaster-source.com/2012/03/13/what-to-do-after-you-install-ubuntu-server-in-vmwware-fusion/</link>
		<comments>https://www.webmaster-source.com/2012/03/13/what-to-do-after-you-install-ubuntu-server-in-vmwware-fusion/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 11:04:01 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4543</guid>
		<description><![CDATA[I recently installed a fresh copy of Ubuntu Server in a VMware Fusion virtual machine, so I could test some things out locally. (It&#8217;s a great way to set up a local development server with a similar configuration to your production server.) The initial setup was painless, but I had an amusing problem after. The [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I recently installed a fresh copy of Ubuntu Server in a VMware Fusion virtual machine, so I could test some things out locally. (It&#8217;s a great way to set up a local development server with a similar configuration to your production server.) The initial setup was painless, but I had an amusing problem after. The default keyboard mapping didn&#8217;t match up with my MacBook&#8217;s keyboard, so pressing the arrow keys would lead to unexpected behavior. Obviously this is problematic behavior when the only way you have to interact with the OS is text-based&#8230;</p>
<p>Fortunately, <a href="http://blog.thefrontiergroup.com.au/2011/03/broken-arrow-keys-ubuntu-10-10-vmware-fusion-mabook-pro/">the solution is simple</a>.</p>
<p>You just need to run s<code>udo dpkg-reconfigure console-setup</code> and follow the on-screen prompts. You would usually use the arrow keys to traverse the menus, but that isn&#8217;t exactly possible, is it? Pressing the first letter of the option you&#8217;re looking for until it cycles up and is selected works fine, though. (<em>A</em>pple Laptop, <em>U</em>SA-style layout, etc.) The full instructions on what you should pick for MacBooks are available <a href="http://blog.thefrontiergroup.com.au/2011/03/broken-arrow-keys-ubuntu-10-10-vmware-fusion-mabook-pro/">here</a>.</p>
<p>Now, moving in and out of the VM window is a little bit annoying, so I installed an SSH server.<span id="more-4543"></span></p>
<p><code>sudo apt-get install openssh-server</code></p>
<p>Easy enough. Now you can SSH into the server from a native Terminal session, which is easier to Command+Tab in and out of, and you can make use of the clipboard. Not being able to copy and paste sure is limiting.</p>
<p>Now you only have one final obstacle standing between you and easily connecting to the server. Whether you&#8217;re using SSH or accessing a web page being served by the VM, you need to figure out the local IP address of the VM on the network and input that. Or you can set up <a href="http://www.zeroconf.org/">ZeroConf</a>, which lets other machines on the network automagically find the VM when you call it by name. Instead of addressing it as <code>192.168.0.255</code>, you could use <code>Ubuntu.local</code>. (Very handy when you&#8217;re running game servers on your LAN.)</p>
<p>The following command will install the required packages to enable ZeroConf on the VM.</p>
<p><code>sudo apt-get install avahi-daemon avahi-discover avahi-utils libnss-mdns service-discovery-applet mdns-scan</code></p>
<p>Now you can reach the VM at thehostname.local, which is considerably easier than figuring out what IP your router has assigned it and pasting it in whenever you need it.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2012/03/13/what-to-do-after-you-install-ubuntu-server-in-vmwware-fusion/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MacRabbit isn&#8217;t Dead!</title>
		<link>https://www.webmaster-source.com/2011/07/01/macrabbit-isnt-dead/</link>
		<comments>https://www.webmaster-source.com/2011/07/01/macrabbit-isnt-dead/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 11:10:38 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4142</guid>
		<description><![CDATA[Users of Espresso and CSSEdit have been complaining for some time about the lack of updates to the software. In a surprise announcement, MacRabbit (the developer) announced that Espresso 2 is on the way and that CSSEdit&#8217;s functionality is being rolled into it. The long wait has grated both on our own nerves and those [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-3356" title="Espresso" src="//www.webmaster-source.com/wp-content/uploads/macapps-espresso.jpg" alt="" width="128" height="128" />Users of Espresso and CSSEdit have been complaining for some time about the lack of updates to the software. In <a href="http://macrabbit.com/blog/espresso-goes-kaboom/">a surprise announcement</a>, MacRabbit (the developer) announced that Espresso 2 is on the way and that CSSEdit&#8217;s functionality is being rolled into it.</p>
<blockquote><p>The long wait has grated both on our own nerves and those of our awesome  users. But while we have kept quiet publicly about what we are working  on, it is because privately we have been striving to transform our  products into something new and even more awesome: Espresso 2. We are  extremely excited to finally be able to show you what we have been  working on, as this release will be of interest to both CSSEdit and  Espresso users.</p></blockquote>
<p>An early preview, <a href="http://macrabbit.com/espresso/2/">the &#8220;kaboom&#8221; release</a>, is already available for testing and upgrade path information has been posted.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/07/01/macrabbit-isnt-dead/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lions and iClouds and iOS 5: WWDC 2011 Roundup</title>
		<link>https://www.webmaster-source.com/2011/06/07/lions-and-iclouds-and-ios-5-wwdc-2011-roundup/</link>
		<comments>https://www.webmaster-source.com/2011/06/07/lions-and-iclouds-and-ios-5-wwdc-2011-roundup/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 04:08:19 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[WWDC]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4115</guid>
		<description><![CDATA[Too busy to watch the liveblogs of Apple&#8217;s big WWDC keynote? Here&#8217;s a quick rundown of some of the most noteworthy links. There&#8217;s a lot changing in iOS, and OS X Lion is just around the corner. Then there&#8217;s iCloud, the crazy service that does more than most speculated. iOS 5 overhauls notifications, messaging while [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-4116" title="iCloud" src="//www.webmaster-source.com/wp-content/uploads/icloud.jpg" alt="" width="140" height="147" />Too busy to watch the liveblogs of Apple&#8217;s big WWDC keynote? Here&#8217;s a quick rundown of some of the most noteworthy links. There&#8217;s a lot changing in iOS, and OS X Lion is just around the corner. Then there&#8217;s iCloud, the crazy service that does more than most speculated.</p>
<ul>
<li><a href="http://arstechnica.com/apple/news/2011/06/ios-5-overhauls-notifications-messaging-while-cutting-the-usb-cord.ars">iOS 5 overhauls notifications, messaging while cutting the USB cord</a> [Ars]</li>
<li><a href="http://www.macstories.net/news/the-big-wwdc-2011-keynote-roundup/">The Big WWDC 2011 Keynote Roundup</a> [Macstories]</li>
<li><a href="http://www.bgr.com/2011/06/06/apple-ios-5-iphone-ipad-2-hands-on/">Apple iOS 5 iPhone / iPad 2 hands-on!</a> [Boy Genius Report]</li>
<li><a href="http://iphone.appstorm.net/general/app-news/10-new-features-to-get-stoked-about-in-ios-5/">10 New Features to Get Stoked About in iOS 5</a> [AppStorm]</li>
<li><a href="http://www.engadget.com/wwdc-2011/apple-ios-5-hands-on-preview/">Apple iOS 5 hands-on preview</a> [Engadget]</li>
<li><a href="http://techcrunch.com/2011/06/06/apple-imessages/">Apple Has Finally Stuck A Dagger Into SMS. I Love It.</a> [TechCrunch]</li>
<li><a href="http://www.bgr.com/2011/06/06/apple-icloud-coming-today-replaces-mobileme/">Apple iCloud announced for free, replaces MobileMe</a> [Boy Genius Report]</li>
<li><a href="http://www.tuaw.com/2011/06/06/mobileme-stays-live-through-june-30-2012/">MobileMe stays live through June 30, 2012</a> [TUAW]</li>
<li><a href="http://www.macrumors.com/2011/06/06/apple-introduces-icloud-contact-cal-docs-photos-and-music-syncing-free-of-charge/">Apple Introduces iCloud: Contact, Cal, Docs, Photos, and Music Syncing Free of Charge</a> [TUAW]</li>
<li><a href="http://arstechnica.com/apple/news/2011/06/mac-os-x-lion-to-arrive-in-july-via-mac-app-store.ars">Mac OS X Lion to arrive in July via Mac App Store for $29</a> [Ars]</li>
<li><a href="http://arstechnica.com/apple/news/2011/06/lion-server-will-be-an-extra-50-via-the-mac-app-store.ars">Lion Server will be an extra $50 via the Mac App Store</a> [Ars]</li>
<li><a href="http://www.tuaw.com/2011/06/06/lion-requirements-64-bit-cpu-2-gb-of-ram/">Lion requirements: 64-bit CPU, 2 GB of RAM</a> [TUAW]</li>
<li><a href="http://www.macstories.net/news/ibookstore-finally-comes-to-itunes/">iBookstore Finally Comes To iTunes</a> [Macstories]</li>
<li><a href="http://www.macstories.net/news/find-my-iphone-1-2-released-supports-notifications-for-offline-devices/">Find My iPhone 1.2 Released, Supports Notifications for Offline Devices</a> [Macstories]</li>
<li><a href="http://www.macstories.net/news/app-store-now-lets-you-download-not-available-apps-like-tweetie-1/">App Store Now Lets You Download Not-Available Apps, Like Tweetie 1</a> [Macstories]</li>
<li><a href="http://www.macstories.net/news/wwdc-2011-keynote-available-for-streaming/">WWDC 2011 Keynote Available for Streaming</a> [Macstories]</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/06/07/lions-and-iclouds-and-ios-5-wwdc-2011-roundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caffeinated RSS Reader Beta Now Available</title>
		<link>https://www.webmaster-source.com/2011/05/06/caffeinated-rss-reader-beta-now-available/</link>
		<comments>https://www.webmaster-source.com/2011/05/06/caffeinated-rss-reader-beta-now-available/#comments</comments>
		<pubDate>Fri, 06 May 2011 11:26:17 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[aggregators]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[rss readers]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4052</guid>
		<description><![CDATA[A couple years ago, I heard about an interesting Mac RSS reader in development. Caffeinated, as it was called, sounded like a good alternative to my current feed reader (NewsFire). There were some neat screenshots, but the software was nowhere near ready for release. After much waiting, the developer has finally released a beta of [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A couple years ago, I heard about an interesting Mac RSS reader in development. Caffeinated, as it was called, sounded like a good alternative to my current feed reader (NewsFire). There were some neat screenshots, but the software was nowhere near ready for release.</p>
<p>After much waiting, the developer has <a href="http://www.macstories.net/news/caffeinated-rss-reader-for-mac-finally-out-as-beta/">finally released a beta</a> of the application.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4053 imgborder" title="Caffeinated RSS reader for Mac" src="//www.webmaster-source.com/wp-content/uploads/caffeinated-rss-wsc.jpg" alt="" width="600" height="364" /></p>
<p>It&#8217;s very fast, taking only a couple seconds to launch. The interface is slick, particularly the pane that displays the current feed item. Caffeinated does a very good job at formatting the text and resizing images to fit cleanly into the content.</p>
<p>Of course, <a href="http://www.webmaster-source.com/2010/12/06/reeder-for-mac-beta/">Reeder</a> is also being beta tested now. Since news of Caffeinated started circulating around the internet, some competitors have shown up. Reeder, in particular, stands out. It will be interesting to see which app comes out of beta first, and how users react.</p>
<p><a href="http://www.macstories.net/news/caffeinated-rss-reader-for-mac-finally-out-as-beta/">Caffeinated RSS Reader for Mac Finally Out As Beta</a> [Macstories]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/05/06/caffeinated-rss-reader-beta-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-04-05 02:50:24 by W3 Total Cache
-->