<?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; Apple</title>
	<atom:link href="https://www.webmaster-source.com/tag/apple/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>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>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>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>TestFlight: iOS Beta Testing on the Fly</title>
		<link>https://www.webmaster-source.com/2011/02/23/testflight-ios-beta-testing-on-the-fly/</link>
		<comments>https://www.webmaster-source.com/2011/02/23/testflight-ios-beta-testing-on-the-fly/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 11:43:36 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Services and Tools]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3917</guid>
		<description><![CDATA[If you&#8217;ve ever tried a little iPhone development out, you might have run into an inconvenient problem. Apple uses a code signing system on iOS devices to ensure that software that ends up on them has either passed through the App Store (and has thus been checked for malware-like behavior) or has been assigned to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you&#8217;ve ever tried a little iPhone development out, you might have run into an inconvenient problem. Apple uses a code signing system on iOS devices to ensure that software that ends up on them has either passed through the App Store (and has thus been checked for malware-like behavior) or has been assigned to the unique device ID using an ad-hoc distribution. This is generally good for the end user, but it&#8217;s a real pain to distribute betas.</p>
<p>Enter <a href="http://testflightapp.com/">TestFlight</a>.</p>
<p style="text-align: center;"><a href="http://testflightapp.com/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3918 imgborder" title="TestFlight" src="//www.webmaster-source.com/wp-content/uploads/testflight-homepage.jpg" alt="" width="600" height="326" /></a></p>
<p>I&#8217;m not sure how it does it, but TestFlight takes the pain out of iOS beta distribution. You just build an app, upload it, enter some email addresses, and TestFlight magically takes care of the rest.</p>
<p>When a beta tester gets an email from TestFlight, they register their device by logging into the TestFlight website on their iOS device. It installs a provisioning profile over the air, and lets them access your uploaded application builds in the same way.</p>
<p>However it does its magic, TestFlight is an indispensable tool for developers.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/02/23/testflight-ios-beta-testing-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Bookmarklet for Twitter for Mac</title>
		<link>https://www.webmaster-source.com/2011/01/26/new-bookmarklet-for-twitter-for-mac/</link>
		<comments>https://www.webmaster-source.com/2011/01/26/new-bookmarklet-for-twitter-for-mac/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 11:37:39 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tweetie]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3857</guid>
		<description><![CDATA[Back when I first started using Tweetie for Mac, I put together a modified version of the default bookmarklet available on the developer&#8217;s website. With a single click I could send the URL and page title of the current page in my web browser to Tweetie and hit send. Easy and efficient. When Twitter for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Back when I first started using Tweetie for Mac, I put together a modified version of the default bookmarklet available on the developer&#8217;s website. With a single click I could send the URL and page title of the current page in my web browser to Tweetie and hit send. Easy and efficient.</p>
<p>When Twitter for Mac came out, that bookmarklet stopped working, sadly. I managed to get it to send the URL after a little tinkering, but I couldn&#8217;t get it to work with the page title for some reason.</p>
<p>Fortunately, an enterprising Twitter user has written a new bookmarklet that works like my old one did. You can <a href="http://dl.dropbox.com/u/534786/twitter.html">install it by going to this page</a> and dragging it to your bookmarks bar.</p>
<p>If that wasn&#8217;t cool enough, it turns out you can select some text in any native Cocoa application, <a href="http://www.macstories.net/mac/twitter-for-mac-tweet-from-anywhere-in-os-x/">right-click it and select &#8220;Tweet&#8221;</a> to send it over to the Twitter app. It won&#8217;t work with Firefox, though, as it&#8217;s Services-impaired.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/01/26/new-bookmarklet-for-twitter-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iPhone Comes to Verizon — For Real This Time</title>
		<link>https://www.webmaster-source.com/2011/01/12/the-iphone-comes-to-verizon-for-real-this-time/</link>
		<comments>https://www.webmaster-source.com/2011/01/12/the-iphone-comes-to-verizon-for-real-this-time/#comments</comments>
		<pubDate>Wed, 12 Jan 2011 11:23:53 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[cellular]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3840</guid>
		<description><![CDATA[The iPhone is finally coming to Verizon in the United States. No, it&#8217;s not April Fools&#8217; Day. The blogosphere is overflowing with news about the just-announced end of AT&#38;T&#8217;s exclusivity. By February 10 you should be able to get your hands on one. (Verizon, being a CDMA carrier instead of GSM, requires a different cellular [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>The iPhone is finally coming to Verizon in the United States. No, it&#8217;s not April Fools&#8217; Day. The blogosphere is overflowing with news about the just-announced end of AT&amp;T&#8217;s exclusivity. By February 10 you should be able to get your hands on one. (Verizon, being a CDMA carrier instead of GSM, requires a different cellular radio in the device, so if you&#8217;re an AT&amp;T customer you will have to buy a whole new phone.)</p>
<p>You can read about that sort of stuff elsewhere though. Apparently Apple has been testing their CDMA iPhone since 2008, and finally has a chance to roll out a new feature in iOS 4.2.5 that (I assume) AT&amp;T wasn&#8217;t too keen on having: portable hotspot. You can flip a toggle switch in the Settings app and broadcast a WiFi hotspot for up to five devices.</p>
<blockquote><p>You can also set the Personal Hotspot up to use Bluetooth or USB.  Obviously, the latter two are for one-to-one connections. Essentially,  it looks like this replaces the “tethering” option found in the current  iOS build. An Apple rep I talked to believed this was the case as well.</p></blockquote>
<p>Anyway, I won&#8217;t rehash all of the gory details here. You can read up on them from my sources.</p>
<h3>Further Reading</h3>
<ul>
<li><a href="http://iphone.appstorm.net/general/hardware-news/its-official-verizon-iphone-coming-in-february/">It’s Official: Verizon iPhone Coming in February</a></li>
<li><a href="http://www.macstories.net/news/its-official-the-iphone-4-comes-to-verizon/">It’s Official: The iPhone 4 Comes to Verizon</a></li>
<li><a href="http://techcrunch.com/2011/01/11/verizon-iphone-personal-hotspot/">How Personal Hotspot Works On The Verizon iPhone (Pictures)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/01/12/the-iphone-comes-to-verizon-for-real-this-time/feed/</wfw:commentRss>
		<slash:comments>1</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>
		<item>
		<title>Apple iAd Producer Lets You Design HTML5 Ads Visually</title>
		<link>https://www.webmaster-source.com/2010/12/22/apple-iad-producer-lets-you-design-html5-ads-visually/</link>
		<comments>https://www.webmaster-source.com/2010/12/22/apple-iad-producer-lets-you-design-html5-ads-visually/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 11:57:05 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Ads]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[iAd]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Monetization]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3791</guid>
		<description><![CDATA[Apple has just launched a new OS X application intended for advertisers looking to run ads on Apple&#8217;s iAd network. The software package, called iAd Producer, gives you an iLife-style tool to visually design interactive HTML5 ads. The iAd Producer displays a chart giving an overview of the ad bundle, allowing you to double-click the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Apple has just launched a new OS X application intended for advertisers looking to run ads on Apple&#8217;s iAd network. The software package, called <a href="http://developer.apple.com/iad/iadproducer/">iAd Producer</a>, gives you an iLife-style tool to visually design interactive HTML5 ads.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3792 imgborder" title="Apple iAd Producer Intro" src="//www.webmaster-source.com/wp-content/uploads/apple-iad-producer.jpg" alt="" width="600" height="335" /></p>
<p>The iAd Producer displays a chart giving an overview of the ad bundle, allowing you to double-click the different elements and make changes to them. You can drop in graphics and videos, choose from the common page types used in ads (such as photo and video galleries, wallpaper pickers, coverflow views, etc.) and then preview the final ad in the iPhone simulator. The application also allows you to build iAds for the iPad.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3793 imgborder" title="Apple iAd Producer" src="//www.webmaster-source.com/wp-content/uploads/apple-iad-producer-tree.jpg" alt="" width="600" height="375" /></p>
<p>It&#8217;s a great idea, I think. It may mean more advertisers will join the iAd network, since they will have to invest less resources into their ad in order to get started. A lot of big-name brands probably don&#8217;t have serious web developers on their marketing teams.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/12/22/apple-iad-producer-lets-you-design-html5-ads-visually/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-23 13:19:34 by W3 Total Cache
-->