<?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; osx</title>
	<atom:link href="https://www.webmaster-source.com/tag/osx/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>Visualizing Directory Structures with the Tree Command</title>
		<link>https://www.webmaster-source.com/2013/12/18/visualizing-directory-structures-with-the-tree-command/</link>
		<comments>https://www.webmaster-source.com/2013/12/18/visualizing-directory-structures-with-the-tree-command/#comments</comments>
		<pubDate>Wed, 18 Dec 2013 11:41:04 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=5254</guid>
		<description><![CDATA[Sometimes good old ls just doesn&#8217;t cut it when you&#8217;re browsing directories from the command line. Sometimes you just need a more visual overview of the nested files and directories. Well, it turns out there&#8217;s a useful command for those cases, and it&#8217;s available for Linux, OS X, FreeBSD and just about any OS you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Sometimes good old <code>ls</code> just doesn&#8217;t cut it when you&#8217;re browsing directories from the command line. Sometimes you just need a more visual overview of the nested files and directories. Well, it turns out there&#8217;s a useful command for those cases, and it&#8217;s available for Linux, OS X, FreeBSD and just about any OS you can think of. (Except Windows, of course.) It&#8217;s called <a href="http://mama.indstate.edu/users/ice/tree/"><code>tree</code></a>.</p>
<p>To install it on OS X, with <a href="http://brew.sh/">Homebrew</a>:</p>
<pre class="brush: plain; title: ; notranslate">brew install tree</pre>
<p>On Ubuntu/Debian, or other Linux distros that use Debian packages:</p>
<pre class="brush: plain; title: ; notranslate">apt-get install tree</pre>
<p>To use it, just navigate to a directory and type <code>tree</code>. It has various options (visible with <code>tree --help</code>), so you can limit how many levels down it will go, exclude items that match a pattern, adjust sorting, etc.. You get a spiffy diagram that looks something like this:</p>
<pre class="brush: plain; title: ; notranslate">
.
├── application.rb
├── boot.rb
├── database.yml
├── environment.rb
├── environments
│   ├── development.rb
│   ├── production.rb
│   └── test.rb
├── initializers
│   ├── backtrace_silencers.rb
│   ├── filter_parameter_logging.rb
│   ├── inflections.rb
│   ├── mime_types.rb
│   ├── secret_token.rb
│   ├── session_store.rb
│   └── wrap_parameters.rb
├── locales
│   └── en.yml
└── routes.rb
</pre>
<p>Is that cool or what? This should be quite useful for writing tutorials, since a plain-text directory tree is more accessible than a screenshot of a file manager window.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2013/12/18/visualizing-directory-structures-with-the-tree-command/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<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>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>Apple to Announce iCloud, iOS5 and OS X Lion on June 6</title>
		<link>https://www.webmaster-source.com/2011/06/01/apple-to-announce-icloud-ios5-and-os-x-lion-on-june-6/</link>
		<comments>https://www.webmaster-source.com/2011/06/01/apple-to-announce-icloud-ios5-and-os-x-lion-on-june-6/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 12:35:43 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4105</guid>
		<description><![CDATA[Apple put out a press release that they will be unveiling a large batch of &#8220;next generation software&#8221; on June 6th at the World Wide Developer Conference. This will include iOS 5, Mac OS X 10.7 Lion and something known as iCloud. CUPERTINO, California—May 31, 2011—Apple® CEO Steve Jobs and a team of Apple executives [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Apple put out <a href="http://www.apple.com/pr/library/2011/05/31wwdc.html">a press release</a> that they will be unveiling a large batch of &#8220;next generation software&#8221; on June 6th at the World Wide Developer Conference. This will include iOS 5, Mac OS X 10.7 Lion and something known as <em>iCloud</em>.</p>
<blockquote><p>CUPERTINO, California—May 31, 2011—Apple® CEO Steve Jobs and a team of  Apple executives will kick off the company’s annual Worldwide Developers  Conference (WWDC) with a keynote address on Monday, June 6 at 10:00  a.m. At the keynote, Apple will unveil its next generation software &#8211;  Lion, the eighth major release of Mac OS® X; iOS 5, the next version of  Apple’s advanced mobile operating system which powers the iPad®, iPhone®  and iPod touch®; and iCloud®, Apple’s upcoming cloud services offering.</p></blockquote>
<p>It is speculated that this press release, specifying exactly what will be covered at the keynote, is a stab at preventing the usual stock drop from disappointed speculators hoping for new hardware. (That will probably be in September.)</p>
<p>We already had a sneak preview of Lion last year, but this should be a look at the final product—as well as a release date. The big news will likely be iOS 5 though, with its rumored widgets and notification overhaul. iCloud is the big mystery—I&#8217;m thinking it will be some sort of storage and syncing API, integrated with iOS and Lion, for app developers to leverage.</p>
<p>Oh, and the iPad versions of the iWork apps are <a href="http://www.apple.com/pr/library/2011/05/31iwork.html">now available on the iPhone</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/06/01/apple-to-announce-icloud-ios5-and-os-x-lion-on-june-6/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>
		<item>
		<title>Mac App Store Launches…Along With Tweetie 2 for Mac</title>
		<link>https://www.webmaster-source.com/2011/01/07/mac-app-store-launches-along-with-tweetie-2-for-mac/</link>
		<comments>https://www.webmaster-source.com/2011/01/07/mac-app-store-launches-along-with-tweetie-2-for-mac/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 11:47:10 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3822</guid>
		<description><![CDATA[Apple just launched the Mac App Store yesterday, bringing with it a welcome surprise. The much-awaited Tweetie 2 for Mac is finally available, in the App Store, under the new name of Twitter for Mac. I&#8217;ll get to that in a little bit, though. Let&#8217;s take a quick look at this App Store that everyone [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Apple just <a href="http://www.macstories.net/news/breaking-apple-releases-os-x-10-6-6-and-mac-app-store/">launched the Mac App Store</a> yesterday, bringing with it a welcome surprise. The <a href="http://www.webmaster-source.com/2010/02/08/whats-the-status-on-tweetie-2-for-mac/">much-awaited</a> Tweetie 2 for Mac is finally available, in the App Store, under the new name of <em>Twitter</em> for Mac. I&#8217;ll get to that in a little bit, though. Let&#8217;s take a quick look at this App Store that everyone has either been impatiently waiting for or relentlessly fear-mongering about.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3823 imgborder" title="The Mac App Store" src="//www.webmaster-source.com/wp-content/uploads/macappstore.jpg" alt="" width="600" height="375" /></p>
<p>There it is. The Mac App Store has launched with a good selection of applications, and their prices range from free to reasonably priced to, on occasion, absolutely bizarre. There are plenty of wonderful free apps, such as Evernote, TextWrangler, Caffeine, StuffIt Expander, and Twitter. There are hit games like Angry Birds and Bejeweled 3.</p>
<p>Here&#8217;s the strange thing: LEGO Harry Potter the Videogame (from the same folks who made the fun LEGO Star Wars games) is available in the App Store for a whopping $49.99. Meanwhile, you can get it for Windows XP for <a href="http://www.amazon.com/LEGO-Harry-Potter-Years-1-4-Pc/dp/B002BSA2XY/webmasterso0d-20">about $20</a> <em>on a disc</em>. They&#8217;re charging about <em>twice as much</em> for a fully digital version. I don&#8217;t quite follow that logic.<span id="more-3822"></span></p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3824 imgborder" title="Mac App Store: What's Hot" src="//www.webmaster-source.com/wp-content/uploads/macappstore-whatshot.jpg" alt="" width="600" height="449" /></p>
<p>How do you get the <a href="http://www.apple.com/mac/app-store/">Mac App Store</a> in the first place? Just hit the Software Update item in your Apple menu and update to Mac OS X 10.6.6. After the reboot, you should see a new App Store icon in your dock. After dragging it to a more comfortable placement in the dock (Firefox is supposed to be the first item, Apple, don&#8217;t change it on me!) you&#8217;re ready to go.</p>
<p>Browsing the store is much like downloading iOS apps in iTunes, only the App Store application is so much <em>lighter</em> and more responsive. iTunes takes forever to switch pages, as it&#8217;s basically loading full-size web pages from Apple&#8217;s servers for every request. I don&#8217;t know what they&#8217;re doing for the Mac App Store, but it works a lot better.</p>
<p>Downloading an application is every bit as easy as with the iOS App Store. Using Twitter for Mac as an example&#8230;</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3825 imgborder" title="Mac App Store: Twitter for Mac" src="//www.webmaster-source.com/wp-content/uploads/macappstore-tweetie2formac.jpg" alt="" width="600" height="399" /></p>
<p>Screenshots are displayed prominently,  with some assorted information off to the site. Reviews, of course, are placed down below the screenshots and description.</p>
<p>When you click on the price button and enter your Apple login details, the application&#8217;s icon appears in your dock with a progress bar, much like in iOS.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3826 imgborder" title="Mac App Store: Downloading" src="//www.webmaster-source.com/wp-content/uploads/macappstore-downloading.jpg" alt="" width="600" height="300" /></p>
<p>Once it downloads, you can launch it straight away. I don&#8217;t know if there is an easy way to migrate older applications to being managed by the App Store or not. It would be handy, since a lot of the free ones I use (TextWrangler and Evernote, for instance) are now available in the App Store. Paid software would be more of a challenge.</p>
<p>Now&#8230;about Twitter for Mac. Longtime Tweetie users may be shocked by the visual changes. The functionality is the same, but the UI closer resembles the iPhone and iPad editions than the previous Mac version. Once you get over that, you will welcome the new features: namely native retweet support, list support, tweet deletion, and streaming API support for the main timeline. (This means you will see tweets pretty much as soon as they are posted, rather than every ten minutes or so when the app polls the server.)</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3827 imgborder" title="Twitter for Mac" src="//www.webmaster-source.com/wp-content/uploads/tweetie2formac.jpg" alt="" width="600" height="417" /></p>
<p>You can <a href="http://www.macstories.net/reviews/twitter-for-mac-review-love-it-hate-it-tweet-it/">read more about Twitter for Mac</a> over at MacStories. Federico Viticci wrote up a lengthy post about it.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/01/07/mac-app-store-launches-along-with-tweetie-2-for-mac/feed/</wfw:commentRss>
		<slash:comments>4</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-05-20 14:54:31 by W3 Total Cache
-->