<?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>Alex Hager&#039;s Weblog &#187; Technik</title>
	<atom:link href="http://www.alexhager.at/kategorie/technik/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alexhager.at</link>
	<description>Ein Informatiker berichtet über Handys, Web, IT und Software</description>
	<lastBuildDate>Mon, 21 Feb 2011 04:27:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to integrate Salesforce in Contact Form 7</title>
		<link>http://www.alexhager.at/how-to-integrate-salesforce-in-contact-form-7/</link>
		<comments>http://www.alexhager.at/how-to-integrate-salesforce-in-contact-form-7/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 04:27:27 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Projekte]]></category>
		<category><![CDATA[Technik]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=1028</guid>
		<description><![CDATA[ch_client = "alexhager"; ch_width = 550; ch_height = 90; ch_type = "mpu"; ch_sid = "Chitika Default"; ch_color_site_link = "#0000CC"; ch_color_title = "#0000CC"; ch_color_border = "#FFFFFF"; ch_color_text = "#000000"; ch_color_bg = "#FFFFFF"; A few weeks ago, I had to find a way to integrate leads from my WordPress sites into Salesforce. On most of my sites [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fhow-to-integrate-salesforce-in-contact-form-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fhow-to-integrate-salesforce-in-contact-form-7%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>A few weeks ago, I had to find a way to integrate leads from my <strong>WordPress </strong>sites into <strong>Salesforce</strong>. On most of my sites I use the popular plugin Contact Form 7. I spent hours searching for a way how I can integrate all the incoming leads from <strong>Contact Form 7</strong> or <strong>cForms 2</strong> (which will be my next post.) with Salesforce.</p>
<p>I found a way how to create leads in Salesforce using PHP: Salesforce´s Web to Lead. After that, I only had to integrate it somehow into Contact Form 7. And that is what I did. Contact Form 7 offers a hook that enables you to run your own function after form submisson called &#8220;<strong>wpcf7_before_send_mail</strong>&#8220;. I used this hook to collect the form data and create a lead in Salesforce using cURL.</p>
<h3>Salesforce</h3>
<p>Before you can start, you have to activate Web2Lead in Salesforce and create a Web-to-Lead Form:</p>
<ul>
<li>Go to Setup (go to you name on the top right and select Setup on the drop-down menu)</li>
</ul>
<ul>
<li>Select Customize -&gt; Leads -&gt; Web-to-Lead on the left sidebar.</li>
</ul>
<ul>
<li>Activate Web-to-Lead and create your Web-to-Lead form.</li>
</ul>
<p>When you generate your code, you will find a hidden field called &#8220;oid&#8221;. Copy the value of this field an replace &lt;YOU_SALESFORCE_OID&gt; (you will find this in my code) with it. And you are done!</p>
<h3>Contact Form 7</h3>
<p>In your CF7 Form, make sure that each field has the right id. Take a look at $_POST data in my code to find the right IDs. Here is an example how your CF7 form code could look like:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;label&gt;First Name &lt;span&gt;*&lt;/span&gt;&lt;/label&gt;[text* your-firstname ]
&lt;label&gt;Last Name &lt;span&gt;*&lt;/span&gt;&lt;/label&gt;[text* your-lastname ]
&lt;label&gt;Email &lt;span&gt;*&lt;/span&gt;&lt;/label&gt;[email* your-email ]
&lt;label&gt;Phone&lt;/label&gt;[text your-phone ]
&lt;label&gt;Message &lt;span&gt;*&lt;/span&gt;&lt;/label&gt;[textarea* your-message ]</pre></td></tr></table></div>

<p>And here we go: Just add this code to your functions.php of your WordPress theme. I´m sure this code could be cleaner but it´s a start:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wpcf7_before_send_mail'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'my_conversion'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> my_conversion<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cf7</span> <span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$email</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">posted_data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;your-email&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$first_name</span>  <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">posted_data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;your-firstname&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$last_name</span>  <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">posted_data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;your-lastname&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$phone</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">posted_data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;your-phone&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$company</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">posted_data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;your-company&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$message</span>  <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">posted_data</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;your-message&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$lead_source</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$cf7</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">title</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'oid=&lt;YOU_SALESFORCE_OID&gt;'</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'first_name='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$first_name</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'last_name='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$last_name</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'email='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$email</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'phone='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$phone</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'company='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$company</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'description='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$message</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'lead_source='</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$lead_source</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$first_name</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$last_name</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$email</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$post_string</span> <span style="color: #339933;">=</span> <span style="color: #990000;">implode</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&amp;'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$post_items</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">// Create a new cURL resource</span>
    <span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <span style="color: #990000;">curl_init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">curl_error</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #666666; font-style: italic;">// error handling</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #000088;">$con_url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'https://www.salesforce.com/servlet/servlet.WebToLead?encoding=UTF-8'</span><span style="color: #339933;">;</span>
    <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #000088;">$con_url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">// Set the method to POST</span>
    <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POST<span style="color: #339933;">,</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #666666; font-style: italic;">// Pass POST data</span>
    <span style="color: #990000;">curl_setopt</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_POSTFIELDS<span style="color: #339933;">,</span> <span style="color: #000088;">$post_string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #990000;">curl_exec</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Post to Salesforce</span>
    <span style="color: #990000;">curl_close</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// close cURL resource</span>
  <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/how-to-integrate-salesforce-in-contact-form-7/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Gewinnspiel: SYNCING.NET &#8211; Die Gewinner stehen fest</title>
		<link>http://www.alexhager.at/gewinnspiel-syncing-net-die-gewinner-stehen-fest/</link>
		<comments>http://www.alexhager.at/gewinnspiel-syncing-net-die-gewinner-stehen-fest/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 03:40:46 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Gewinnspiel]]></category>
		<category><![CDATA[Synchronisation]]></category>
		<category><![CDATA[SYNCING.NET]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=951</guid>
		<description><![CDATA[Gestern lief das Gewinnspiel von 2 x 2 Lizenzen für das Programm SYNCING.NET Professional auf meinem Blog alexhager.at aus. Mitgemacht haben 9 Teilnehmer, bei denen ich mich hiermit herzlichst bedanken möchte. Vielen Dank! Aus diesen Teilnehmerpool wurde 2 Personen gezogen, die je 2 Lizenzen für Syncing.NET Professional erhalten: Gewinner Nr. 1: @lessa111 Gewinner Nr. 2: [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fgewinnspiel-syncing-net-die-gewinner-stehen-fest%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fgewinnspiel-syncing-net-die-gewinner-stehen-fest%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Gestern lief das Gewinnspiel von 2 x 2 Lizenzen für das Programm SYNCING.NET Professional auf meinem Blog <a href="http://www.alexhager.at">alexhager.at</a> aus. Mitgemacht haben 9 Teilnehmer, bei denen ich mich hiermit herzlichst bedanken möchte.<strong> Vielen Dank! </strong></p>
<p>Aus diesen Teilnehmerpool wurde 2 Personen gezogen, die je <strong>2 Lizenzen</strong> für Syncing.NET Professional erhalten:</p>
<ul>
<li><strong>Gewinner Nr. 1: </strong> <a href="http://twitter.com/lessa111" target="_blank">@lessa111</a></li>
<li><strong>Gewinner Nr. 2:</strong> <a href="http://twitter.com/thom_sau" target="_blank">@thom_sau</a></li>
</ul>
<h2>Herzliche Gratulation!</h2>
<p>Die Gewinner werden natürlich per E-Mail verständigt.</p>
<p>Nochmals DANKE an alle Teilnehmer!</p>
<p>Alex<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/aufruf-zum-gewinnspiel-auf-alexhager-at/" rel="bookmark" title="29. Januar 2010">Aufruf zum Gewinnspiel auf alexhager.at</a></li>
<li><a href="http://www.alexhager.at/gewinnspiel-syncing-net-professional-edition/" rel="bookmark" title="26. Januar 2010">Gewinnspiel: SYNCING.NET Professional Edition</a></li>
</ul>
<p><!-- Similar Posts took 18.967 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/gewinnspiel-syncing-net-die-gewinner-stehen-fest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Aufruf zum Gewinnspiel auf alexhager.at</title>
		<link>http://www.alexhager.at/aufruf-zum-gewinnspiel-auf-alexhager-at/</link>
		<comments>http://www.alexhager.at/aufruf-zum-gewinnspiel-auf-alexhager-at/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 15:09:51 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Gewinnspiel]]></category>
		<category><![CDATA[Synchronisation]]></category>
		<category><![CDATA[SYNCING.NET]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=939</guid>
		<description><![CDATA[Hier nochmals ein Aufruf zu meinem Gewinnspiel: Bis 28. Feburar 2010 habt ihr die Möglichkeit  2 x 2 Lizenzen für das Programm SYNCING.NET Professional Edition zu gewinnnen. Alle Teilnahmebedingungen findet hier in diesem Post: Gewinnspiel für 2 x 2 Lizenzen von SYNCING.NET Professfional Einfach mitmachen, kostest ja nichts! Viel Glück!Weitere ähnliche Artikel: Gewinnspiel: SYNCING.NET &#8211; [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Faufruf-zum-gewinnspiel-auf-alexhager-at%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Faufruf-zum-gewinnspiel-auf-alexhager-at%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hier nochmals ein Aufruf zu meinem Gewinnspiel:</p>
<p>Bis <strong>28. Feburar 2010</strong> habt ihr die Möglichkeit  <strong id="userfly_54">2 x 2 Lizenzen</strong> für das Programm <strong>SYNCING.NET Professional Edition zu gewinnnen</strong>.<strong></strong><br />
Alle Teilnahmebedingungen findet hier in diesem Post: <a title="alex hager gewinnspiel" href="http://www.alexhager.at/gewinnspiel-syncing-net-professional-edition/" target="_self">Gewinnspiel für 2 x 2 Lizenzen von SYNCING.NET Professfional</a></p>
<p>Einfach mitmachen, kostest ja nichts!</p>
<p>Viel Glück!<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/gewinnspiel-syncing-net-die-gewinner-stehen-fest/" rel="bookmark" title="1. März 2010">Gewinnspiel: SYNCING.NET &#8211; Die Gewinner stehen fest</a></li>
<li><a href="http://www.alexhager.at/gewinnspiel-syncing-net-professional-edition/" rel="bookmark" title="26. Januar 2010">Gewinnspiel: SYNCING.NET Professional Edition</a></li>
</ul>
<p><!-- Similar Posts took 19.093 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/aufruf-zum-gewinnspiel-auf-alexhager-at/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gewinnspiel: SYNCING.NET Professional Edition</title>
		<link>http://www.alexhager.at/gewinnspiel-syncing-net-professional-edition/</link>
		<comments>http://www.alexhager.at/gewinnspiel-syncing-net-professional-edition/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 22:02:30 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Gewinnspiel]]></category>
		<category><![CDATA[Synchronisation]]></category>
		<category><![CDATA[SYNCING.NET]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=925</guid>
		<description><![CDATA[Ich habe 2 x 2 Lizenzen für das Programm SYNCING.NET Professional Edition im Wert von ca. 100€ pro Lizenz zu verschenken. Mit SYNCING.NET können Mails, Aufgaben und Kalenderdaten sowie Dateien auf zwei Rechnern synchronisiert werden. Hier eine Liste was SYNCING.NET noch alles kann: Weltweit einzigartige Lösung, um Dateien und Outlook-Daten zu synchronisieren Sämtliche Geschäftsdaten sind [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fgewinnspiel-syncing-net-professional-edition%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fgewinnspiel-syncing-net-professional-edition%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Ich habe<strong> 2 x 2 Lizenzen</strong> für das Programm <strong>SYNCING.NET Professional Edition</strong> im Wert von ca. 100€ pro Lizenz zu verschenken.</p>
<p>Mit SYNCING.NET können Mails, Aufgaben und Kalenderdaten sowie Dateien auf zwei Rechnern synchronisiert werden.  Hier eine Liste was SYNCING.NET noch alles kann:</p>
<ul>
<li>Weltweit einzigartige Lösung, um Dateien und <a href="http://www.syncing.net/" target="_blank">Outlook-Daten</a> zu synchronisieren</li>
<li>Sämtliche Geschäftsdaten sind jederzeit und überall verfügbar</li>
<li>Teams bleiben auf dem aktuellen Stand mit stets aktuellen Daten</li>
<li>Lokale Datenspeicherung</li>
<li> Änderungen an Daten und Outlook synchronisieren automatisch</li>
<li>Synchronisation der Daten erfolgt hoch verschlüsselt</li>
<li>Offline arbeiten &#8211; Nutzen Sie Ihre Dateien und Ihr Outlook wie gewohnt</li>
<li>Ein Konto, mehrere Computer</li>
<li>Daten mit anderen austauschen</li>
<li>Laptop oder Notebook synchronisieren</li>
<li>Schneller Datenaustausch &#8211; Datendurchsatz reduziert sich im Durchschnitt um 80%</li>
<li> Keine Probleme mit Firewalls und Routern</li>
<li>Sicherheit &#8211; 256 bit AES-/1024 RSA-Verschlüsselung Ihrer Daten</li>
<li>Weltweit einzigartige Lösung, um Dateien und Outlook-Daten zu synchronisieren</li>
</ul>
<p>Die Teilnahme erfolgt durch einen Link oder Tweet auf diesen Artikel. Um die Übersicht zu behalten,  bitte ich jeden Teilnehmer einen Link zu seinem Post oder seinem Tweet als Kommentar zu hinterlassen.</p>
<p>Die Verlosung findet am <strong>28. Februar 2010 </strong>statt.</p>
<p><strong>Viel Glück!</strong><br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/microsoft-outlook-kontakte-auf-palm-pre-importieren/" rel="bookmark" title="8. November 2009">Microsoft Outlook Kontakte ins Palm Pre importieren</a></li>
<li><a href="http://www.alexhager.at/gewinnspiel-syncing-net-die-gewinner-stehen-fest/" rel="bookmark" title="1. März 2010">Gewinnspiel: SYNCING.NET &#8211; Die Gewinner stehen fest</a></li>
<li><a href="http://www.alexhager.at/aufruf-zum-gewinnspiel-auf-alexhager-at/" rel="bookmark" title="29. Januar 2010">Aufruf zum Gewinnspiel auf alexhager.at</a></li>
<li><a href="http://www.alexhager.at/palm-pre-und-itunes-vertragen-sich-nun-doch/" rel="bookmark" title="8. Oktober 2009">Palm Pre und iTunes vertragen sich nun doch</a></li>
</ul>
<p><!-- Similar Posts took 21.226 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/gewinnspiel-syncing-net-professional-edition/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Swype: Genius Texting ist die Zukunft der Texteingabe</title>
		<link>http://www.alexhager.at/swype-genius-texting-ist-die-zukunft-der-texteingabe/</link>
		<comments>http://www.alexhager.at/swype-genius-texting-ist-die-zukunft-der-texteingabe/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 22:47:59 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Handy]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[Genius Texting]]></category>
		<category><![CDATA[Swype]]></category>
		<category><![CDATA[Texteingabe]]></category>
		<category><![CDATA[Touchscreen]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=899</guid>
		<description><![CDATA[Wie man lesen konnte, hat mit das First Else, über das ich gestern geschrieben habe, nicht wirklich vom Hocker gehauen. Bei der Software die ich heute vorstelle, wage ich es kaum wieder aufzustehen. Der Erfinder des T9 Systems, ich wisst schon, die Worterkennung durch Drücken der einzelnen Buchstabe, Cliff Kushler hat vor kurzen die Zukunft [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fswype-genius-texting-ist-die-zukunft-der-texteingabe%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fswype-genius-texting-ist-die-zukunft-der-texteingabe%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Wie man lesen konnte, hat mit das <a href="http://www.alexhager.at/first-else-neuer-iphone-killer-am-start/">First Else,</a> über das ich gestern geschrieben habe, nicht wirklich vom Hocker gehauen. Bei der Software die ich heute vorstelle, wage ich es kaum wieder aufzustehen.</p>
<p>Der Erfinder des T9 Systems, ich wisst schon, die Worterkennung durch Drücken der einzelnen Buchstabe, Cliff Kushler hat vor kurzen die Zukunft der Texteingabe vorstellt: <strong>swype</strong>.</p>
<p><a href="http://www.swypeinc.com/" target="_blank">swype</a> ermöglicht eine Texteingabe auf Touchscreen-Handys ( und natürlich anderen Geräten mit Touchscreen), in einer Geschwindigkeit die ich mir nie hätte vorstellen können.</p>
<p>Das ganze funktioniert auf einem simplen Prinzip: <strong>Ziehen statt Drücken! </strong></p>
<p>Wie das in der Praxis aussieht, könnt ihr euch  hier in Wort und Bild ansehen:</p>
<div style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="AllowScriptAccess" value="always" /><param name="src" value="http://video.golem.de/player/videoplayer.swf?id=1618&amp;autoPl=false" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="360" src="http://video.golem.de/player/videoplayer.swf?id=1618&amp;autoPl=false" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>Das erste Handy, welches mit dieser Software ausgeliefert wird, ist laut <a href="http://www.golem.de/0911/71446.html" target="_blank">golem.de</a> das <strong>Samsung Omnia 2</strong> .  Da das Omnia 2 bei uns bereits im Handel zu haben ist, vermute ich, dass die Software auf diese Geräten noch nicht vorhanden ist. In den USA soll der Verkauf am 02.Dezember 2009 starten. Ein perfektes Datum für den Weihnachtsmann.</p>
<p>Das ist wirklich Software für die Zukunft! Warum fallen mir solle Dinge nicht ein.. verflixt!<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/palm-pre-kommt-im-oktober-nach-deutschland/" rel="bookmark" title="25. September 2009">Palm Pre kommt am 13. Oktober nach Deutschland</a></li>
<li><a href="http://www.alexhager.at/windows-mobile-6-5-kommt-am-6-oktober/" rel="bookmark" title="10. September 2009">Windows Mobile 6.5 kommt am 6. Oktober</a></li>
<li><a href="http://www.alexhager.at/first-else-neuer-iphone-killer-am-start/" rel="bookmark" title="25. November 2009">First Else: Neuer iPhone-Killer am Start?</a></li>
<li><a href="http://www.alexhager.at/nokia-wo-bleibt-die-touchscreen-serie/" rel="bookmark" title="22. Juni 2008">Nokia, wo bleibt die Touchscreen Serie??</a></li>
</ul>
<p><!-- Similar Posts took 22.087 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/swype-genius-texting-ist-die-zukunft-der-texteingabe/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>First Else: Neuer iPhone-Killer am Start?</title>
		<link>http://www.alexhager.at/first-else-neuer-iphone-killer-am-start/</link>
		<comments>http://www.alexhager.at/first-else-neuer-iphone-killer-am-start/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 21:43:45 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Handy]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[First Else]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[IPhone]]></category>
		<category><![CDATA[Touch Navigation]]></category>
		<category><![CDATA[Touchscreen]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=893</guid>
		<description><![CDATA[Heute wurde überall und lautstart in den Medien vom nächsten iPhone-Killer gesprochen und geschrieben. Und zwar von First Else. First Else ist ein Smartphone, dass es ermöglichen soll, das gesamte Menü nur mit dem Daumen zu bedienen. (Ist das nicht mit vielen Handys möglich?) Entwickelt wurde der &#8220;selbsternannte&#8221; iPhone-Killer von der israelischen Firma Else. Foto: [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Ffirst-else-neuer-iphone-killer-am-start%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Ffirst-else-neuer-iphone-killer-am-start%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Heute wurde überall und lautstart in den Medien vom nächsten iPhone-Killer gesprochen und geschrieben.<br />
Und zwar von <a href="http://www.firstelse.com/" target="_new">First Else</a>. First Else ist ein Smartphone, dass es ermöglichen soll, das gesamte Menü nur mit dem Daumen zu bedienen. (Ist das nicht mit vielen Handys möglich?) Entwickelt wurde der &#8220;selbsternannte&#8221; iPhone-Killer von der israelischen Firma Else.</p>
<p><img class="aligncenter size-full wp-image-894" title="else-main-11242009" src="http://www.alexhager.at/wp-content/uploads/2009/11/else-main-11242009.jpg" alt="else-main-11242009" width="600" height="400" /></p>
<p style="text-align: center;"><small>Foto: <a href="http://www.engadget.com">engadget.com</a></small></p>
<p>Die Menustruktur ist völlig anders aufgebaut, als wir es gewohnt sind. Aber seht selbst:</p>
<p style="text-align:center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/Nn1uPQ3zXMw&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=de_DE&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/Nn1uPQ3zXMw&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=de_DE&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Was mir an diesem Teil wirklich gefällt ist die Hardware:</p>
<ul>
<li>3,5 Zoll großer, kapazitiver Touchscreen (LCD)</li>
<li> 854 mal 480 Pixel</li>
<li> TI OMAP 3430 Prozessor (wie iPhone 3GS, Motorola Droid und Palm Pre)</li>
<li> 5-Megapixel-Kamera s</li>
<li> HSDPA und EDGE</li>
<li> 32 Gigabyte Speicherkapazität</li>
</ul>
<p>Mit dieser Ausstattung kann sich das Ding wirklich sehen lassen. Auch die Menustrukur kann ich mir wirklich schnell und intuitiv vorstellen. Aber es wird an Punkten wie RSS-Feeds, Synergy, Facebook-Integration,  Flickr-Uploader und weiß Gott allen Funktionen die ich an meinem Palm Pre liebe, versagen und auch kein iPhone in die Knie zwingen.<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/nokia-n97-schmerzliche-niederlage/" rel="bookmark" title="17. Juli 2009">Nokia N97 &#8211; schmerzliche Niederlage</a></li>
<li><a href="http://www.alexhager.at/nokia-wo-bleibt-die-touchscreen-serie/" rel="bookmark" title="22. Juni 2008">Nokia, wo bleibt die Touchscreen Serie??</a></li>
<li><a href="http://www.alexhager.at/palm-pre-gestensteuerung-und-bilder/" rel="bookmark" title="3. November 2009">Palm Pre: Gestensteuerung &#8211; Gesture Guide</a></li>
<li><a href="http://www.alexhager.at/palm-pre-und-itunes-vertragen-sich-nun-doch/" rel="bookmark" title="8. Oktober 2009">Palm Pre und iTunes vertragen sich nun doch</a></li>
<li><a href="http://www.alexhager.at/mobile-web-and-apps/" rel="bookmark" title="13. Februar 2008">Nokia E61i &#8211; Mobile Web and Apps</a></li>
</ul>
<p><!-- Similar Posts took 23.821 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/first-else-neuer-iphone-killer-am-start/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A1 Weihnachtsgeschenke</title>
		<link>http://www.alexhager.at/a1-weihnachtsgeschenke/</link>
		<comments>http://www.alexhager.at/a1-weihnachtsgeschenke/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 22:14:54 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[A1]]></category>
		<category><![CDATA[A1 Weihnachtsgeschenke]]></category>
		<category><![CDATA[Geschenke]]></category>
		<category><![CDATA[Weihnachten]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=877</guid>
		<description><![CDATA[Der größte österreichische Mobilfunkbetreiber A1 veranstaltet heuer einen SEO Wettbewerb zu den Suchwörtern &#8220;A1 Weihnachtsgeschenke&#8220; bei Google.at. Wer es schafft am 18.Dezember 2009 um 10:00 auf google.at mit dem Suchwort &#8220;A1 Weihnachtsgeschenke&#8221; ganz vorne in der Ergebnisseite von Google zu sein, der hat gewonnen. Pflicht ist ein Link zu www.A1.net/weihnachtsgeschenke. A1 Weihnachtsgeschenke Hier sind die besten [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fa1-weihnachtsgeschenke%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fa1-weihnachtsgeschenke%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div>
<p>Der größte österreichische Mobilfunkbetreiber <strong>A1</strong> veranstaltet heuer einen SEO Wettbewerb zu den Suchwörtern &#8220;<strong>A1 Weihnachtsgeschenke</strong>&#8220; bei Google.at.</p>
<p>Wer es schafft am 18.Dezember 2009 um 10:00 auf google.at mit dem Suchwort <strong>&#8220;A1 Weihnachtsgeschenke</strong>&#8221; ganz vorne in der Ergebnisseite von Google zu sein, der hat gewonnen.</p>
<p>Pflicht ist ein Link zu <a href="http://www.a1.net/weihnachtsgeschenke">www.A1.net/weihnachtsgeschenke</a>.</div>
<div>
<h2>A1 Weihnachtsgeschenke</h2>
</div>
<p>Hier sind die besten Geschenke, die den Gewinnern Freude bereiten werden:</p>
<blockquote>
<ol type="1">
<li>Preis: Nokia Booklet</li>
<li>Preis: HTC Magic</li>
<li>Preis: Sony Ericsson W715</li>
</ol>
</blockquote>
<p>Ich hoffe weit vorne zu sein und wünsche den Gewinnern schon viel Spass mit dem <strong>A1 Weihnachtsgeschenken</strong>.<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/a1-handyversicherung-hande-weg/" rel="bookmark" title="13. Oktober 2008">A1 Handyversicherung? Hände weg!</a></li>
</ul>
<p><!-- Similar Posts took 18.391 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/a1-weihnachtsgeschenke/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Keywords in Google webmaster-tools aufgepeppt</title>
		<link>http://www.alexhager.at/keywords-in-google%c2%b4s-webmaster-tools-aufgepeppt/</link>
		<comments>http://www.alexhager.at/keywords-in-google%c2%b4s-webmaster-tools-aufgepeppt/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 21:58:14 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[webmaster-tools]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=868</guid>
		<description><![CDATA[Vor 2 Tagen habe ich die aufgepeppte Keyword-Funktion in dem Google Webmaster-Tools das erste mal bemerkt. Vor dem Umbau sah man auf der Keywords-Seite nur eine durchnummerierte Liste, gereiht nach den am meisten vorkommenden Keywords der jeweiligen Seite. Sehr aussagekräftig war diese Liste aber nicht. Seite kurzen wird aus den Keywords mehr herausgeholt: Es wird [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fkeywords-in-google%25c2%25b4s-webmaster-tools-aufgepeppt%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fkeywords-in-google%25c2%25b4s-webmaster-tools-aufgepeppt%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><img class="alignnone" style="border: none;" src="https://www.google.com/webmasters/tools/images/logos/de/webmaster_tools_logo_sm.gif" alt="" width="228" height="30" /></p>
<p>Vor 2 Tagen habe ich die aufgepeppte Keyword-Funktion in dem Google Webmaster-Tools das erste mal bemerkt. Vor dem Umbau sah man auf der Keywords-Seite nur eine durchnummerierte Liste, gereiht nach den am meisten vorkommenden Keywords der jeweiligen Seite. Sehr aussagekräftig war diese Liste aber nicht.</p>
<p>Seite kurzen wird aus den Keywords mehr herausgeholt:</p>
<p>Es wird zusätzlich zu jedem Keyword ein Balken angezeigt, der je nach Häufigkeit zwischen 0 und 100 Prozent befüllt wird. Jedes Keyword ist ein Link, folgt man diesem, erhält man dazu auch die Summe, wie oft das Wort auf der gerade analysierten Webseite vorkommt. Darunter werden auch noch die Top-URLs, also jene Seiten, in denen das Wort am meisten vorkommt angezeigt.</p>
<p>Zusätzlich zu diesen Informationen werden die TOP-Keywords der Webseite auch dirket am Dashboard angezeigt.<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/google-pagerank-update-ich-bin-dabei/" rel="bookmark" title="31. Oktober 2009">Google PageRank Update &#8211; Ich bin dabei!</a></li>
<li><a href="http://www.alexhager.at/synergy-palm-pre/" rel="bookmark" title="7. Oktober 2009">Synergy von Palm Pre</a></li>
<li><a href="http://www.alexhager.at/google-erkennt-grippetrends-in-osterreich/" rel="bookmark" title="10. Oktober 2009">Google erkennt Grippetrends in Österreich</a></li>
<li><a href="http://www.alexhager.at/echtzeitsuche-bing-und-google-mit-twitter-im-vertrag/" rel="bookmark" title="22. Oktober 2009">Echtzeitsuche &#8211; Bing und Google mit Twitter im Vertrag</a></li>
<li><a href="http://www.alexhager.at/google-timeline-so-wuchs-das-imperium/" rel="bookmark" title="10. September 2009">Google Timeline &#8211; So wuchs das Imperium</a></li>
</ul>
<p><!-- Similar Posts took 32.842 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/keywords-in-google%c2%b4s-webmaster-tools-aufgepeppt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Birthday Firefox</title>
		<link>http://www.alexhager.at/happy-birthday-firefox/</link>
		<comments>http://www.alexhager.at/happy-birthday-firefox/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 20:15:22 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Geburtstag]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=816</guid>
		<description><![CDATA[Happy Birthday Firefox Etwas verspätet aber doch, möchte auch ich dem lieben Firefox zum 5. Geburtstag gratulieren. Es ist schon erstaunlich wie die Mozilla Gruppe mit Firefox dem Internet Explorer immer mehr an die Pellte gerückt ist. Firefox war auch der Grund, der Mircosoft zum Internet Explorer 7 gezwungen hat. Ich freue mich auch, dass [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fhappy-birthday-firefox%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fhappy-birthday-firefox%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h2 style="text-align: center;"><span style="color: #ff9900;">Happy Birthday Firefox</span></h2>
<p style="text-align: center;"><img style="border: none;" src="http://www.spreadfirefox.com/5years/assets/images/logos/firefox_logo.png" alt="" width="123" height="127" /></p>
<p>Etwas verspätet aber doch, möchte auch ich dem lieben Firefox zum 5. Geburtstag gratulieren. Es ist schon erstaunlich wie die Mozilla Gruppe mit Firefox dem Internet Explorer immer mehr an die Pellte gerückt ist. Firefox war auch der Grund, der Mircosoft zum Internet Explorer 7 gezwungen hat.</p>
<p>Ich freue mich auch, dass die Leser meines Blogs vermehr auf Firefox setzten. Schön zu sehen an folgender Statistik. Sie zeigt die Aufteilung der verschiedenen Browserzugriffe im Monat Oktober 2009:</p>
<p><img class="aligncenter size-full wp-image-856" title="browserstatistik" src="http://www.alexhager.at/wp-content/uploads/2009/11/browserstatistik.png" alt="browserstatistik" width="401" height="250" /></p>
<p>Aus dieser Statistik geht hervor, dass mehr als die Hälfte meiner Besucher bereits Firefox verweden. Auch auf das ganze Jahr betrachtet, verhält sich das Tortendiagramm kaum anders.</p>
<p><strong>Nochmals Alles Gute!</strong><br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/11-jahre-google-eine-erfolgsgeschichte/" rel="bookmark" title="7. September 2009">11 Jahre Google &#8211; Eine Erfolgsgeschichte</a></li>
<li><a href="http://www.alexhager.at/windows-phone-start/" rel="bookmark" title="6. Oktober 2009">Windows Phone startet heute durch</a></li>
<li><a href="http://www.alexhager.at/google-pagerank-update-ich-bin-dabei/" rel="bookmark" title="31. Oktober 2009">Google PageRank Update &#8211; Ich bin dabei!</a></li>
<li><a href="http://www.alexhager.at/windows-mobile-6-5-kommt-am-6-oktober/" rel="bookmark" title="10. September 2009">Windows Mobile 6.5 kommt am 6. Oktober</a></li>
<li><a href="http://www.alexhager.at/replybutler-mit-outlook-schneller-arbeiten/" rel="bookmark" title="23. Oktober 2009">ReplyButler &#8211; Mit Outlook schneller arbeiten</a></li>
</ul>
<p><!-- Similar Posts took 53.642 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/happy-birthday-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neuerungen von webOS 1.3</title>
		<link>http://www.alexhager.at/neuerungen-von-webos-1-3/</link>
		<comments>http://www.alexhager.at/neuerungen-von-webos-1-3/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 19:28:35 +0000</pubDate>
		<dc:creator>alex</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Neuerungen]]></category>
		<category><![CDATA[Palm Pixi]]></category>
		<category><![CDATA[Palm Pre]]></category>
		<category><![CDATA[WebOS]]></category>

		<guid isPermaLink="false">http://www.alexhager.at/?p=807</guid>
		<description><![CDATA[Heute habe ich auf webOS-blog.de einen sehr interessanten Artikel gelesen. In dem Arikel werden viele der Änderungen, die WebOS 1.3 mit sich bringen soll, aufgelistet. Das Update ist mit 15.Novermber 2009, der Lauch-Tag von Palm Pixi, zu erwarten. Hier sind  &#8220;the hottest improvements&#8221; von webOS 1.3: Manuelles Einstellen von Internetzugangsdaten Unterbinden von Datentraffic allgemein, nicht [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.alexhager.at%2Fneuerungen-von-webos-1-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.alexhager.at%2Fneuerungen-von-webos-1-3%2F&amp;source=alex_hager&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Heute habe ich auf <a href="http://www.webos-blog.de/" target="_blank">webOS-blog.de</a> einen sehr interessanten <a href="http://www.webos-blog.de/2009-11-05-liste-der-veranderungen-in-webos-1-3/" target="_blank">Artikel</a> gelesen. In dem Arikel werden viele der Änderungen, die <strong>WebOS 1.3</strong> mit sich bringen soll, aufgelistet. Das Update ist mit <strong>15.Novermber 2009</strong>, der Lauch-Tag von Palm Pixi, zu erwarten.</p>
<p>Hier sind  &#8220;<strong>the hottest improvements</strong>&#8221; von webOS 1.3:</p>
<ul>
<li>Manuelles Einstellen von Internetzugangsdaten</li>
<li>Unterbinden von Datentraffic allgemein, nicht nur im roaming</li>
<li>Kalender und Kontaktesync mit Yahoo</li>
<li>LinkedIn Integration</li>
<li>SMS/MMS Weiterleitung</li>
<li>AppCatalog wird nur noch Anwendungen auflisten die für den deutschen Markt Lizensiert sind</li>
<li>Download von Dateien direkt aus dem Webbrowser (pdf, doc, exl, mp3, bmp, gif, jpg)</li>
<li>Markieren und Kopieren von Text direkt im Webbrowser</li>
<li>Selbstsignierte Zertifikate werden angenommen</li>
<li>Wenn während des Gespräches ein weiterer Anruf kommt ist die Notifikation sehr laut. Hier wurde die Lautstärke angepasst</li>
<li>Webbrowser Bookmarks werden gesichert</li>
<li>Unterstützung von vCards Versand via BT</li>
<li>iTunes Unterstützung (wohl wie immer nur vorrübergehend)</li>
<li>Fotosynchronisation über iTunes</li>
<li>Optionsmenü links und rechts oben: Öffnen nicht nur durch antippen sondern auch durch herunterziehen der Leiste möglich</li>
<li>Info Pop-Up auch bei gesperrtem Display</li>
</ul>
<p>Änderungen wie LED Benachrichtigungen, Helligkeit von Display und Tastatur können separat eingestellt werden, E-Mail im Landscape, <strong>Videoaufnahme</strong>, Mehr Launcher Seiten und Sprachwahl werden mit großer Wahrscheinlichkeit nicht dabei sein.</p>
<p>Doch lassen wir uns überraschen!<br /><strong>Weitere ähnliche Artikel:</strong>
<ul class="similar-posts">
<li><a href="http://www.alexhager.at/palm-pre-und-itunes-vertragen-sich-nun-doch/" rel="bookmark" title="8. Oktober 2009">Palm Pre und iTunes vertragen sich nun doch</a></li>
<li><a href="http://www.alexhager.at/palm-pre-gestensteuerung-und-bilder/" rel="bookmark" title="3. November 2009">Palm Pre: Gestensteuerung &#8211; Gesture Guide</a></li>
<li><a href="http://www.alexhager.at/synergy-palm-pre/" rel="bookmark" title="7. Oktober 2009">Synergy von Palm Pre</a></li>
<li><a href="http://www.alexhager.at/videos-und-bilder-vom-palm-pre-auch-von-osterreicher/" rel="bookmark" title="23. Oktober 2009">Videos und Bilder vom Palm Pre auch von Österreicher</a></li>
<li><a href="http://www.alexhager.at/palm-pre-kameratest-die-ersten-bilder/" rel="bookmark" title="4. November 2009">Palm Pre Kameratest &#8211; Die ersten Bilder</a></li>
</ul>
<p><!-- Similar Posts took 25.345 ms --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.alexhager.at/neuerungen-von-webos-1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

