<?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>codedifferent.com &#187; Web</title>
	<atom:link href="http://www.codedifferent.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codedifferent.com</link>
	<description>mobile &#124; mac &#124; business &#124; development blog</description>
	<lastBuildDate>Wed, 21 Jul 2010 13:13:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Ruby 1.9.1 &amp; Rails 3.0: Fixing &#8216;Invalid .gemspec format&#8217; and rubygem warnings</title>
		<link>http://www.codedifferent.com/2010/02/11/ruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings/</link>
		<comments>http://www.codedifferent.com/2010/02/11/ruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 21:22:35 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[rails3.0]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[ruby1.9.1]]></category>
		<category><![CDATA[rubygems]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[warnings]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=544</guid>
		<description><![CDATA[I had a lot of trouble with some rubygem warnings after upgrading to Ruby 1.9.1 and Rails 3.0 on Mac OS x Snow Leopard. They always occurred when I started the server within the project with the command rails server At first, when running on bundler 0.9.3, I had two types of errors. The first [...]]]></description>
			<content:encoded><![CDATA[<p>I had a lot of trouble with some rubygem warnings after upgrading to Ruby 1.9.1 and Rails 3.0 on Mac OS x Snow Leopard. They always occurred when I started the server within the project with the command</p>

<div class="wp_codebox"><table><tr id="p54411"><td class="code" id="p544code11"><pre class="bash" style="font-family:monospace;">rails server</pre></td></tr></table></div>

<p>At first, when running on bundler 0.9.3,  I had two types of errors. The first NoMethodError populated the terminal with hundreds lines of code, like &#8230;</p>

<div class="wp_codebox"><table><tr id="p54412"><td class="code" id="p544code12"><pre class="bash" style="font-family:monospace;">WARNING:  <span style="color: #666666; font-style: italic;"># NoMethodError: undefined method ` ' for nil:NilClass </span>
<span style="color: #666666; font-style: italic;"># -*- encoding: utf-8 -*-</span>
...
WARNING:  Invalid .gemspec format <span style="color: #000000; font-weight: bold;">in</span> \
<span style="color: #ff0000;">'.rvm/gems/ruby-1.9.1-p378/specifications/spec.gemspec'</span></pre></td></tr></table></div>

<p>The <a href="http://github.com/carlhuda/bundler/issues/issue/24#issue/24/comment/127572">bundler-team around Carlhuda</a> fixed that issue within bundler 0.9.4. So that problem will not occur any more.<br />
The other problem was quite persistent. When starting the server via</p>

<div class="wp_codebox"><table><tr id="p54413"><td class="code" id="p544code13"><pre class="bash" style="font-family:monospace;">rails server</pre></td></tr></table></div>

<p>or doing a test via</p>

<div class="wp_codebox"><table><tr id="p54414"><td class="code" id="p544code14"><pre class="bash" style="font-family:monospace;">rake</pre></td></tr></table></div>

<p>within the rails-3-project resulted in a bunch of warnings:</p>

<div class="wp_codebox"><table><tr id="p54415"><td class="code" id="p544code15"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">14</span>: \
warning: already initialized constant VERSION
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">14</span>: \
warning: already initialized constant RubyGemsVersion
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">194</span>: \
warning: already initialized constant MUTEX
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">196</span>: \
warning: already initialized constant RubyGemsPackageVersion
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">202</span>: \
warning: already initialized constant WIN_PATTERNS
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">1079</span>:\
 warning: already initialized constant MARSHAL_SPEC_DIR
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems.rb:<span style="color: #000000;">1084</span>: \
warning: already initialized constant YAML_SPEC_DIR
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>version.rb:<span style="color: #000000;">72</span>: \
warning: already initialized constant VERSION_PATTERN
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>requirement.rb:<span style="color: #000000;">20</span>: \
warning: already initialized constant OPS
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>requirement.rb:<span style="color: #000000;">30</span>: \
warning: already initialized constant OP_RE
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>version.rb:<span style="color: #000000;">246</span>: \
warning: already initialized constant Requirement
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>dependency.rb:<span style="color: #000000;">18</span>: \
warning: already initialized constant TYPES
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>platform.rb:<span style="color: #000000;">171</span>: \
warning: already initialized constant RUBY
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>platform.rb:<span style="color: #000000;">177</span>: \
warning: already initialized constant CURRENT
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>specification.rb:<span style="color: #000000;">39</span>: \
warning: already initialized constant NONEXISTENT_SPECIFICATION_VERSION
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>specification.rb:<span style="color: #000000;">50</span>: \
warning: already initialized constant CURRENT_SPECIFICATION_VERSION
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>specification.rb:<span style="color: #000000;">56</span>: \
warning: already initialized constant SPECIFICATION_VERSION_HISTORY
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>specification.rb:<span style="color: #000000;">72</span>: \
warning: already initialized constant MARSHAL_FIELDS
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>specification.rb:<span style="color: #000000;">75</span>: \
warning: already initialized constant TODAY
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>source_index.rb:<span style="color: #000000;">593</span>: \
warning: already initialized constant Cache
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">14</span>: \
warning: already initialized constant DEFAULT_BACKTRACE
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">15</span>: \
warning: already initialized constant DEFAULT_BENCHMARK
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">16</span>: \
warning: already initialized constant DEFAULT_BULK_THRESHOLD
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">17</span>: \
warning: already initialized constant DEFAULT_VERBOSITY
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">18</span>: \
warning: already initialized constant DEFAULT_UPDATE_SOURCES
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">24</span>: \
warning: already initialized constant OPERATING_SYSTEM_DEFAULTS
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">30</span>: \
warning: already initialized constant PLATFORM_DEFAULTS
<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ruby<span style="color: #000000; font-weight: bold;">/</span>site_ruby<span style="color: #000000; font-weight: bold;">/</span>1.9.1<span style="color: #000000; font-weight: bold;">/</span>rubygems<span style="color: #000000; font-weight: bold;">/</span>config_file.rb:<span style="color: #000000;">53</span>: \
warning: already initialized constant SYSTEM_WIDE_CONFIG_FILE</pre></td></tr></table></div>

<p><a href="https://rails.lighthouseapp.com/projects/8994/tickets/3865-invalid-gemspec-format-in-and-already-initialized-constant-warnings-with-ruby-192dev">Jeremy Kemper from the Rails core team</a> pointed out that this is not a Rails problem, but a RubyGems issue. Ruby 1.9 ships with an outdated RubyGems &#8230; like 1.9.1p378 ships with RubyGems 1.3.1. I did update RubyGems to Version 1.3.5 by</p>

<div class="wp_codebox"><table><tr id="p54416"><td class="code" id="p544code16"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem update <span style="color: #660033;">--system</span></pre></td></tr></table></div>

<p>but this resulted in some duplicated rubygem files, which cause the error. </p>
<p>So how can the problem be solved? Deleting and reinstalling Ruby 1.9.1 does not have any effect &#8230; but the solution is quite simple:</p>
<h3>If you already installed Ruby 1.9.1 and Rails 3.0 beta:</h3>
<p>1. Be sure that you do NOT install RubyGems 1.3.5 separately after the installation of Ruby 1.9.1 &#8211; this would result in a double installation. So have that in mind when following the excellent instructions to <a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard/">installing Ruby, RubyGems, and Rails on Snow Leopard of Dan Benjamin</a>.</p>
<p>2. If you already installed Ruby 1.9.1, updated to RubyGems 1.3.5 and bundler 0.9.4 and also installed Rails 3.0, the only thing you have to do is:</p>

<div class="wp_codebox"><table><tr id="p54417"><td class="code" id="p544code17"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem uninstall rubygems-update</pre></td></tr></table></div>

<p>That&#8217;s it. No errors any more!</p>
<h3>If you did not install Ruby 1.9.1 and Rails 3.0 yet &#8230; </h3>
<p>1. You may start with <a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard/">Dan Benjamin&#8217;s recipe</a> and modify it so you download, make and install the ruby-1.9.1-p378.tar.gz but NOT the rubygems-1.3.5.tgz.</p>
<p>2. Then update RubyGems with the command</p>

<div class="wp_codebox"><table><tr id="p54418"><td class="code" id="p544code18"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem update <span style="color: #660033;">--system</span></pre></td></tr></table></div>

<p>3. Ensure that the rake and the sqlite3-ruby gems are installed, too.</p>
<p>4. Now install the needed gems and rails &#8211;pre as described in the <a href="http://guides.rails.info/3_0_release_notes.html">Rails 3.0 beta release notes</a></p>
<p>5. After the successful installation of Rails 3.0 beta, you now have to do the vitally important step:</p>

<div class="wp_codebox"><table><tr id="p54419"><td class="code" id="p544code19"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem uninstall rubygems-update</pre></td></tr></table></div>

<p>6. Finally check, if any gem needs an update before diving into Rails 3.0 by</p>

<div class="wp_codebox"><table><tr id="p54420"><td class="code" id="p544code20"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> gem update</pre></td></tr></table></div>

<p>Hope this helps &#8230; and saves some time. Thx Andy for the hint <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;title=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings&amp;bodytext=I%20had%20a%20lot%20of%20trouble%20with%20some%20rubygem%20warnings%20after%20upgrading%20to%20Ruby%201.9.1%20and%20Rails%203.0%20on%20Mac%20OS%20x%20Snow%20Leopard.%20They%20always%20occurred%20when%20I%20started%20the%20server%20within%20the%20project%20with%20the%20command%0D%0Arails%20server%0D%0AAt%20first%2C%20when%20running%20on%20bundle" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;t=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;title=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=I%20had%20a%20lot%20of%20trouble%20with%20some%20rubygem%20warnings%20after%20upgrading%20to%20Ruby%201.9.1%20and%20Rails%203.0%20on%20Mac%20OS%20x%20Snow%20Leopard.%20They%20always%20occurred%20when%20I%20started%20the%20server%20within%20the%20project%20with%20the%20command%0D%0Arails%20server%0D%0AAt%20first%2C%20when%20running%20on%20bundle" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;title=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings&amp;annotation=I%20had%20a%20lot%20of%20trouble%20with%20some%20rubygem%20warnings%20after%20upgrading%20to%20Ruby%201.9.1%20and%20Rails%203.0%20on%20Mac%20OS%20x%20Snow%20Leopard.%20They%20always%20occurred%20when%20I%20started%20the%20server%20within%20the%20project%20with%20the%20command%0D%0Arails%20server%0D%0AAt%20first%2C%20when%20running%20on%20bundle" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;title=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings&amp;notes=I%20had%20a%20lot%20of%20trouble%20with%20some%20rubygem%20warnings%20after%20upgrading%20to%20Ruby%201.9.1%20and%20Rails%203.0%20on%20Mac%20OS%20x%20Snow%20Leopard.%20They%20always%20occurred%20when%20I%20started%20the%20server%20within%20the%20project%20with%20the%20command%0D%0Arails%20server%0D%0AAt%20first%2C%20when%20running%20on%20bundle" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;title=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F02%2F11%2Fruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings%2F&amp;bm_description=Ruby%201.9.1%20%26%20Rails%203.0%3A%20Fixing%20%27Invalid%20.gemspec%20format%27%20and%20rubygem%20warnings&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2010/02/11/ruby-1-9-1-rails-3-0-fixing-invalid-gemspec-format-and-rubygem-warnings/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>QuickTime video-on-demand of the Apple iPad special event 2010 keynote</title>
		<link>http://www.codedifferent.com/2010/01/28/quicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote/</link>
		<comments>http://www.codedifferent.com/2010/01/28/quicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 07:02:08 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphonem iphone sdk 3.2]]></category>
		<category><![CDATA[keynote]]></category>
		<category><![CDATA[san francisco]]></category>
		<category><![CDATA[special event]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=532</guid>
		<description><![CDATA[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 &#8230; and it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_533" class="wp-caption alignleft" style="width: 442px"><a href="http://www.apple.com/quicktime/qtv/specialevent0110/"><img src="http://www.codedifferent.com/wp-content/uploads/2010/01/Apple-CEO-Steve-Jobs-presents-the-iPad.jpg" alt="" title="Apple-CEO-Steve-Jobs-presents-the-iPad" width="432" height="315" class="size-full wp-image-533" /></a><p class="wp-caption-text">Apple CEO Steve Jobs presents the iPad on January 27th 2010 (Picture: Apple)</p></div>Finally Apple officially published the <a href="http://www.apple.com/quicktime/qtv/specialevent0110/">video-on-demand of the Apple special event “Come and see our latest creation”</a>. 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 &#8230; and it&#8217;s really worth it <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>




	<a rel="nofollow"  href="http://twitter.com/home?status=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;title=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote&amp;bodytext=Finally%20Apple%20officially%20published%20the%20video-on-demand%20of%20the%20Apple%20special%20event%20%E2%80%9CCome%20and%20see%20our%20latest%20creation%E2%80%9D.%20Apple%20CEO%20Steve%20Jobs%20unveiled%20the%20iPad%20at%20the%20Yerba%20Buena%20Center%20for%20the%20Arts%20Theater%20in%20San%20Francisco%20on%20January%2027th%202010.%20You" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;t=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;title=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=Finally%20Apple%20officially%20published%20the%20video-on-demand%20of%20the%20Apple%20special%20event%20%E2%80%9CCome%20and%20see%20our%20latest%20creation%E2%80%9D.%20Apple%20CEO%20Steve%20Jobs%20unveiled%20the%20iPad%20at%20the%20Yerba%20Buena%20Center%20for%20the%20Arts%20Theater%20in%20San%20Francisco%20on%20January%2027th%202010.%20You" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;title=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote&amp;annotation=Finally%20Apple%20officially%20published%20the%20video-on-demand%20of%20the%20Apple%20special%20event%20%E2%80%9CCome%20and%20see%20our%20latest%20creation%E2%80%9D.%20Apple%20CEO%20Steve%20Jobs%20unveiled%20the%20iPad%20at%20the%20Yerba%20Buena%20Center%20for%20the%20Arts%20Theater%20in%20San%20Francisco%20on%20January%2027th%202010.%20You" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;title=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote&amp;notes=Finally%20Apple%20officially%20published%20the%20video-on-demand%20of%20the%20Apple%20special%20event%20%E2%80%9CCome%20and%20see%20our%20latest%20creation%E2%80%9D.%20Apple%20CEO%20Steve%20Jobs%20unveiled%20the%20iPad%20at%20the%20Yerba%20Buena%20Center%20for%20the%20Arts%20Theater%20in%20San%20Francisco%20on%20January%2027th%202010.%20You" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;title=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F28%2Fquicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote%2F&amp;bm_description=QuickTime%20video-on-demand%20of%20the%20Apple%20iPad%20special%20event%202010%20keynote&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2010/01/28/quicktime-video-on-demand-of-the-apple-ipad-special-event-2010-keynote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress,  .htaccess and the MAMP startpage error</title>
		<link>http://www.codedifferent.com/2010/01/13/wordpress-htaccess-and-the-mamp-startpage-error/</link>
		<comments>http://www.codedifferent.com/2010/01/13/wordpress-htaccess-and-the-mamp-startpage-error/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 00:20:48 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mamp]]></category>
		<category><![CDATA[probem]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=440</guid>
		<description><![CDATA[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&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mamp.info/en/index.html">MAMP</a>, a local webserver environment for the Mac, is perfect for testing, developing and designing with <a href="http://wordpress.org/">WordPress</a>. MAMP comes with a ready to use configuration of Apache, MySQL and PHP in a single folder.<br />
But after installing and configuring a WordPress blog, you may loose the access to the MAMP start page:</p>
<blockquote><p>Forbidden<br />
You don&#8217;t have permission to access /MAMP/ on this server.<br />
Apache/2.0.63 (Unix) PHP/5.2.11 DAV/2 Server at localhost Port XXXX
</p></blockquote>
<p>That&#8217;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.<br />
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 &#8230; but a problem which can be fixed easily <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><strong>As always: no guarantee and on your own risk &#8230; especially the Terminal is a wonderful tool &#8230; but if you do the wrong thing, you may be in serious trouble!</strong></p>
<p>You normally do not recognize the .htaccess file within the Finder: all filenames starting with a dot are hidden files in a UNIX system &#8230; and the Finder does not show those hidden files. But if you use the Terminal, you can look at all the hidden files easily.<br />
So fire up the Terminal app and go to the root directory of your hard drive:</p>

<div class="wp_codebox"><table><tr id="p44025"><td class="code" id="p440code25"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span></pre></td></tr></table></div>

<p>then looks at all the files in your root directory:</p>

<div class="wp_codebox"><table><tr id="p44026"><td class="code" id="p440code26"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-la</span></pre></td></tr></table></div>

<p>If you find a  .htaccess there &#8230; you probably found your problem. But look inside the file before your rename or delete it:</p>

<div class="wp_codebox"><table><tr id="p44027"><td class="code" id="p440code27"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> .htaccess</pre></td></tr></table></div>

<p>The easiest way to proceed is to rename the htaccess file:</p>

<div class="wp_codebox"><table><tr id="p44028"><td class="code" id="p440code28"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> .htaccess htaccess-backup</pre></td></tr></table></div>

<p>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 <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;title=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error&amp;bodytext=MAMP%2C%20a%20local%20webserver%20environment%20for%20the%20Mac%2C%20is%20perfect%20for%20testing%2C%20developing%20and%20designing%20with%20WordPress.%20MAMP%20comes%20with%20a%20ready%20to%20use%20configuration%20of%20Apache%2C%20MySQL%20and%20PHP%20in%20a%20single%20folder.%0D%0ABut%20after%20installing%20and%20configuring%20a%20WordPr" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;t=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;title=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=MAMP%2C%20a%20local%20webserver%20environment%20for%20the%20Mac%2C%20is%20perfect%20for%20testing%2C%20developing%20and%20designing%20with%20WordPress.%20MAMP%20comes%20with%20a%20ready%20to%20use%20configuration%20of%20Apache%2C%20MySQL%20and%20PHP%20in%20a%20single%20folder.%0D%0ABut%20after%20installing%20and%20configuring%20a%20WordPr" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;title=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error&amp;annotation=MAMP%2C%20a%20local%20webserver%20environment%20for%20the%20Mac%2C%20is%20perfect%20for%20testing%2C%20developing%20and%20designing%20with%20WordPress.%20MAMP%20comes%20with%20a%20ready%20to%20use%20configuration%20of%20Apache%2C%20MySQL%20and%20PHP%20in%20a%20single%20folder.%0D%0ABut%20after%20installing%20and%20configuring%20a%20WordPr" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;title=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error&amp;notes=MAMP%2C%20a%20local%20webserver%20environment%20for%20the%20Mac%2C%20is%20perfect%20for%20testing%2C%20developing%20and%20designing%20with%20WordPress.%20MAMP%20comes%20with%20a%20ready%20to%20use%20configuration%20of%20Apache%2C%20MySQL%20and%20PHP%20in%20a%20single%20folder.%0D%0ABut%20after%20installing%20and%20configuring%20a%20WordPr" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;title=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2010%2F01%2F13%2Fwordpress-htaccess-and-the-mamp-startpage-error%2F&amp;bm_description=Wordpress%2C%20%20.htaccess%20and%20the%20MAMP%20startpage%20error&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2010/01/13/wordpress-htaccess-and-the-mamp-startpage-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe will guide Flash developers to the iPhone with CS5</title>
		<link>http://www.codedifferent.com/2009/10/06/adobe-will-guide-flash-developers-to-the-iphone-with-cs5/</link>
		<comments>http://www.codedifferent.com/2009/10/06/adobe-will-guide-flash-developers-to-the-iphone-with-cs5/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 08:21:17 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[flash cs5]]></category>
		<category><![CDATA[flash light]]></category>
		<category><![CDATA[flash professiona]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone sdk]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[objective-c]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=426</guid>
		<description><![CDATA[Adobe announced the export capability from Adobe Flash Professional CS5 to built native iPhone apps. This is the next round in the battle for market shares in the field of mobile application platforms. Adobe tried to position Flash with their shrinked down Flash Light as a global OS independent application development platform for mobile devices. [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe announced the export capability from <a href="http://eon.businesswire.com/portal/site/eon/permalink/?ndmViewId=news_view&#038;newsId=20091005006358&#038;newsLang=en">Adobe Flash Professional CS5 to built native iPhone apps.</a> This is the next round in the battle for market shares in the field of mobile application platforms.<br />
Adobe tried to position Flash with their shrinked down Flash Light as a global OS independent application development platform for mobile devices. Today more than 800 million mobile devices are Flash Light enabled. It looked like they found the philosopher&#8217;s stone &#8211; but when you dig deeper, Adobe is facing a lot of issues:</p>
<ul>
<li>Those more than 800 million mobile devices have different screen sizes, different buttons or keyboards and some even have a touch screen. That does not help developers to create stunning GUIs on mobiles where every little pixel needs to be arranged.</li>
<li>Flash is very performance hungry. That&#8217;s why they had to shrink it down to Flash Light &#8211; but even flash light is struggling with performance issues on many of the 800 million devices.</li>
<li>Adobe does not provide a application store infrastructure for its developers &#8230; maybe one of the biggest issues of all</li>
</ul>
<p>But on March 6, 2008 an other threat to Flash and Flash Light appeared: Steve Jobs introduced the iPhone SDK which provided a easy way to create third party applications for the iPhone with high mobile performance and the ability to take advantage of most of the sensors &#8211; like touchsceen, accelerometer, microphone, camera. And Apple solved one of the biggest hurdles for mobile application developers: They provided an easy application store solution for the developers to sell their apps or distribute them for free. And also the market for these native iPhone applications is quite attractive: There are more than 50 million iPhones and iPod touch devices out there &#8211; all of them having the exact same screen size, all of them having a touch sceen, all of them having an accelerometer. Apple attracted a lot of independent developers as well the big names in game industry with their mobile application ecosystem.<br />
Bringing Flash support to the iPhone Safari web browser was blocked by Apple because of those <a href="http://www.codedifferent.com/2009/02/13/flash-on-the-iphone-why-does-it-take-so-long/">big performance issues</a>. Apple also did not license Flash Light for the iPhone &#8211; quite logic because they built up their own developer base and their own mobile app ecosystem.<br />
The only chance Adobe had was to built up an &#8220;injection&#8221;-strategy and develop their Flash authoring tool into an Objective-C &#038; Cocoa code generator which allows Flash developers to create native iPhone applications by the press of a button. Then the Flash developers can upload their app to the iTunes AppStore and use it as a selling and distribution channel.<br />
This probably wasn&#8217;t an easy job and it will be quite interesting to watch Apple&#8217;s reaction on this move. It probably will have a massive effect on the AppStore as this will flood the store with new apps: More creativity and more junk.</p>
<p><a href="http://devwhy.blogspot.com/2009/10/flash-on-iphone.html">Louis Gerbarge spotted the technical issues of the Adobe Flash to native iPhone code generation</a> &#8211; and takes a look on the performance and private API issues of the beta version of the CS5 solution. His post makes clear that taking the Flash way won&#8217;t offer the Flash developers the features and beauty of the uncountable iPhone SDK 3.x APIs.</p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;title=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5&amp;bodytext=Adobe%20announced%20the%20export%20capability%20from%20Adobe%20Flash%20Professional%20CS5%20to%20built%20native%20iPhone%20apps.%20This%20is%20the%20next%20round%20in%20the%20battle%20for%20market%20shares%20in%20the%20field%20of%20mobile%20application%20platforms.%0D%0AAdobe%20tried%20to%20position%20Flash%20with%20their%20shrink" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;t=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;title=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=Adobe%20announced%20the%20export%20capability%20from%20Adobe%20Flash%20Professional%20CS5%20to%20built%20native%20iPhone%20apps.%20This%20is%20the%20next%20round%20in%20the%20battle%20for%20market%20shares%20in%20the%20field%20of%20mobile%20application%20platforms.%0D%0AAdobe%20tried%20to%20position%20Flash%20with%20their%20shrink" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;title=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5&amp;annotation=Adobe%20announced%20the%20export%20capability%20from%20Adobe%20Flash%20Professional%20CS5%20to%20built%20native%20iPhone%20apps.%20This%20is%20the%20next%20round%20in%20the%20battle%20for%20market%20shares%20in%20the%20field%20of%20mobile%20application%20platforms.%0D%0AAdobe%20tried%20to%20position%20Flash%20with%20their%20shrink" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;title=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5&amp;notes=Adobe%20announced%20the%20export%20capability%20from%20Adobe%20Flash%20Professional%20CS5%20to%20built%20native%20iPhone%20apps.%20This%20is%20the%20next%20round%20in%20the%20battle%20for%20market%20shares%20in%20the%20field%20of%20mobile%20application%20platforms.%0D%0AAdobe%20tried%20to%20position%20Flash%20with%20their%20shrink" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;title=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F10%2F06%2Fadobe-will-guide-flash-developers-to-the-iphone-with-cs5%2F&amp;bm_description=Adobe%20will%20guide%20Flash%20developers%20to%20the%20iPhone%20with%20CS5&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/10/06/adobe-will-guide-flash-developers-to-the-iphone-with-cs5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Hotmail directly to your iPhone – Microsoft added POP3 to their email service</title>
		<link>http://www.codedifferent.com/2009/01/25/get-hotmail-directly-to-your-iphone-%e2%80%93-microsoft-added-pop3-to-their-email-service/</link>
		<comments>http://www.codedifferent.com/2009/01/25/get-hotmail-directly-to-your-iphone-%e2%80%93-microsoft-added-pop3-to-their-email-service/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 15:49:13 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[pop]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=278</guid>
		<description><![CDATA[Microsoft&#8217;s Windows Life Hotmail service wasn&#8217;t fun on the iPhone (and on other mobile devices), until now: You had to check the emails via the hotmail website. This was possible with modern smartphone browsers &#8211; but it was a usability nightmare. Now, it looks like Microsoft had to give in the pressure of their customers [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s Windows Life Hotmail service wasn&#8217;t fun on the iPhone (and on other mobile devices), until now: You had to check the emails via the hotmail website. This was possible with modern smartphone browsers &#8211; but it was a usability nightmare.<br />
Now, it looks like Microsoft had to give in the pressure of their customers and add POP3 service to access emails from Hotmail. It&#8217;s an old hat for all the other free-mail-providers &#8211; but an &#8220;innovation&#8221; for M$. Now even M$ customers can access their Hotmail-emails via a standard email-client.<br />
This way, it&#8217;s even possible to use the native mail app on the iPhone to receive and edit and send mails via a Hotmail account. Also other smartphones like the T-Mobile Google G1 or the Blackberry can now access Hotmail. On the Mac and the PC mail clients work, too &#8211; like Apple Mail, Mozilla Thunderbird or M$ Entourage on the Mac.</p>
<p>The following account settings are needed:</p>
<ul>
<li>POP-Server: pop3.live.com (port 995)
</li>
<li>SMTP-Server: smtp.live.com (port 25)
</li>
<li>SSL-Encryption for POP and SMTP connections must be turned on.
</li>
<li>SMTP password authentication must be turned on, too.
</li>
</ul>
<p>New email-accounts can be set up on the iPhone via &#8220;Settings&#8221; > &#8220;Mail, contacts, calender&#8221;. Maybe this makes Hotmail a little bit more attractive &#8230;</p>
<p>Source: <a href="http://news.softpedia.com/news/POP3-Settings-to-Bridge-Windows-Live-Hotmail-with-and-Email-Client-102084.shtml">news.softpedia.com</a></p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;title=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service&amp;bodytext=Microsoft%27s%20Windows%20Life%20Hotmail%20service%20wasn%27t%20fun%20on%20the%20iPhone%20%28and%20on%20other%20mobile%20devices%29%2C%20until%20now%3A%20You%20had%20to%20check%20the%20emails%20via%20the%20hotmail%20website.%20This%20was%20possible%20with%20modern%20smartphone%20browsers%20-%20but%20it%20was%20a%20usability%20nightmare.%0D%0ANo" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;t=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;title=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=Microsoft%27s%20Windows%20Life%20Hotmail%20service%20wasn%27t%20fun%20on%20the%20iPhone%20%28and%20on%20other%20mobile%20devices%29%2C%20until%20now%3A%20You%20had%20to%20check%20the%20emails%20via%20the%20hotmail%20website.%20This%20was%20possible%20with%20modern%20smartphone%20browsers%20-%20but%20it%20was%20a%20usability%20nightmare.%0D%0ANo" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;title=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service&amp;annotation=Microsoft%27s%20Windows%20Life%20Hotmail%20service%20wasn%27t%20fun%20on%20the%20iPhone%20%28and%20on%20other%20mobile%20devices%29%2C%20until%20now%3A%20You%20had%20to%20check%20the%20emails%20via%20the%20hotmail%20website.%20This%20was%20possible%20with%20modern%20smartphone%20browsers%20-%20but%20it%20was%20a%20usability%20nightmare.%0D%0ANo" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;title=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service&amp;notes=Microsoft%27s%20Windows%20Life%20Hotmail%20service%20wasn%27t%20fun%20on%20the%20iPhone%20%28and%20on%20other%20mobile%20devices%29%2C%20until%20now%3A%20You%20had%20to%20check%20the%20emails%20via%20the%20hotmail%20website.%20This%20was%20possible%20with%20modern%20smartphone%20browsers%20-%20but%20it%20was%20a%20usability%20nightmare.%0D%0ANo" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;title=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F25%2Fget-hotmail-directly-to-your-iphone-%25e2%2580%2593-microsoft-added-pop3-to-their-email-service%2F&amp;bm_description=Get%20Hotmail%20directly%20to%20your%20iPhone%20%E2%80%93%20Microsoft%20added%20POP3%20to%20their%20email%20service&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/01/25/get-hotmail-directly-to-your-iphone-%e2%80%93-microsoft-added-pop3-to-their-email-service/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>RailsConf 2009 in Las Vegas: Now open for registration &#8211; call for participation extended</title>
		<link>http://www.codedifferent.com/2009/01/24/railsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended/</link>
		<comments>http://www.codedifferent.com/2009/01/24/railsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 20:05:16 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Las Vegas]]></category>
		<category><![CDATA[railsconf]]></category>
		<category><![CDATA[ror]]></category>
		<category><![CDATA[ruby-on-rails]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=274</guid>
		<description><![CDATA[The registration for the &#8211; again &#8211; biggest Ruby-on-Rails conference in the US is now open: RailsConf 2009. O&#8217;Reilly organizes the conference again. but this time it&#8217;s not Portland but Las Vegas where the rails community meets again. Las Vegas is not only the US center of gambling and entertainment &#8211; it&#8217;s also one of [...]]]></description>
			<content:encoded><![CDATA[<p>The registration for the &#8211; again &#8211; biggest Ruby-on-Rails conference in the US is now open: <a href="http://www.railsconf.com/">RailsConf 2009</a>. O&#8217;Reilly organizes the conference again. but this time it&#8217;s not Portland but Las Vegas where the rails community meets again. Las Vegas is not only the US center of gambling and entertainment &#8211; it&#8217;s also one of the much sought-after conference locations <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
If you register before March 16th 11:59pm you&#8217;ll get an early-bird bonus and save 200 USD.<br />
All rails-pros who want to share their knowledge and give a presentation at the conference, the Call for Participation deadline is extended to February 17th 2009. So you have to be fast!<br />
The conference will be at the Las Vegas Hilton from May 4th to 7th 2009.</p>
<p>Viva Las Vegas!</p>
<p>Sources: <a href="http://weblog.rubyonrails.com/2009/1/23/railsconf-2009-viva-las-vegas">rubyonrails.com</a>, <a href="http://www.railsconf.com/">RailsConf.com</a></p>




	<a rel="nofollow"  href="http://twitter.com/home?status=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;title=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended&amp;bodytext=The%20registration%20for%20the%20-%20again%20-%20biggest%20Ruby-on-Rails%20conference%20in%20the%20US%20is%20now%20open%3A%20RailsConf%202009.%20O%27Reilly%20organizes%20the%20conference%20again.%20but%20this%20time%20it%27s%20not%20Portland%20but%20Las%20Vegas%20where%20the%20rails%20community%20meets%20again.%20Las%20Vegas%20is%20not%20" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;t=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;title=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=The%20registration%20for%20the%20-%20again%20-%20biggest%20Ruby-on-Rails%20conference%20in%20the%20US%20is%20now%20open%3A%20RailsConf%202009.%20O%27Reilly%20organizes%20the%20conference%20again.%20but%20this%20time%20it%27s%20not%20Portland%20but%20Las%20Vegas%20where%20the%20rails%20community%20meets%20again.%20Las%20Vegas%20is%20not%20" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;title=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended&amp;annotation=The%20registration%20for%20the%20-%20again%20-%20biggest%20Ruby-on-Rails%20conference%20in%20the%20US%20is%20now%20open%3A%20RailsConf%202009.%20O%27Reilly%20organizes%20the%20conference%20again.%20but%20this%20time%20it%27s%20not%20Portland%20but%20Las%20Vegas%20where%20the%20rails%20community%20meets%20again.%20Las%20Vegas%20is%20not%20" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;title=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended&amp;notes=The%20registration%20for%20the%20-%20again%20-%20biggest%20Ruby-on-Rails%20conference%20in%20the%20US%20is%20now%20open%3A%20RailsConf%202009.%20O%27Reilly%20organizes%20the%20conference%20again.%20but%20this%20time%20it%27s%20not%20Portland%20but%20Las%20Vegas%20where%20the%20rails%20community%20meets%20again.%20Las%20Vegas%20is%20not%20" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;title=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F24%2Frailsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended%2F&amp;bm_description=RailsConf%202009%20in%20Las%20Vegas%3A%20Now%20open%20for%20registration%20-%20call%20for%20participation%20extended&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/01/24/railsconf-2009-in-las-vegas-now-open-for-registration-call-for-participation-extended/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>German universities publish free podcasts and videos via Apple iTunes U</title>
		<link>http://www.codedifferent.com/2009/01/14/german-universities-publish-free-podcasts-and-videos-via-apple-itunes-u/</link>
		<comments>http://www.codedifferent.com/2009/01/14/german-universities-publish-free-podcasts-and-videos-via-apple-itunes-u/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 07:42:32 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[aachen]]></category>
		<category><![CDATA[freiburg]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[Hasso Plattner Institut]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes u]]></category>
		<category><![CDATA[ludwig-maximilian-university]]></category>
		<category><![CDATA[munich]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[potsdam]]></category>
		<category><![CDATA[RWTH Aachen University]]></category>
		<category><![CDATA[systems engeneering]]></category>
		<category><![CDATA[university]]></category>
		<category><![CDATA[University Freiburg]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=257</guid>
		<description><![CDATA[Great! Now, also some German universities publish some free podcasts, videos and scripts via &#8220;iTunes U&#8221;. Until now, you can find content from the following universities from Germany: Hasso Plattner Institut / IT Systems Engineering / University of Potsdam RWTH Aachen University Ludwig-Maximilians-University Munich University Freiburg Perfect! Especially high school graduates can get a first [...]]]></description>
			<content:encoded><![CDATA[<p>Great! Now, also some German universities publish some free podcasts, videos and scripts via &#8220;iTunes U&#8221;. Until now, you can find content from the following universities from Germany:</p>
<ul>
<li><a href="http://deimos3.apple.com/WebObjects/Core.woa/Browse/hpi-de-public">Hasso Plattner Institut / IT Systems Engineering / University of Potsdam</a></li>
<li><a href="itms://deimos.apple.com/WebObjects/Core.woa/Browse/rwth-aachen.de">RWTH Aachen University</a></li>
<li><a href="itmss://deimos.apple.com/WebObjects/Core.woa/Browse/lmu.de">Ludwig-Maximilians-University Munich</a></li>
<li><a href="itms://deimos.apple.com/WebObjects/Core.woa/Browse/uni-freiburg.de">University Freiburg</a></li>
</ul>
<p>Perfect! Especially high school graduates can get a first impression of the different universities. At the end there is no getting around visiting the favorite universities to make the decision, but the iTunes U content is another first impression.<br />
But also for students, post graduates and alumni, there are quite interesting contents &#8211; and some real gems also <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Source: <a href="http://www.macnews.de/news/113726.html">Macnews.de (only German)</a></p>




	<a rel="nofollow"  href="http://twitter.com/home?status=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;title=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U&amp;bodytext=Great%21%20Now%2C%20also%20some%20German%20universities%20publish%20some%20free%20podcasts%2C%20videos%20and%20scripts%20via%20%22iTunes%20U%22.%20Until%20now%2C%20you%20can%20find%20content%20from%20the%20following%20universities%20from%20Germany%3A%0D%0A%0D%0A%09Hasso%20Plattner%20Institut%20%2F%20IT%20Systems%20Engineering%20%2F%20University%20o" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;t=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;title=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=Great%21%20Now%2C%20also%20some%20German%20universities%20publish%20some%20free%20podcasts%2C%20videos%20and%20scripts%20via%20%22iTunes%20U%22.%20Until%20now%2C%20you%20can%20find%20content%20from%20the%20following%20universities%20from%20Germany%3A%0D%0A%0D%0A%09Hasso%20Plattner%20Institut%20%2F%20IT%20Systems%20Engineering%20%2F%20University%20o" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;title=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U&amp;annotation=Great%21%20Now%2C%20also%20some%20German%20universities%20publish%20some%20free%20podcasts%2C%20videos%20and%20scripts%20via%20%22iTunes%20U%22.%20Until%20now%2C%20you%20can%20find%20content%20from%20the%20following%20universities%20from%20Germany%3A%0D%0A%0D%0A%09Hasso%20Plattner%20Institut%20%2F%20IT%20Systems%20Engineering%20%2F%20University%20o" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;title=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U&amp;notes=Great%21%20Now%2C%20also%20some%20German%20universities%20publish%20some%20free%20podcasts%2C%20videos%20and%20scripts%20via%20%22iTunes%20U%22.%20Until%20now%2C%20you%20can%20find%20content%20from%20the%20following%20universities%20from%20Germany%3A%0D%0A%0D%0A%09Hasso%20Plattner%20Institut%20%2F%20IT%20Systems%20Engineering%20%2F%20University%20o" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;title=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F14%2Fgerman-universities-publish-free-podcasts-and-videos-via-apple-itunes-u%2F&amp;bm_description=German%20universities%20publish%20free%20podcasts%20and%20videos%20via%20Apple%20iTunes%20U&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/01/14/german-universities-publish-free-podcasts-and-videos-via-apple-itunes-u/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution for 500 Internal Server Error after upgrading to WordPress 2.7 at 1and1-server</title>
		<link>http://www.codedifferent.com/2009/01/12/solution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server/</link>
		<comments>http://www.codedifferent.com/2009/01/12/solution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 21:09:55 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[1and1]]></category>
		<category><![CDATA[1und1]]></category>
		<category><![CDATA[500 internal server error]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php.ini]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[wp 2.7]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=252</guid>
		<description><![CDATA[Problem: After updating the blog to WP 2.7 everything was running smooth. But when opening some of the plugin setting pages the server responded with a &#8220;500 Internal Server Error&#8221; &#8211; especially when using plugins like &#8220;XML Sitemap Generator for WordPress&#8221; or when uploading pictures. When I activated the &#8220;StatPress Reloaded&#8221;-plugin non of the admin [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem: </strong>After updating the blog to WP 2.7 everything was running smooth. But when opening some of the plugin setting pages the server responded with a &#8220;500 Internal Server Error&#8221; &#8211; especially when using plugins like &#8220;XML Sitemap Generator for WordPress&#8221; or when uploading pictures. When I activated the &#8220;StatPress Reloaded&#8221;-plugin non of the admin section was accessible anymore. </p>
<p><strong>Diagnosis: </strong>PHP is running out of memory.</p>
<p><strong>Solution:</strong> If you are running your own root, dedicated or virtual server this is an easy bugfix: You just have to change the php.ini of your server and provide more memory to your PHP installation. On a shared hosting server &#8211; like at the webhosting solutions at 1and1 you often don&#8217;t have access to that central php.ini. But there is an easy workaround:</p>
<p>Create a text file and name it &#8220;php.ini&#8221; (without the quotes <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ) and with a single line of code in it:</p>

<div class="wp_codebox"><table><tr id="p25230"><td class="code" id="p252code30"><pre class="php" style="font-family:monospace;">memory<span style="color: #339933;">=</span>20MB</pre></td></tr></table></div>

<p>This file has to be placed into the directory /wp-admin/ within your WordPress installation. </p>
<p>That&#8217;s it! <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;title=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server&amp;bodytext=Problem%3A%20After%20updating%20the%20blog%20to%20WP%202.7%20everything%20was%20running%20smooth.%20But%20when%20opening%20some%20of%20the%20plugin%20setting%20pages%20the%20server%20responded%20with%20a%20%22500%20Internal%20Server%20Error%22%20-%20especially%20when%20using%20plugins%20like%20%22XML%20Sitemap%20Generator%20for%20WordPr" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;t=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;title=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=Problem%3A%20After%20updating%20the%20blog%20to%20WP%202.7%20everything%20was%20running%20smooth.%20But%20when%20opening%20some%20of%20the%20plugin%20setting%20pages%20the%20server%20responded%20with%20a%20%22500%20Internal%20Server%20Error%22%20-%20especially%20when%20using%20plugins%20like%20%22XML%20Sitemap%20Generator%20for%20WordPr" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;title=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server&amp;annotation=Problem%3A%20After%20updating%20the%20blog%20to%20WP%202.7%20everything%20was%20running%20smooth.%20But%20when%20opening%20some%20of%20the%20plugin%20setting%20pages%20the%20server%20responded%20with%20a%20%22500%20Internal%20Server%20Error%22%20-%20especially%20when%20using%20plugins%20like%20%22XML%20Sitemap%20Generator%20for%20WordPr" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;title=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server&amp;notes=Problem%3A%20After%20updating%20the%20blog%20to%20WP%202.7%20everything%20was%20running%20smooth.%20But%20when%20opening%20some%20of%20the%20plugin%20setting%20pages%20the%20server%20responded%20with%20a%20%22500%20Internal%20Server%20Error%22%20-%20especially%20when%20using%20plugins%20like%20%22XML%20Sitemap%20Generator%20for%20WordPr" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;title=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fsolution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server%2F&amp;bm_description=Solution%20for%20500%20Internal%20Server%20Error%20after%20upgrading%20to%20Wordpress%202.7%20at%201and1-server&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/01/12/solution-for-500-internal-server-error-after-upgrading-to-wordpress-27-at-1and1-server/feed/</wfw:commentRss>
		<slash:comments>112</slash:comments>
		</item>
		<item>
		<title>Gorgeous 3D-tag-cloud-plugin for WordPress: WP-Cumulus</title>
		<link>http://www.codedifferent.com/2009/01/12/gorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus/</link>
		<comments>http://www.codedifferent.com/2009/01/12/gorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 17:48:50 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Roy Tanck]]></category>
		<category><![CDATA[tagcloud]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp-cumulus]]></category>
		<category><![CDATA[wp-plugin]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=243</guid>
		<description><![CDATA[I just installed the Flash based tag cloud WordPress plugin WP-Cumulus of Roy Tanck and integrated it into the tag-cosmos-page. That 3D-tag-cloud is really great! It functions properly and is easy to configure. The only downer is Flash &#8230; but Roy can&#8217;t help it &#8230; the iPhone still does not know what to do with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codedifferent.com/wp-content/uploads/2009/01/tagcloud-codedifferent.jpg"><img src="http://www.codedifferent.com/wp-content/uploads/2009/01/tagcloud-codedifferent-150x150.jpg" alt="tagcloud-codedifferent" title="tagcloud-codedifferent" width="150" height="150" class="alignleft size-thumbnail wp-image-245" style="float: left; margin-left: 0px; margin-right: 10px; margin-top: 5px; margin-bottom: 5px;"  /></a>I just installed the Flash based tag cloud WordPress plugin WP-Cumulus of <a href="http://www.roytanck.com/">Roy Tanck</a> and integrated it into the <a href="http://www.codedifferent.de/wp-content/themes/codedifference-v5-DE/stats.php">tag-cosmos-page</a>. That 3D-tag-cloud is really great! It functions properly and is easy to configure.<br />
The only downer is Flash &#8230; but Roy can&#8217;t help it <img src='http://www.codedifferent.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  &#8230; the iPhone still does not know what to do with Flash and also search engines stop and do not follow links within swf files. But nevertheless &#8211; the 3D-tagcloud is really fun to use  &#8230; just look <a href="http://www.codedifferent.de/wp-content/themes/codedifference-v5-DE/stats.php">here, so you know what I&#8217;m talking about</a>!</p>
<p>Sources: <a href="http://wordpress.org/extend/plugins/wp-cumulus/">WP-Cumuls at WordPress.org</a></p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;title=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus&amp;bodytext=I%20just%20installed%20the%20Flash%20based%20tag%20cloud%20Wordpress%20plugin%20WP-Cumulus%20of%20Roy%20Tanck%20and%20integrated%20it%20into%20the%20tag-cosmos-page.%20That%203D-tag-cloud%20is%20really%20great%21%20It%20functions%20properly%20and%20is%20easy%20to%20configure.%20%20%0D%0AThe%20only%20downer%20is%20Flash%20...%20but%20Roy" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;t=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;title=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=I%20just%20installed%20the%20Flash%20based%20tag%20cloud%20Wordpress%20plugin%20WP-Cumulus%20of%20Roy%20Tanck%20and%20integrated%20it%20into%20the%20tag-cosmos-page.%20That%203D-tag-cloud%20is%20really%20great%21%20It%20functions%20properly%20and%20is%20easy%20to%20configure.%20%20%0D%0AThe%20only%20downer%20is%20Flash%20...%20but%20Roy" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;title=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus&amp;annotation=I%20just%20installed%20the%20Flash%20based%20tag%20cloud%20Wordpress%20plugin%20WP-Cumulus%20of%20Roy%20Tanck%20and%20integrated%20it%20into%20the%20tag-cosmos-page.%20That%203D-tag-cloud%20is%20really%20great%21%20It%20functions%20properly%20and%20is%20easy%20to%20configure.%20%20%0D%0AThe%20only%20downer%20is%20Flash%20...%20but%20Roy" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;title=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus&amp;notes=I%20just%20installed%20the%20Flash%20based%20tag%20cloud%20Wordpress%20plugin%20WP-Cumulus%20of%20Roy%20Tanck%20and%20integrated%20it%20into%20the%20tag-cosmos-page.%20That%203D-tag-cloud%20is%20really%20great%21%20It%20functions%20properly%20and%20is%20easy%20to%20configure.%20%20%0D%0AThe%20only%20downer%20is%20Flash%20...%20but%20Roy" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;title=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F12%2Fgorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus%2F&amp;bm_description=Gorgeous%203D-tag-cloud-plugin%20for%20Wordpress%3A%20WP-Cumulus&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/01/12/gorgeous-3d-tag-cloud-plugin-for-wordpress-wp-cumulus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobile WiFi-HotSpots on ICE trains are extended &#8211; perfect for the iPhone</title>
		<link>http://www.codedifferent.com/2009/01/10/mobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone/</link>
		<comments>http://www.codedifferent.com/2009/01/10/mobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 08:55:44 +0000</pubDate>
		<dc:creator>Christian</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[deutsche bahn]]></category>
		<category><![CDATA[frankfurt]]></category>
		<category><![CDATA[germany]]></category>
		<category><![CDATA[hotspot]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[railnet]]></category>
		<category><![CDATA[T-Mobile]]></category>
		<category><![CDATA[train]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://www.codedifferent.com/?p=238</guid>
		<description><![CDATA[Deutsche Bahn and T-Mobile extend their traveling WiFi HotSpot service at the ICE train routes. Now, also the route Frankfurt am Main &#8211; Hanover &#8211; Hamburg is covered with WiFi internet access (&#8220;railnet&#8221;). Overall, we have WiFi internet connection within the train on most of the ICE routes in Germany: Dortmund &#8211; Düsseldorf &#8211; Cologne [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.codedifferent.com/wp-content/uploads/2009/01/deutsche-bahn-wlan-hotspot.jpg" alt="deutsche-bahn-wlan-hotspot" title="deutsche-bahn-wlan-hotspot" width="300" height="182" style="float: left; margin-left: 0px; margin-right: 10px; margin-top: 5px; margin-bottom: 5px;" class="alignleft size-full wp-image-239" />Deutsche Bahn and T-Mobile extend their <a href="http://www.bahn.de/p/view/service/zug/railnet_ice_bahnhof.shtml">traveling WiFi HotSpot service</a> at the ICE train routes. Now, also the route  Frankfurt am Main &#8211; Hanover &#8211; Hamburg is covered with WiFi internet access (&#8220;railnet&#8221;). Overall, we have WiFi internet connection within the train on most of the ICE routes in Germany:</p>
<ul>
<li>Dortmund &#8211; Düsseldorf &#8211; Cologne (also via Hagen and Wuppertal)</li>
<li>Cologne &#8211; Frankfurt am Main Airport</li>
<li>Frankfurt am Main &#8211; Stuttgart &#8211; Munich</li>
<li>Frankfurt am Main &#8211; Hanover &#8211; Hamburg</li>
</ul>
<p>The service offers laptop and especially iPhone users an internet connection even if the train travels at a maximum speed of 300 km/h &#8211; more than 180 miles per hour! Im always impressed about the quite stable and fast internet connection even when traveling that fast. And the best thing of all: as a (German T-Mobile) iPhone user you don&#8217;t even have to pay for the WiFi connection in the train!</p>
<p>Source/picture: <a href="http://www.deutschebahn.com/site/bahn/de/unternehmen/presse/presseinformationen/ubp/p20090109.html">Deutsche Bahn</a></p>




	<a rel="nofollow"  href="http://twitter.com/home?status=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone%20-%20http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F" title="Twitter"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;title=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone&amp;bodytext=Deutsche%20Bahn%20and%20T-Mobile%20extend%20their%20traveling%20WiFi%20HotSpot%20service%20at%20the%20ICE%20train%20routes.%20Now%2C%20also%20the%20route%20%20Frankfurt%20am%20Main%20-%20Hanover%20-%20Hamburg%20is%20covered%20with%20WiFi%20internet%20access%20%28%22railnet%22%29.%20Overall%2C%20we%20have%20WiFi%20internet%20connection%20wit" title="Digg"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;t=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone" title="Facebook"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;title=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone&amp;source=codedifferent.com+mobile+%7C+mac+%7C+business+%7C+development+blog&amp;summary=Deutsche%20Bahn%20and%20T-Mobile%20extend%20their%20traveling%20WiFi%20HotSpot%20service%20at%20the%20ICE%20train%20routes.%20Now%2C%20also%20the%20route%20%20Frankfurt%20am%20Main%20-%20Hanover%20-%20Hamburg%20is%20covered%20with%20WiFi%20internet%20access%20%28%22railnet%22%29.%20Overall%2C%20we%20have%20WiFi%20internet%20connection%20wit" title="LinkedIn"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;title=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone&amp;annotation=Deutsche%20Bahn%20and%20T-Mobile%20extend%20their%20traveling%20WiFi%20HotSpot%20service%20at%20the%20ICE%20train%20routes.%20Now%2C%20also%20the%20route%20%20Frankfurt%20am%20Main%20-%20Hanover%20-%20Hamburg%20is%20covered%20with%20WiFi%20internet%20access%20%28%22railnet%22%29.%20Overall%2C%20we%20have%20WiFi%20internet%20connection%20wit" title="Google Bookmarks"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;title=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone&amp;notes=Deutsche%20Bahn%20and%20T-Mobile%20extend%20their%20traveling%20WiFi%20HotSpot%20service%20at%20the%20ICE%20train%20routes.%20Now%2C%20also%20the%20route%20%20Frankfurt%20am%20Main%20-%20Hanover%20-%20Hamburg%20is%20covered%20with%20WiFi%20internet%20access%20%28%22railnet%22%29.%20Overall%2C%20we%20have%20WiFi%20internet%20connection%20wit" title="del.icio.us"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F" title="Technorati"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;title=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone" title="StumbleUpon"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.codedifferent.com%2F2009%2F01%2F10%2Fmobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone%2F&amp;bm_description=Mobile%20WiFi-HotSpots%20on%20ICE%20trains%20are%20extended%20-%20perfect%20for%20the%20iPhone&amp;plugin=soc" title="MisterWong"><img src="http://www.codedifferent.com/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.codedifferent.com/2009/01/10/mobile-wifi-hotspots-on-ice-trains-are-extended-perfect-for-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
