<?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>agentis e.K. &#187; tools</title>
	<atom:link href="http://www.agentis.de/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.agentis.de</link>
	<description>agentur für IT-services</description>
	<lastBuildDate>Fri, 09 Jul 2010 14:11:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Quick-Fix für Wordpress-Berechtigungen in Version 2.9.x</title>
		<link>http://www.agentis.de/quick-fix-fur-wordpress-berechtigungen-in-version-2-9-x/</link>
		<comments>http://www.agentis.de/quick-fix-fur-wordpress-berechtigungen-in-version-2-9-x/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 14:09:08 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Wordpress-Tipps]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.agentis.de/?p=646</guid>
		<description><![CDATA[Wenn man eine relativ alte Wordpress-Version immer wieder aktualisiert hat, kommt es bei der Konvertierung zur nächsten Version scheinbar irgendwann zu einem Problem mit der Berechtigungsstufe für das Backend. Ich habe ein kleines Script geschrieben, mit dem die Berechtigungen neu gesetzt werden. Ob das bei der Version 3.x auch noch funktioniert kann ich aktuell noch [...]]]></description>
			<content:encoded><![CDATA[<p>Wenn man eine relativ alte Wordpress-Version immer wieder aktualisiert hat, kommt es bei der Konvertierung zur nächsten Version scheinbar irgendwann zu einem Problem mit der Berechtigungsstufe für das Backend. Ich habe ein kleines Script geschrieben, mit dem die Berechtigungen neu gesetzt werden. Ob das bei der Version 3.x auch noch funktioniert kann ich aktuell noch nicht sagen.</p>
<p>WICHTIG: ZUERST EIN BACKUP DER DATENBANK MACHEN! Dann das untenstehende Script in eine neue PHP-Datei (z.B. &#8220;update-users.php&#8221;) kopieren und ins gleiche Verzeichnis wie die &#8220;wp-config.php&#8221; legen. Dann über den Browser aufrufen. Update der Datensätze in der Datenbanktabelle wp_usermeta überprüfen (absteigend sortieren nach &#8220;umeta_id&#8221;). Zum Abschluß die Datei wieder löschen. FERTIG.</p>
<p>Hier das Script:<span id="more-646"></span><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
<code><br />
&lt;?php</p>
<p>// Wordpress-Config-Datei importieren<br />
// Import Wordpress-Config-File</p>
<p>include ('wp-config.php');</p>
<p>// Verbindung zum Datenbank-Server aufbauen<br />
// Connect to database</p>
<p>$cid=mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);</p>
<p>// Array für Rollen<br />
// Array for user-roles</p>
<p>$user_roles=array('administrator'=>'10', 'editor'=>'7', 'author'=>'2', 'contributor'=>'1');</p>
<p>// Bisherige Einträge für meta_key "wp_user_level" löschen<br />
// Delete actual entries with meta_key "wp_user_level"</p>
<p>$result=mysql(DB_NAME, "DELETE FROM ".$table_prefix."usermeta WHERE meta_key LIKE 'wp_user_level' ");</p>
<p>// Für jeden Eintrag aus dem Rollen-Array<br />
// For each entry of the user-roles array</p>
<p>while (list($key,$value)=each($user_roles)) {</p>
<p>&nbsp;&nbsp;echo "$key | $value&lt;br/>\n";</p>
<p>&nbsp;&nbsp;// Alle User mit der entsprechenden Rolle einlesen<br />
&nbsp;&nbsp;// Get all users for the given user-role</p>
<p>&nbsp;&nbsp;$result=mysql(DB_NAME, "SELECT * FROM ".$table_prefix."usermeta WHERE meta_key LIKE '".$table_prefix."capabilities' AND `meta_value` RLIKE '".$key."' ORDER BY user_id ASC");</p>
<p>&nbsp;&nbsp;echo "SELECT * FROM ".$table_prefix."usermeta WHERE meta_key LIKE '".$table_prefix."capabilities' AND `meta_value` RLIKE '".$key."' ORDER BY user_id ASC&lt;br/>\n";</p>
<p>&nbsp;&nbsp;while ($daten = mysql_fetch_array($result, MYSQL_ASSOC)) {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;echo $daten[user_id]."&lt;br/>\n";</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;// und für jeden Eintrag die Berechtigung neu setzen<br />
&nbsp;&nbsp;&nbsp;&nbsp;// and set a new user-level for each entry</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;$result2=mysql(DB_NAME, "INSERT INTO ".$table_prefix."usermeta VALUES ('','".$daten[user_id]."', 'wp_user_level', '".$value."')");</p>
<p>&nbsp;&nbsp;} // END OF while ($daten = mysql_fetch_array($result, MYSQL_ASSOC))</p>
<p>} // END OF while (list($key,$value)=each($user_roles))</p>
<p>mysql_close($cid);</p>
<p>?><br />
</code><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>UND? Hat es funktioniert? Ich würd mich über ein Feedback freuen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/quick-fix-fur-wordpress-berechtigungen-in-version-2-9-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>URL Rewrite Smack-Down: .htaccess vs. 404 Handler</title>
		<link>http://www.agentis.de/url-rewrite-smack-down-htaccess-vs-404-handler/</link>
		<comments>http://www.agentis.de/url-rewrite-smack-down-htaccess-vs-404-handler/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 20:57:09 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/4efbd85505e285ce</guid>
		<description><![CDATA[This is something for the geeks and SEO people. To have "nice" URLs the CMS must be capable of rewriting/translating them. If not, it can be done within the .htaccess-file to let the webserver do this task. In my eyes the webserver will do it faster, but several extensions for popular applications like Wordpress or [...]]]></description>
			<content:encoded><![CDATA[<p>This is something for the geeks and SEO people. To have "nice" URLs the CMS must be capable of rewriting/translating them. If not, it can be done within the .htaccess-file to let the webserver do this task. In my eyes the webserver will do it faster, but several extensions for popular applications like Wordpress or Joomla will do it more comfortable. Get some insights into this topic by reading the SEOmoz post.</p>

<blockquote><p>First, a quick refresher:  URL prettying and 301 redirection can both be done in .<em>htaccess </em>files, or in your 404 handler.  If you&#39;re not completely up to speed on how URL rewrites and 301s work in general, <a href="http://www.seomoz.org/blog/url-rewrites-and-301-redirects-how-does-it-all-work">this post</a> will definitely help. And if you didn't read last week's post on <a href="http://www.seomoz.org/blog/rewriterule-split-personality-explained">RewriteRule's split personality</a>, it's probably helpful background material for understanding today's post. [<a href="http://www.seomoz.org/blog/url-rewrite-smackdown-htaccess-vs-404-handler" target="_blank">more...</a>]</p></blockquote>]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/url-rewrite-smack-down-htaccess-vs-404-handler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RewriteRule&#8217;s Split Personality Explained</title>
		<link>http://www.agentis.de/rewriterules-split-personality-explained/</link>
		<comments>http://www.agentis.de/rewriterules-split-personality-explained/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 21:09:44 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/e83d6a8271f1a7d0</guid>
		<description><![CDATA[You should have heard the "RewriteRule" term several times. Read the article at SEOmoz to dig into it and gain some serious knowledge to control the indexing of Google and other search-engines.

Apache webservers have a really cool and useful little feature called RewriteRule.  It's sometimes referred to as the Swiss Army Knife of URL manipulation, because [...]]]></description>
			<content:encoded><![CDATA[<p>You should have heard the "RewriteRule" term several times. Read the article at SEOmoz to dig into it and gain some serious knowledge to control the indexing of Google and other search-engines.</p>

<blockquote><p>Apache webservers have a really cool and useful little feature called <a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html">RewriteRule</a>.  It's sometimes referred to as the Swiss Army Knife of URL manipulation, because it's got two very important, often-used abilities:
<ul>
	<li><strong>URL rewriting</strong>: turning dynamic, parameterized URLs into readable, keyword-loaded URLs</li>
	<li><strong>301s</strong>: to tell the browser (or search bot) that a page has been moved</li>
</ul>
These are VERY different tasks, with VERY different results sent to the browser or search bot. [<a href="http://feedproxy.google.com/~r/seomoz/~3/koWtlv0ORa4/rewriterule-split-personality-explained" target="_blank">more...</a>]</p></blockquote>

]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/rewriterules-split-personality-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OPENapps Launches Web App Marketplace to Bring Together Developers and Website Owners</title>
		<link>http://www.agentis.de/openapps-launches-web-app-marketplace-to-bring-together-developers-and-website-owners/</link>
		<comments>http://www.agentis.de/openapps-launches-web-app-marketplace-to-bring-together-developers-and-website-owners/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 22:00:57 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/9e14a04e0b00cca3</guid>
		<description><![CDATA[OPENapps, a marketplace for web applications, launches its beta service today.  OPENapps allows app developers to easily get their application to market and provides website owners a way to find and integrate apps into their sites while still maintaining their own branding. According to Joseph Puopolo, Director of Marketing and Community for the Toronto-based [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.openapps.com">OPENapps</a>, a marketplace for web applications, launches its beta service today.  OPENapps allows app developers to easily get their application to market and provides website owners a way to find and integrate apps into their sites while still maintaining their own branding. According to Joseph Puopolo, Director of Marketing and Community for the Toronto-based startup, OPENapps addresses two issues in the web apps marketplace:  First, site owners, particularly small and medium-sized businesses, want to have advanced functionality on their websites but often have neither the time, technological resources, nor money to implement them properly.  And second, web app developers often feel compelled to choose a single platform on which to develop their apps and struggle to both market and monetize their applications. <a href="http://feedproxy.google.com/~r/readwriteweb/~3/nqInhF5IfCA/openapps-launches-web-app-mark.php">more...</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/openapps-launches-web-app-marketplace-to-bring-together-developers-and-website-owners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Must-Have Apps for the New iPad Owner</title>
		<link>http://www.agentis.de/10-must-have-apps-for-the-new-ipad-owner/</link>
		<comments>http://www.agentis.de/10-must-have-apps-for-the-new-ipad-owner/#comments</comments>
		<pubDate>Sun, 30 May 2010 00:34:54 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/8961f03f7bf81d38</guid>
		<description><![CDATA[The iPad has finally made its international debut, meaning that thousands and thousands of new users will be enjoying Apple’s latest device over the coming weeks. With the launch of the iPad comes the international launch of the iPad App Store, making it possible for us to play Words With Friends with our friends in [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://mashable.com/category/ipad">iPad</a> has finally made its <a href="http://mashable.com/2010/05/28/ipad-international-launch/">international debut</a>, meaning that thousands and thousands of new users will be enjoying Apple’s latest device over the coming weeks. With the launch of the iPad comes the international launch of the iPad App Store, making it possible for us to play <a href="http://itunes.apple.com/ca/app/words-with-friends-hd/id364140796">Words With Friends</a> with our friends in Australia. There are already thousands of apps available in the App Store, and with the exception of apps focused on media services like Netflix, ABC or Pandora, most are also available internationally. We’ve been fortunate enough to have the iPad in our screen-smudging paws for the past two months and in that time we’ve surveyed well over 100 apps and games for the new platform. While this list could easily be four or five times as long as it is, we wracked our brains and decided to pick ten of our favorite iPad apps for the new iPad owner. <a href="http://feedproxy.google.com/~r/Mashable/~3/nFYwjKC2vHQ/">more...</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/10-must-have-apps-for-the-new-ipad-owner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome Extensions for web development</title>
		<link>http://www.agentis.de/chrome-extensions-for-web-development/</link>
		<comments>http://www.agentis.de/chrome-extensions-for-web-development/#comments</comments>
		<pubDate>Thu, 27 May 2010 17:00:00 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/1f33fc29f10ff35b</guid>
		<description><![CDATA[The Chrome Developer Tools are great for debugging HTML, JavaScript and CSS in Chrome. If you're writing a webpage or even a web app for the Chrome Web Store, you can inspect elements in the DOM, debug live JavaScript, and edit CSS styles directly in the current page. Extensions can make Google Chrome an even [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.chromium.org/devtools">Chrome Developer Tools</a> are great for debugging HTML, JavaScript and CSS in Chrome. If you're writing a webpage or even a web app for the <a href="https://chrome.google.com/webstore">Chrome Web Store</a>, you can inspect elements in the DOM, debug live JavaScript, and edit CSS styles directly in the current page. Extensions can make Google Chrome an even better web development environment by providing additional features that you can easily access in your browser. To help developers like you, we created a page that <a href="https://chrome.google.com/extensions/featured/web_dev">features extensions for web development</a>. <a href="http://feedproxy.google.com/~r/blogspot/amDG/~3/E33IhjSqZ4s/chrome-extensions-for-web-development.html">more...</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/chrome-extensions-for-web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opting Out of Google Analytics Tracking is Now Easy</title>
		<link>http://www.agentis.de/opting-out-of-google-analytics-tracking-is-now-easy/</link>
		<comments>http://www.agentis.de/opting-out-of-google-analytics-tracking-is-now-easy/#comments</comments>
		<pubDate>Tue, 25 May 2010 21:16:33 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/911ddebef4f7f58f</guid>
		<description><![CDATA[Google Analytics has quickly become a very popular Web analytics tool for publishers who want to learn more about their visitors. Not every user, however, is comfortable with the idea of giving even more data to Google and these publishers. Today, Google released the beta version of a browser plugin that allows users to opt-out [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/analytics/">Google Analytics</a> has quickly become a <a href="http://www.theregister.co.uk/2009/06/03/google_tracking_study/">very popular</a> Web analytics tool for publishers who want to learn more about their visitors. Not every user, however, is comfortable with the idea of giving even more data to Google and these publishers. Today, Google <a href="http://analytics.blogspot.com/2010/05/greater-choice-and-transparency-for.html">released</a> the beta version of a <a href="http://tools.google.com/dlpage/gaoptout">browser plugin</a> that allows users to opt-out of Google Analytics tracking. The plugin is available for Internet Explorer (versions 7 and 8), Google Chrome (4 and higher), and Mozilla Firefox (3.5 and higher). <a href="http://feedproxy.google.com/~r/readwriteweb/~3/-loQSdq6dhM/opting_out_of_google_analytics_tracking_is_now_eas.php">more...</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/opting-out-of-google-analytics-tracking-is-now-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snap Bird: Die Suchefunktion, die Twitter fehlt</title>
		<link>http://www.agentis.de/snap-bird-die-suchefunktion-die-twitter-fehlt/</link>
		<comments>http://www.agentis.de/snap-bird-die-suchefunktion-die-twitter-fehlt/#comments</comments>
		<pubDate>Sun, 23 May 2010 10:10:11 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">tag:google.com,2005:reader/item/a2186d25595617c0</guid>
		<description><![CDATA[Twitters Suchefunktion lässt zu wünschen übrig. Das praktische Tool Snap Bird erledigt das, was Twitter nicht machen will. Diese kleine aber feine Browseranwendung vom britischen Entwickler Remy Sharp macht all das, was ich eigentlich von der Twitter-Suche erwartet hätte. Mit dem nett gestalteten Dienst lassen sich beliebige Tweets aus der Vergangenheit finden – Twitters eigener [...]]]></description>
			<content:encoded><![CDATA[<p>Twitters Suchefunktion lässt zu wünschen übrig. Das praktische Tool Snap Bird erledigt das, was Twitter nicht machen will. Diese kleine aber feine Browseranwendung <a title="A Better Twitter Search" href="http://remysharp.com/2009/09/16/a-better-twitter-search/">vom britischen Entwickler Remy Sharp</a> macht all das, was ich eigentlich von der Twitter-Suche erwartet hätte. Mit dem nett gestalteten Dienst lassen sich beliebige Tweets aus der Vergangenheit finden – Twitters eigener Suchzeitraum variiert, liegt aber irgendwo zwischen einigen Tagen und Wochen. <a href="http://netzwertig.com/2010/05/23/snap-bird-die-suchefunktion-die-twitter-fehlt/">weiterlesen...</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/snap-bird-die-suchefunktion-die-twitter-fehlt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Was weiß Google über mich? Dafür gibt es jetzt das Google Dashboard.</title>
		<link>http://www.agentis.de/was-weiss-google-ueber-mich-dafuer-gibt-es-jetzt-das-google-dashboard/</link>
		<comments>http://www.agentis.de/was-weiss-google-ueber-mich-dafuer-gibt-es-jetzt-das-google-dashboard/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 13:00:50 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Aktuelle News]]></category>
		<category><![CDATA[Net-Finds]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.agentis.de/?p=276</guid>
		<description><![CDATA[Hab gerade auf Techcrunch einen Artikel zum neuen &#8220;Google Dashboard&#8221; gefunden. Damit möchte Google die Frage vieler Google-Account Inhaber beantworten: Was weiß Google über mich?

Ich war natürlich extrem neugierig, hab mich gleich eingeloggt und muss sagen: DATENKRAKE GOOGLE! Echt abgefahren, welche Google-Dienste man so alle im Laufe der Zeit abonniert hat und wieviele Daten/Beiträge dort [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techcrunch.com/2009/11/05/google-gives-you-a-privacy-dashboard-to-show-just-how-much-it-knows-about-you/"><img src="http://www.agentis.de/files/2009/11/Googledashboard-173x240.jpg" alt="Googledashboard" title="Googledashboard" width="173" height="240" class="alignleft size-thumbnail wp-image-277" /></a>Hab gerade auf <a href="http://www.techcrunch.com/2009/11/05/google-gives-you-a-privacy-dashboard-to-show-just-how-much-it-knows-about-you/" target="_blank">Techcrunch</a> einen Artikel zum neuen &#8220;<a href="http://www.google.com/dashboard/" target="_blank">Google Dashboard</a>&#8221; gefunden. Damit möchte Google die Frage vieler Google-Account Inhaber beantworten: <strong>Was weiß Google über mich?<br />
</strong><br />
Ich war natürlich extrem neugierig, hab mich gleich eingeloggt und muss sagen: <strong>DATENKRAKE GOOGLE</strong>! Echt abgefahren, welche Google-Dienste man so alle im Laufe der Zeit abonniert hat und wieviele Daten/Beiträge dort schlummern. Bei mir steht am Ende: <strong>&#8220;12 weitere Produkte sind noch nicht in diesem Dashboard verfügbar&#8221;. Wer hat weniger?</strong> ;-)</p>
<p>Positiv finde ich daran, dass alles auf einen Blick verfügbar ist und auch gleich die Deeplinks zum Ändern der Einstellungen mit dabei sind. Es hat also jeder selbst in der Hand, was man nutzt und welche Daten man freigibt. <strong>Fazit: Ich weiß jetzt, dass Google weiß, was ich letzten Sommer getan habe. ;-)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/was-weiss-google-ueber-mich-dafuer-gibt-es-jetzt-das-google-dashboard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tool-Tipp: Aufgaben und Termine verwalten mit ReminderFox</title>
		<link>http://www.agentis.de/aufgaben-und-termine-verwalten-mit-reminderfox/</link>
		<comments>http://www.agentis.de/aufgaben-und-termine-verwalten-mit-reminderfox/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 06:59:20 +0000</pubDate>
		<dc:creator>Jens Wilde</dc:creator>
				<category><![CDATA[Aktuelle News]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.agentis.de/?p=167</guid>
		<description><![CDATA[ Fliegen bei Ihnen auch immer kleine Klebezettel durch die Gegend? Ist die TO-DO-Liste in Excel/Word/Was-auch-immer meistens veraltet?
Mir ging es bisher genauso. Lange habe ich nach einem Tool gesucht, mit dem ich meine täglichen Aufgaben und TO-DO´s verwalten kann, ohne Extra-Programme und jederzeit verfügbar.
Vor ein paar Wochen bin ich dann auf das Firefox-Plugin &#8220;ReminderFox&#8221; gestoßen. [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_168" class="wp-caption alignleft" style="width: 250px"><a href="http://www.agentis.de/files/2009/09/screenshot-reminderfox.png" rel="lightbox"><img src="http://www.agentis.de/files/2009/09/screenshot-reminderfox-240x132.png" alt="Screenshot: ReminderFox (AddOn für Firefox) zur Aufgaben und Termin-Planung" title="Screenshot: ReminderFox (AddOn für Firefox) zur Aufgaben und Termin-Planung" width="240" height="132" class="size-thumbnail wp-image-168" /></a><p class="wp-caption-text">Screenshot: ReminderFox (AddOn für Firefox) zur Aufgaben und Termin-Planung</p></div> Fliegen bei Ihnen auch immer kleine Klebezettel durch die Gegend? Ist die TO-DO-Liste in Excel/Word/Was-auch-immer meistens veraltet?</p>
<p>Mir ging es bisher genauso. Lange habe ich nach einem Tool gesucht, mit dem ich meine täglichen Aufgaben und TO-DO´s verwalten kann, ohne Extra-Programme und jederzeit verfügbar.</p>
<p>Vor ein paar Wochen bin ich dann auf das Firefox-Plugin &#8220;<a href="https://addons.mozilla.org/de/firefox/addon/1191" target="_blank">ReminderFox</a>&#8221; gestoßen. Es &#8220;lebt&#8221; in der Statuszeile und ist sehr unaufdringlich. Der Funktionsumfang ist super und die Bedienbarkeit wesentlich einfacher, als anderes was ich bisher ausprobiert habe. Und das war einiges.</p>
<p>Größter Pluspunkt ist, dass die Daten auf einem eigenen Web-Account abgelegt werden und somit von verschiedenen Rechnern aus genutzt und bearbeitet werden können. Ob eine Nutzung in kleinen Gruppen in der Praxis funktioniert, konnte ich bisher nicht testen, da mir die Gruppenmitglieder fehlten. ;-)</p>
<p>Weitere Infos zum Plugin auf der Entwickler-Webseite: <a href="http://reminderfox.mozdev.org/" target="_blank">ReminderFox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.agentis.de/aufgaben-und-termine-verwalten-mit-reminderfox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
