title

Apple announces new Mac awesomeness and Multi-Touch Magic Trackpad

magictrackpad hand Apple announces new Mac awesomeness and Multi Touch Magic Trackpad

Early this morning, the Apple Oompa-loompas were busy pealing the gossamer veils from few new products of Mac awesomeness while singing their happy tunes. The all-in-one iMac line has been updated with the latest Intel Core i3, Core i5 and Core i7 processors and powerful new graphics. Starting at $1,199 (US), the new iMac line now boasts dual-core processor speeds up to 3.6 GHz, quad-core speeds up to 2.93 GHz and discrete graphics including the ATI Radeon HD 5750.

Particularly interesting is the announcement of the new Magic Trackpad, with a smooth glass and aluminum design, gives iMac users the same Multi-Touch gestures (click this…it's cool)»  that MacBook and MacBook Pro users have already mastered. It will be sold optionally for $69 (US).

Stepping over to the Mac Pro table, Apple unveiled a new line with up to 12 processing cores.1 The line sports the latest quad-core and 6-core Intel Xeon processors, all-new ATI graphics and the option for up to four 512GB solid state drives.2

Lastly, we arrive at the new 27-inch LED Cinema Display with 2560 x 1440 resolution and 60 percent more screen real estate than the 24-inch LED Cinema Display. The built-in iSight video camera, microphone and speakers, powered USB 2.0 hub, and universal MagSafe connector means the display is pure awesomeness at $999 (US). Yum.

Now, as a topic of discussion… The Magic Trackpad: is it a hit or a miss? I know a lot of people, myself included, developed a big hate for the Magic Mouse. I think the Magic Trackpad will be easier to use since it is basically an input device we’re already accustomed to, but what do you think? Drop me a note in the comments.

  1. TWELVE!?!! []
  2. drool []

mutlitouch Apple announces new Mac awesomeness and Multi Touch Magic Trackpad

I told you it would be cool icon biggrin Apple announces new Mac awesomeness and Multi Touch Magic Trackpad

Powered by Hackadelic Sliding Notes 1.6.5

XML on OS X

By: Jon Gales

There aren’t many more computer acronyms more popular than XML. Go to the bookstore
and check out the internet section—it’s all XML. What happened to plain
old HTML? It’s old hat! Most people are probably wondering, "What can this
XML thing do for me?". Well basically for most of us, it saves us time.
Lots of time.

Meet NetNewsWire
Lite
; it’s a lightweight cocoa application that you will soon fall in love
with. What it does is take in XML feeds (in a flavor known as RSS
or really simple syndication) from the sites you choose and display it in beautiful
aqua. Sound lame? How about reading 30+ sites in under 10 minutes? Most of your
favorite sites are available in RSS (Yes, even MacMerc) which makes scanning
the Mac web a cinch. Want something besides Mac news? Well there are plenty
of choices from all genres that can be added in just a few clicks right from
NNW. Have a site you want to see a feed for, but can’t find one? Well there
probably is one at NewsIsFree.com
or Syndic8.com. Below is
a screen shot of my set up, viewing MacMerc’s feed

 

nnw1 XML on OS X

If you still aren’t convinced consider the fact that Radio,
Manilla, Movable
Type
, LiveJournal,
Blogger, pMachine,
Blosxom,
PHPNuke, PostNuke
and many more Content Management Systems all support RSS by default! That comes
out to millions of sites that all support a technology that is almost unknown
to anyone out of the closely knit blogosphere.

I improved the RSS support of MacMerc to
include our story summaries (what you see on the front page) in the feed. That
means right in NetNewsWire you can see if we’ve updated, read what the stories
are about and choose what to read up on further. You can set NNW to update every
30 minutes which lets you keep up to date and still get work done icon razz XML on OS X . It’s got
a dock icon that updates like Mail’s (a little red number showing the number
of unread items).

Any site that updates daily and doesn’t support RSS should think about it. The
easiest way to add support for your site is just to use one of the web publishing
tools that support it to make your web site. That way you don’t have to sling
code yourself. However, if you’re feeling lucky here is the format that your
file should follow and a few pointers:

 

<?xml version="1.0"
encoding="ISO-8859-1" ?>
<rss version="VERSION NUMBER">
<channel>
  <title>MacMerc.com – Start using RSS</title>
  <link>http://www.macmerc.com/rss</link>
  <description>You may already be a MacMerc!</description>

  <language>en-us</language>
<item>
  <title>This is the first story</title>
  <link>http://firstlink.com</link>
  <description>This is a description of the first item!</description>

</item>
</channel>
  </rss>

I added full RSS support to my AIM
Quotes
site by following the above format. It was such a simple script it
only took a few minutes to code. I was even able to include the IM’s with their
colors. To include HTML in your feed just convert the HTML to HTML entities.
If you are writing in PHP (like I usually am) there is a function for this,
htmlentities()
.

This is really basic as far as RSS is concerned but it shows the
premises of what is going on. You’ll notice that it looks like HTML with different
tags. That’s basically what it is, RSS just is a collection of standard tags.
That’s how a reader like NetNewsWire can parse these files. Although this demo
is really simple, you can do more advanced things with it such as including
permanent links, copyright information, last build dates, and a ton of other
information. To get the scoop check out UserLand’s RSS
page
. They are busy working on version 2.0 right now!

Tips for authoring:

  • Make sure to send the headers out as text/xml or your feeds will never
    work
  • Include new lines (
    ) after each line
  • To speed things up author the xml file when things are published, not
    upon request (you’ll save a ton of CPU cycles)
  • Include a button on your web page that points to your feed, no one benefits
    from a secret feed
  • If you feel the need you can include advertising in the feeds, just add
    it to your code base. Most likely it won’t be effective but you never know.
  • If you don’t have a good statistical traffic monitor on your web server,
    build a counter into the file that is used to serve the XML. That way you’ll
    know if people are taking advantage of your feed.
  • Convert HTML to HTML Entities to make it work in your feeds.

Tips for using feeds:

  • Subscribe to LOTS of sites in the beginning, find out what you like after
    a few days. This is a good way to find new sites (NetNewsWire has a bunch
    of sites built in).
  • To add LiveJournals, just add /rss to the journal’s address. (http://www.livejournal.com/users/USERNAME/rss)
  • MacMerc is by default in the sites drawer of NetNewsWire but our syndication
    address is: http://www.macmerc.com/backend.php
  • MacMinute (our favorite Mac news site) has an unlinked feed: http://www.macminute.com/headlines.xml.
    This isn’t built into NetNewsWire yet so make sure to add this one ASAP!
  • MacUpdate (our favorite Mac Download site) has an OS X feed: http://www.macupdate.com/mommy/macsurferx.php.
    This isn’t built into NetNewsWire yet so make sure to add this one ASAP!

 

MacMerc.TV– TextExpander


Get more from every keystroke with Smile On My Mac’s TextExpander. Rick Yaeger puts the Preference Pane through its paces in this edition of MacMerc.TV.

Click for special offer»

Be sure to subscribe to MacMerc.TV in iTunes to get the latest edition as soon as it becomes available. We offer an iPod version and an HD one for AppleTV.

If you have ideas (software you’d like featured or tech concepts you’d like explained) for future episodes of MacMerc.TV, send me an email.

A few notes:»

    If you decide to register TextExpander, use the code MACMERC09 when you check out and you’ll get 20% off!! This offer is only good until March 31, 2009, so hurry!!

    Powered by Hackadelic Sliding Notes 1.6.5
    • The photos I posted to my blog were taken for me as a favor by my friend and business partner Greg Grunberg.
    • The “crazy long Amazon.com link” I posted to Twitter was for Band from TV’s “Hoggin All The Covers” MacMerc.TV   TextExpander, a CD/DVD of Greg’s band. Proceeds from the sale of this album go toward helping a handful of awesome charities and I heartily recommend buying it. These actors can really rock.
    • The exclamation that jumps out of the happy Mac at the end of the show is the logo for the product Greg, August Trometer and I are bringing to the iTunes App Store: Yowza!!.
    Powered by Hackadelic Sliding Notes 1.6.5