<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>techbits.de</title>
	<link>http://www.techbits.de</link>
	<description>thoughts on hardware, software, development and tech news</description>
	<lastBuildDate>Fri, 02 Dec 2011 22:51:07 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Using the Javascript Console: Creating users with avatar images</title>
		<description><![CDATA[Automatically creating users has become easier with the new CSV user import features in Alfresco 4.0 or the Create Bulk Users extension from share-extras. If you want to be really flexible and set all the user properties or even set custom &#8230; <a href="http://www.techbits.de/2011/12/02/using-the-javascript-console-creating-users-with-avatar-images/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2011/12/02/using-the-javascript-console-creating-users-with-avatar-images/</link>
			</item>
	<item>
		<title>Using the Javascript Console: Permission reporting</title>
		<description><![CDATA[I just came across an old question in the german Alfresco forum on how to create a report of permissions on all nodes in the repository. I thought to me this would be really easy to do with the Javascript &#8230; <a href="http://www.techbits.de/2011/11/06/using-the-javascript-console-permission-reporting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2011/11/06/using-the-javascript-console-permission-reporting/</link>
			</item>
	<item>
		<title>Using the tag editor component in Alfresco 4.0</title>
		<description><![CDATA[This is just a short post to note down what I found out about the Insitu tag editor component from Alfresco 4.0 and how to use it in your own code. I have not actually used it yet, so the &#8230; <a href="http://www.techbits.de/2011/11/05/using-the-tag-editor-component-in-alfresco-4-0/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2011/11/05/using-the-tag-editor-component-in-alfresco-4-0/</link>
			</item>
	<item>
		<title>Building a Google Plus inspired image gallery</title>
		<description><![CDATA[I recently built a Google Plus inspired image Gallery as an extension for the Alfresco ECM product which won first place in Alfresco developer challenge. Now I&#8217;d like to share my insights, explain how I built it and give you &#8230; <a href="http://www.techbits.de/2011/10/25/building-a-google-plus-inspired-image-gallery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2011/10/25/building-a-google-plus-inspired-image-gallery/</link>
			</item>
	<item>
		<title>Using the Javascript Console: Creating and populating datalists</title>
		<description><![CDATA[This is the first post in a series of posts to showcase the abilities of the Alfresco Javascript Console. The Javascript Console is an Alfresco admin console extension to help developers and administrators to easily develop and execute Javascript against &#8230; <a href="http://www.techbits.de/2011/10/18/using-the-javascript-console-creating-and-populating-datalists/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2011/10/18/using-the-javascript-console-creating-and-populating-datalists/</link>
			</item>
	<item>
		<title>Adding a like button to your Alfresco extensions</title>
		<description><![CDATA[Alfresco 4.0 introduces social features into the Share client &#8211; the most prominent being the Like button. I&#8217;d like to give you a short tutorial on how to add the new Like button to your own Alfresco 4.0 Share extensions. &#8230; <a href="http://www.techbits.de/2011/10/14/adding-a-like-button-to-your-alfresco-extensions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2011/10/14/adding-a-like-button-to-your-alfresco-extensions/</link>
			</item>
	<item>
		<title>Recursive file iteration in Java</title>
		<description><![CDATA[In a java frameworks talk I gave recently I showed the following example for finding files recursively&#8230; public void listFilesInDirectory(File dir) { File[] files = dir.listFiles(); if (files != null) { for (File f : files) { if (f.isDirectory()) { &#8230; <a href="http://www.techbits.de/2010/02/11/recursive-file-iteration-in-java/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2010/02/11/recursive-file-iteration-in-java/</link>
			</item>
	<item>
		<title>Android exploration continued</title>
		<description><![CDATA[I extended my android application with a preferences screen now, which is quite easy to do. A tutorial for creating a Preferences Activity got me started &#8211; unfortunaltely the xml preferences definition it uses is incorrect. The tags are names &#8230; <a href="http://www.techbits.de/2010/01/04/android-exploration-continued/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2010/01/04/android-exploration-continued/</link>
			</item>
	<item>
		<title>First Steps with Android</title>
		<description><![CDATA[In the last few days I started out with some android development. Here are some things learned so far developing my first app: The Android Tutorials are a great starting point, though i only followed through with the HelloWorld Tutorial. &#8230; <a href="http://www.techbits.de/2009/12/30/first-steps-with-android/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2009/12/30/first-steps-with-android/</link>
			</item>
	<item>
		<title>Adding Googles GData Java API to your maven repository</title>
		<description><![CDATA[The google gdata apis do not come with maven POM-files. Someone went through the trouble to &#8220;mavenize&#8221; the source but it is limited to linux as build plattform and currently out of date (compile errors). So I installed the JARs &#8230; <a href="http://www.techbits.de/2009/08/06/adding-googles-gdata-java-api-to-your-maven-repository/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<link>http://www.techbits.de/2009/08/06/adding-googles-gdata-java-api-to-your-maven-repository/</link>
			</item>
</channel>
</rss>

