Archiv January, 2010

Apple CEO Steve Jobs presents the iPad on January 27th 2010 (Picture: Apple)

Finally Apple officially published the video-on-demand of the Apple special event “Come and see our latest creation”. Apple CEO Steve Jobs unveiled the iPad at the Yerba Buena Center for the Arts Theater in San Francisco on January 27th 2010. You can watch it as a QuickTime video stream or as MPEG-4 … and it’s really worth it :-)

This is the day: Apple will start their press event at the Yerba Buena Center for the Arts Theater in San Francisco. At 10:00 am PST or 07:00 pm MEZ.

Like the legendary Steve Jobs Keynotes in the past, it is quite a tradition that some journalists blog live from the event … so Apple fans all over the planet can take part on the press conference. Here are the most important liveblogs:

As soon as the videorecording of the event is online as a Quicktime videostream … there’ll be an update ;-)

Apple invited the press to their “Come see our latest creation” event in San Francisco on January 27th. And the computer and e-book industry starts trembling with fear: Companies like Microsoft and Amazon are getting really nervous, because Apple may conquer the emerging market of Active Content.

Apple did not announce that the company will be engaged in the e-book or tablet-market – but the rumors about an “iSlate” or “iPad” are quite persistent. Therefore Microsoft’s Steve Ballmer tried to steal Apple the show at his keynote at the CES in Las Vegas: He just renamed the tablet-PCs on stage as “slate-PCs” … but it’s not about a name.

Kindle Development Kit (picture: Amazon)

Now Amazon announced, that the company will open up their e-book platform for third party developers: Within some month, they’ll release a Kindle Development Kit (KDK) and will also provide the sales channel for the active content created with that software development kit (SDK).
The revenue sharing model looks quite familiar to iPhone developers: 70% to the developer and content provider, 30% for Amazon. But Amazon charges an additional $0.15 per MB for content delivery … as the Kindle is not sold with a mobile phone contract. Amazon has to pay the distribution costs to the mobile network operators if the content is delivered via the mobile data channel.

Amazon is probably in a better starting position in the battle for market shares in the emerging market of Active Content: They have a lot of experience with content distribution with the Kindle and they are in direct contact with the publishers … but Apple has the ability to rouse the e-book-market from slumber by innovation. They may transfer the pathetic e-books into a new and emerging market: Active Content.

There are a lot of advantages for Apple to tip the scales:

  • big and growing iPhone SDK developer community … Amazon has to build up a comparable dev community around the KDK
  • well-engineered and sophisticated iPhone SDK … with a full bandwidth of network-, graphic-, data- and sensor-support
  • color instead of grayscale screens and computing and graphic power
  • touchscreen with gestures
  • amazing design
  • … and there are probably some innovations we don’t expect ;-)

Amazon’s move to open up the Kindle to 3rd party developers and create a platform for Active Content is absolutely right … but can it compete with Apples offering? On January 27th 2010 we’ll know much, much more.

MAMP, a local webserver environment for the Mac, is perfect for testing, developing and designing with WordPress. MAMP comes with a ready to use configuration of Apache, MySQL and PHP in a single folder.
But after installing and configuring a WordPress blog, you may loose the access to the MAMP start page:

Forbidden
You don’t have permission to access /MAMP/ on this server.
Apache/2.0.63 (Unix) PHP/5.2.11 DAV/2 Server at localhost Port XXXX

That’s a big issue, as the start page links to the local phpMyAdmin page for MySQL-database configuration. So you cannot admin the database anymore.
I traced down the problem to a wrong placed file: When I configured the WordPress installation via the web-interface, an .htaccess file was placed in the root directory of my harddrive. Quite scary … but a problem which can be fixed easily ;-)

As always: no guarantee and on your own risk … especially the Terminal is a wonderful tool … but if you do the wrong thing, you may be in serious trouble!

You normally do not recognize the .htaccess file within the Finder: all filenames starting with a dot are hidden files in a UNIX system … and the Finder does not show those hidden files. But if you use the Terminal, you can look at all the hidden files easily.
So fire up the Terminal app and go to the root directory of your hard drive:

cd /

then looks at all the files in your root directory:

ls -la

If you find a .htaccess there … you probably found your problem. But look inside the file before your rename or delete it:

cat .htaccess

The easiest way to proceed is to rename the htaccess file:

mv .htaccess htaccess-backup

This way the file is shown in the Finder again and does not confuse your MAMP installation. If you know what to do you can delete the renamed file now within the Finder and drag it to the trash ;-)