<?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>doonot.com</title>
	<atom:link href="http://www.doonot.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.doonot.com</link>
	<description></description>
	<lastBuildDate>Fri, 09 Sep 2011 15:03:48 +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>PL/SQL script which removes all data from all tables of a database</title>
		<link>http://www.doonot.com/plsql-script-which-removes-all-data-from-all-tables-of-a-database/</link>
		<comments>http://www.doonot.com/plsql-script-which-removes-all-data-from-all-tables-of-a-database/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 15:00:57 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[11]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[delete]]></category>
		<category><![CDATA[drop]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[pl/sql]]></category>
		<category><![CDATA[remove data from table]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[truncate]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=570</guid>
		<description><![CDATA[I spent quite a bit of time today, because I needed something that removes all data from my oracle 11.0 database. I didn&#8217;t want to perform a drop command, as the tables should stay there. I tried it with the truncate command which failed because of the constraints. This script disables all constraints, performs truncate [...]]]></description>
			<content:encoded><![CDATA[<p>I spent quite a bit of time today, because I needed something that removes all data from my oracle 11.0 database. I didn&#8217;t want to perform a drop command, as the tables should stay there. I tried it with the truncate command which failed because of the constraints.</p>
<p>This script disables all constraints, performs truncate commands on each table and re-enables the constraints. It&#8217;s generic and should work out of the box, that means you don&#8217;t have to change anything. Make sure that you run it as database user and not as sys user, otherwise it will fuck up the content of your tables <img src='http://www.doonot.com/wp-includes/images/smilies/emoticon_smile.png' alt=':)' class='wp-smiley' /> </p>
<div class="codesnip-container" >
<div class="sql codesnip" style="font-family:monospace;"><span class="coMULTI">/******************************************************************************<br />
&nbsp; &nbsp;NAME: &nbsp; &nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; clean_stm_database.sql<br />
&nbsp; &nbsp;PURPOSE: &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; This script first disables all constraints on all tables. In <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; the second step, all data is being truncated on all tables. <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Last but not least, all constraints are re-enabled<br />
&nbsp; &nbsp;INSTRUCTIONS:<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Run this script as database user (e.g. STM_T)<br />
&nbsp; &nbsp;REVISIONS:<br />
&nbsp; &nbsp;Ver &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Date &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Author &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Description<br />
&nbsp; &nbsp;&#8212;&#8212;&#8212; &nbsp; &nbsp;&#8212;&#8212;&#8212;- &nbsp; &nbsp;&#8212;&#8212;&#8212;&#8212;&#8212; &nbsp; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
&nbsp; &nbsp;1.0.0 &nbsp; &nbsp; &nbsp; &nbsp;09.09.2011 &nbsp; &nbsp;Patrick Breiter &nbsp; draft version<br />
******************************************************************************/</span></p>
<p>rem <span class="kw1">DROP</span> procedure clean_database;<br />
<span class="kw1">SET</span> serveroutput <span class="kw1">ON</span>;</p>
<p><span class="kw1">CREATE</span> <span class="kw1">OR</span> <span class="kw1">REPLACE</span> procedure clean_database<br />
<span class="kw1">AS</span><br />
&nbsp; table_name &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;varchar2<span class="br0">&#40;</span>255<span class="br0">&#41;</span>;<br />
&nbsp; enabled_constraint &nbsp; &nbsp;varchar2<span class="br0">&#40;</span>255<span class="br0">&#41;</span>;<br />
&nbsp; disabled_constraint &nbsp; varchar2<span class="br0">&#40;</span>255<span class="br0">&#41;</span>;</p>
<p>BEGIN</p>
<p>&nbsp; dbms_output<span class="sy0">.</span>enable<span class="br0">&#40;</span>1000000<span class="br0">&#41;</span>;<br />
&nbsp; <br />
&nbsp; <span class="co1">&#8211; this loop disables all constraints in every table</span><br />
&nbsp; <span class="kw1">FOR</span> c <span class="kw1">IN</span><br />
&nbsp; <span class="br0">&#40;</span><span class="kw1">SELECT</span> c<span class="sy0">.</span>owner<span class="sy0">,</span> c<span class="sy0">.</span>table_name<span class="sy0">,</span> c<span class="sy0">.</span>constraint_name<br />
&nbsp; &nbsp;<span class="kw1">FROM</span> user_constraints c<span class="sy0">,</span> user_tables t<br />
&nbsp; &nbsp;<span class="kw1">WHERE</span> c<span class="sy0">.</span>table_name <span class="sy0">=</span> t<span class="sy0">.</span>table_name<br />
&nbsp; &nbsp;<span class="kw1">AND</span> c<span class="sy0">.</span><span class="kw1">STATUS</span> <span class="sy0">=</span> <span class="st0">&#8216;ENABLED&#8217;</span><br />
&nbsp; &nbsp;<span class="kw1">ORDER</span> <span class="kw1">BY</span> c<span class="sy0">.</span>constraint_type <span class="kw1">DESC</span><span class="br0">&#41;</span><br />
&nbsp; LOOP<br />
&nbsp; &nbsp; disabled_constraint:<span class="sy0">=</span>c<span class="sy0">.</span>constraint_name;<br />
&nbsp; &nbsp; dbms_utility<span class="sy0">.</span>exec_ddl_statement<span class="br0">&#40;</span><span class="st0">&#8216;alter table &#8216;</span> <span class="sy0">||</span> c<span class="sy0">.</span>owner <span class="sy0">||</span> <span class="st0">&#8216;.&#8217;</span> <span class="sy0">||</span> c<span class="sy0">.</span>table_name <span class="sy0">||</span> <span class="st0">&#8216; disable constraint &#8216;</span> <span class="sy0">||</span> c<span class="sy0">.</span>constraint_name<span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; dbms_output<span class="sy0">.</span>put_line<span class="br0">&#40;</span><span class="st0">&#8216;disabled: &#8216;</span> <span class="sy0">||</span> disabled_constraint<span class="br0">&#41;</span>;<br />
&nbsp; END LOOP;</p>
<p>&nbsp; <span class="co1">&#8211; this loop truncates all data from every table</span><br />
&nbsp; <span class="kw1">FOR</span> tab <span class="kw1">IN</span> <span class="br0">&#40;</span><span class="kw1">SELECT</span> table_name <span class="kw1">FROM</span> user_tables <span class="kw1">ORDER</span> <span class="kw1">BY</span> table_name <span class="kw1">DESC</span><span class="br0">&#41;</span> <br />
&nbsp; loop<br />
&nbsp; &nbsp; table_name:<span class="sy0">=</span>tab<span class="sy0">.</span>table_name;<br />
&nbsp; &nbsp; execute immediate <span class="st0">&#8216;truncate table &#8216;</span><span class="sy0">||</span> table_name;<br />
&nbsp; &nbsp; dbms_output<span class="sy0">.</span>put_line<span class="br0">&#40;</span><span class="st0">&#8216;truncated: &#8216;</span> <span class="sy0">||</span> table_name<span class="br0">&#41;</span>;<br />
&nbsp; end loop;<br />
&nbsp; <br />
&nbsp; <span class="co1">&#8211; this loop re-enables all constraints on all tables</span><br />
&nbsp; <span class="kw1">FOR</span> c <span class="kw1">IN</span><br />
&nbsp; <span class="br0">&#40;</span><span class="kw1">SELECT</span> c<span class="sy0">.</span>owner<span class="sy0">,</span> c<span class="sy0">.</span>table_name<span class="sy0">,</span> c<span class="sy0">.</span>constraint_name<br />
&nbsp; &nbsp;<span class="kw1">FROM</span> user_constraints c<span class="sy0">,</span> user_tables t<br />
&nbsp; &nbsp;<span class="kw1">WHERE</span> c<span class="sy0">.</span>table_name <span class="sy0">=</span> t<span class="sy0">.</span>table_name<br />
&nbsp; &nbsp;<span class="kw1">AND</span> c<span class="sy0">.</span><span class="kw1">STATUS</span> <span class="sy0">=</span> <span class="st0">&#8216;DISABLED&#8217;</span><br />
&nbsp; &nbsp;<span class="kw1">ORDER</span> <span class="kw1">BY</span> c<span class="sy0">.</span>constraint_type<span class="br0">&#41;</span><br />
&nbsp; LOOP<br />
&nbsp; &nbsp; enabled_constraint:<span class="sy0">=</span>c<span class="sy0">.</span>constraint_name;<br />
&nbsp; &nbsp; dbms_utility<span class="sy0">.</span>exec_ddl_statement<span class="br0">&#40;</span><span class="st0">&#8216;alter table &#8216;</span> <span class="sy0">||</span> c<span class="sy0">.</span>owner <span class="sy0">||</span> <span class="st0">&#8216;.&#8217;</span> <span class="sy0">||</span> c<span class="sy0">.</span>table_name <span class="sy0">||</span> <span class="st0">&#8216; enable constraint &#8216;</span> <span class="sy0">||</span> c<span class="sy0">.</span>constraint_name<span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; dbms_output<span class="sy0">.</span>put_line<span class="br0">&#40;</span><span class="st0">&#8216;re-enabled: &#8216;</span> <span class="sy0">||</span> disabled_constraint<span class="br0">&#41;</span>;<br />
&nbsp; END LOOP;</p>
<p>END;<br />
<span class="sy0">/</span></p>
<p>execute clean_database;</p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/plsql-script-which-removes-all-data-from-all-tables-of-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Änderungen seit facts 1.0.0</title>
		<link>http://www.doonot.com/anderungen-seit-facts-1-0-0/</link>
		<comments>http://www.doonot.com/anderungen-seit-facts-1-0-0/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 13:43:34 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[1.1.0]]></category>
		<category><![CDATA[1.2.0]]></category>
		<category><![CDATA[1.3.0]]></category>
		<category><![CDATA[1.3.1]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[facts]]></category>
		<category><![CDATA[fakten]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[sinnlos]]></category>
		<category><![CDATA[unnützes]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[useless]]></category>
		<category><![CDATA[wissen]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=566</guid>
		<description><![CDATA[Facts 1.3.1: - Fehlerbehebung: &#8220;Next&#8221;-Button funktionierte nach Update nicht mehr. Facts 1.3.0: + Zufallsgenerator &#8211;> via Einstellungen aktivieren. + Wenn Facts wegen ihrer Länge nicht auf Facebook gepostet werden können, wird es angezeigt. + Neue Animation, wenn Gerät geschüttelt wird und neuen Fact lädt. Facts 1.2.0: + Suchfunktion für Favoriten + Alle Facts können nun [...]]]></description>
			<content:encoded><![CDATA[<p>Facts 1.3.1:<br />
- Fehlerbehebung: &#8220;Next&#8221;-Button funktionierte nach Update nicht mehr. </p>
<p>Facts 1.3.0:<br />
+ Zufallsgenerator &#8211;> via Einstellungen aktivieren.<br />
+ Wenn Facts wegen ihrer Länge nicht auf Facebook gepostet werden können, wird es angezeigt.<br />
+ Neue Animation, wenn Gerät geschüttelt wird und neuen Fact lädt. </p>
<p>Facts 1.2.0:<br />
+ Suchfunktion für Favoriten<br />
+ Alle Facts können nun in einer eigenen Tabelle gelesen werden. Suche in allen Facts<br />
+ Andere Benachrichtigung, wenn ein Fact entfavorisiert wird in der Detail Ansicht<br />
+ Weitere kleinere Fehlerbehebungen (Angepasste Schriftart beim lesen von Favoriten)<br />
+ 85 neue Facts<br />
+ Drastische Performance Verbesserung<br />
+ Verbessertes Memory Management</p>
<p>Facts 1.1.0:<br />
+ Facebook Integration!<br />
+ Neue Icons!<br />
+ Schüttle dein Gerät, um den nächsten Fact zu laden<br />
+ Volle Retina Display Unterstützung<br />
+ Verkleinertes Installationspacket<br />
+ Neues Start Bild<br />
+ Einige Fehler Behebungen<br />
+ Dialog wird nun länger angezeigt, wenn ein Favorit hinzugefügt oder entfernt wird.<br />
+ Neue Icons, wenn Favoriten hinzugefügt oder entfernt werden.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/anderungen-seit-facts-1-0-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>facts iPhone app</title>
		<link>http://www.doonot.com/facts-iphone-app/</link>
		<comments>http://www.doonot.com/facts-iphone-app/#comments</comments>
		<pubDate>Fri, 06 May 2011 20:53:32 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Bekanntgabe]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[XCode]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[awesome facts]]></category>
		<category><![CDATA[Breiter]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fact]]></category>
		<category><![CDATA[facts]]></category>
		<category><![CDATA[fakt]]></category>
		<category><![CDATA[favorit]]></category>
		<category><![CDATA[favoriten]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[ipad 2]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone 4]]></category>
		<category><![CDATA[iphone development]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[liste]]></category>
		<category><![CDATA[luzern]]></category>
		<category><![CDATA[patrick]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Schweiz]]></category>
		<category><![CDATA[sinlos]]></category>
		<category><![CDATA[sinnlos]]></category>
		<category><![CDATA[sinnloses wissen]]></category>
		<category><![CDATA[unnütz]]></category>
		<category><![CDATA[unnützes]]></category>
		<category><![CDATA[unnützes wissen]]></category>
		<category><![CDATA[wissen]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=540</guid>
		<description><![CDATA[So, ich habe eine neue iPhone Applikation am start mit dem Namen &#8220;Facts&#8221;. Als ich mit dem iPhone Programmieren begonnen habe, wollte ich eine Applikation erstellen, mit der man Zugriff auf Tausende von Fakten rund ums Leben hat. Ich habe begonnen überall im Internet solche Facts zu suchen und habe bis heute über 2900 zusammen. [...]]]></description>
			<content:encoded><![CDATA[<p>So, ich habe eine neue iPhone Applikation am start mit dem Namen &#8220;Facts&#8221;.</p>
<p>Als ich mit dem iPhone Programmieren begonnen habe, wollte ich eine Applikation erstellen, mit der man Zugriff auf Tausende von Fakten rund ums Leben hat. Ich habe begonnen überall im Internet solche Facts zu suchen und habe bis heute über 2900 zusammen.</p>
<p>Ich werde nun einige Screenshots zeigen und die App kurz erklären:</p>
<p>Der Willkommensscreen sieht wie folgt aus. Die interne Facts Datenbank wird überprüft.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto.png"><img class="alignnone size-full wp-image-541" title="Foto" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto.png" alt="" width="60%" /></a></p>
<p>Der Hauptscreen der App sieht so aus. Hier kann man den Fact lesen und mit den Vor- und Zurückknöpfen navigieren. Desweiteren gibt es eine Favoriten Funktion, welche den jetztigen Fact zu den Favoriten legt. Dafür muss man auf den Stern klicken. Wenn der Fact in der Vergangenheit schon einmal gelesen wurde, dann wird das angezeigt. Somit weisst du immer, ob du alte Facts liest, die du schon kennst. Schüttle dein Gerät um zum nächsten Fact zu gelangen.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto1.png"><img class="alignnone size-full wp-image-544" title="Foto(1)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto1.png" alt="" width="60%" /></a><br />
Klicke hier, um die ganze Review zu lesen.<br />
<span id="more-540"></span></p>
<p>Ein Klick auf den Info Button zeigt folgendes Bild. Die Version ist ersichtlich, wer die Applikation entwickelt hat, und wer die Icons entworfen hat, welche in der App verwendet werden.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto2.png"><img class="alignnone size-full wp-image-547" title="Foto(2)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto2.png" alt="" width="60%" /></a></p>
<p>Wenn ein Fact favorisiert wird, dann wird kurz ausgegeben, dass der Fact erfolgreich zu den Favoriten hinzugefügt wurde:</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto3.png"><img class="alignnone size-full wp-image-549" title="Foto(3)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto3.png" alt="" width="60%" /></a></p>
<p>Wenn du den Fact &#8220;entfavorisieren&#8221; möchtest, dann kannst du auf den aktivierten, gelben Stern klicken, und folgender Screen erscheint:</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto4.png"><img class="alignnone size-full wp-image-551" title="Foto(4)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto4.png" alt="" width="60%" /></a></p>
<p>Ab Version 1.1.0 können Facts auch auf Facebook gepostet werden. Dafür klickst du einfach auf den Facebook Knopf. Das aller erste Mal fragt Facebook dich, ob du der App gestattest, an deine Pinnwand zu posten. Wenn du mit der Anmeldung fertig bist, kommt die Bestätigungsmeldung. Klicke nun auf veröffentlichen!</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto5.png"><img class="alignnone size-full wp-image-553" title="Foto(5)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto5.png" alt="" width="60%" /></a></p>
<p>Um eine Liste deiner Favoriten zu sehen, klickst du auf das Favoriten-Tab. Eine neue Seite erscheint mit all deinen favorisierten Facts.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto6.png"><img class="alignnone size-full wp-image-555" title="Foto(6)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto6.png" alt="" width="60%" /></a></p>
<p>Um einen einzelnen favorisierten Fact zu lesen, klickst du einfach auf den Fact in der Tabellen Ansicht. Eine neue Seite erscheint. Dort kannst du mit dem &#8220;Favorit entfernen&#8221; Button den Favorit von der Liste entfernen. Du hast hier auch die Möglichkeit, den Fact an deine Facebook Pinwand zu posten:</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto7.png"><img class="alignnone size-full wp-image-556" title="Foto(7)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto7.png" alt="" width="60%"  /></a></p>
<p>Wenn du weitere Facts kennen solltest, dann kannst du diese mit der letzten Funktion einsenden. Nachdem sie geprüft wurden, werden sie der App hinzugefügt:</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/05/Foto8.png"><img class="alignnone size-full wp-image-557" title="Foto(8)" src="http://www.doonot.com/wp-content/uploads/2011/05/Foto8.png" alt="" width="60%" /></a></p>
<p>Facts kann im Appstore oder direkt in <a href="http://itunes.apple.com/us/app/facts/id434894484?mt=8&#038;ls=1">iTunes</a> für 1.10 CHF heruntergeladen werden. Wenn du eine Website hast, und eine Review schreiben möchtest, dann gibt doch Bescheid, damit ich dir einen Promocode für einen gratis Download senden kann.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/facts-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to dismiss keyboard in uitextview</title>
		<link>http://www.doonot.com/how-to-dismiss-keyboard-in-uitextview/</link>
		<comments>http://www.doonot.com/how-to-dismiss-keyboard-in-uitextview/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 15:02:16 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Anleitung]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[dismiss]]></category>
		<category><![CDATA[dissmis]]></category>
		<category><![CDATA[done]]></category>
		<category><![CDATA[first]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[iboutlet]]></category>
		<category><![CDATA[isequaltostring]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[range]]></category>
		<category><![CDATA[replacement]]></category>
		<category><![CDATA[resignfirstresponder]]></category>
		<category><![CDATA[responder]]></category>
		<category><![CDATA[return]]></category>
		<category><![CDATA[shouldchangetextinrange]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[uitextview]]></category>
		<category><![CDATA[uitextviewdelegate]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[XCode]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=531</guid>
		<description><![CDATA[In my iPhone application I had a UITextView and I wanted to allow the user to insert text and submit it. The problem was that the keyboard didn&#8217;t disappear when you clicked on return or done. I searched quite a bit and found this working solution: In your controller .h file: @interface YourController : UIViewController [...]]]></description>
			<content:encoded><![CDATA[<p>In my iPhone application I had a UITextView and I wanted to allow the user to insert text and submit it. The problem was that the keyboard didn&#8217;t disappear when you clicked on return or done. I searched quite a bit and found this working solution:</p>
<p>In your controller .h file:</p>
<div class="codesnip-container" >
<div class="objc codesnip" style="font-family:monospace;"><span class="kw1">@interface</span> YourController <span class="sy0">:</span> UIViewController &nbsp;<span class="br0">&#123;</span><br />
IBOutlet UITextView <span class="sy0">*</span>textView;<br />
<span class="br0">&#125;</span></div>
</div>
<p>In your controller.m file:</p>
<div class="codesnip-container" >
<div class="objc codesnip" style="font-family:monospace;"><span class="sy0">-</span> <span class="br0">&#40;</span><span class="kw4">BOOL</span><span class="br0">&#41;</span>textView<span class="sy0">:</span><span class="br0">&#40;</span>UITextView <span class="sy0">*</span><span class="br0">&#41;</span>textView shouldChangeTextInRange<span class="sy0">:</span><span class="br0">&#40;</span><span class="kw4">NSRange</span><span class="br0">&#41;</span>range replacementText<span class="sy0">:</span><span class="br0">&#40;</span><a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/"><span class="kw5">NSString</span></a> <span class="sy0">*</span><span class="br0">&#41;</span>text <span class="br0">&#123;</span><br />
NSLog<span class="br0">&#40;</span><span class="co3">@</span><span class="st0">&quot;called&quot;</span><span class="br0">&#41;</span>;<br />
<span class="kw1">if</span><span class="br0">&#40;</span><span class="br0">&#91;</span>text isEqualToString<span class="sy0">:</span><span class="co3">@</span><span class="st0">&quot;<span class="es0">\n</span>&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
<span class="br0">&#91;</span>textView resignFirstResponder<span class="br0">&#93;</span>;<br />
<span class="kw1">return</span> <span class="kw2">NO</span>;<br />
<span class="br0">&#125;</span><br />
<span class="kw1">return</span> <span class="kw2">YES</span>;<br />
<span class="br0">&#125;</span></div>
</div>
<p>This function gets called every time you insert a character. If you click on Return/Finish/Whatever, the keyboard will be dismissed.<br />
If it doesnt work, open Interface Builder and map your UITextView with the Files owner and assign delegate. Put your comments into the comment section.</p>
<p><script type="text/javascript">// < ![CDATA[
 google_ad_client = "ca-pub-1445556659678019"; /* Horizontaler Banner */ google_ad_slot = "5289321608"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/how-to-dismiss-keyboard-in-uitextview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>stackoverflow</title>
		<link>http://www.doonot.com/stackoverflow/</link>
		<comments>http://www.doonot.com/stackoverflow/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 09:59:21 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Service]]></category>
		<category><![CDATA[answer]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[overflow]]></category>
		<category><![CDATA[programmers]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[stackoverflow]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=527</guid>
		<description><![CDATA[For programmers it&#8217;s quite important to get help from more experienced users. As none of my friends are programmers, I have to search the internet for any solutions. Since a while I am using stackoverflow. That&#8217;s a website where you can ask a particular question and most likely you will get an answer/solution. Based on [...]]]></description>
			<content:encoded><![CDATA[<p>For programmers it&#8217;s quite important to get help from more experienced users. As none of my friends are programmers, I have to search the internet for any solutions. Since a while I am using stackoverflow. That&#8217;s a website where you can ask a particular question and most likely you will get an answer/solution. Based on your reputation, your willingness to support other users, you can collect badget and your reputation increases.</p>
<p><a href="http://stackoverflow.com/users/569077/dooonot"><br />
<img src="http://stackoverflow.com/users/flair/569077.png" width="208" height="58" alt="profile for dooonot at Stack Overflow, Q&#038;A for professional and enthusiast programmers" title="profile for dooonot at Stack Overflow, Q&#038;A for professional and enthusiast programmers"/><br />
</a></p>
<p>I love this website and will hopefully be able to answer some questions in the future ;)</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-1445556659678019";
/* Horizontaler Banner */
google_ad_slot = "5289321608";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/stackoverflow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apple wireless keyboard unboxing and installing</title>
		<link>http://www.doonot.com/apple-wireless-keyboard-unboxing-and-installing/</link>
		<comments>http://www.doonot.com/apple-wireless-keyboard-unboxing-and-installing/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 14:52:01 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[Anleitung]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Fotos]]></category>
		<category><![CDATA[Macbook Pro]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[unboxing]]></category>
		<category><![CDATA[white]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=507</guid>
		<description><![CDATA[One week ago I bought the Apple Cinema Display 27 Inch and I used my old cabled keyboard from Apple. This keyboard was like 2 years old and the &#8220;T&#8221; key didn&#8217;t work properly So I decided to go to the next Apple Store to buy the wireless keyboard. As you can see, it cost [...]]]></description>
			<content:encoded><![CDATA[<p>One week ago I bought the Apple Cinema Display 27 Inch and I used my old cabled keyboard from Apple. This keyboard was like 2 years old and the &#8220;T&#8221; key didn&#8217;t work properly <img src='http://www.doonot.com/wp-includes/images/smilies/emoticon_smile.png' alt=':)' class='wp-smiley' /> So I decided to go to the next Apple Store to buy the wireless keyboard.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/Foto.jpg"><img src="http://www.doonot.com/wp-content/uploads/2011/03/Foto.jpg" alt="" title="Foto" width="100%"  class="alignnone size-full wp-image-508" /></a><br />
<span id="more-507"></span><br />
As you can see, it cost me 79 swiss francs which is equal to 69€.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/Foto2.jpg"><img src="http://www.doonot.com/wp-content/uploads/2011/03/Foto2.jpg" alt="" title="Foto(2)" width="100%"  class="alignnone size-full wp-image-510" /></a></p>
<p>There was no real packing. I only got it with this transparent cover.</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/Foto3.jpg"><img src="http://www.doonot.com/wp-content/uploads/2011/03/Foto3.jpg" alt="" title="Foto(3)" width="100%" class="alignnone size-full wp-image-512" /></a></p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/Foto4.jpg"><img src="http://www.doonot.com/wp-content/uploads/2011/03/Foto4.jpg" alt="" title="Foto(4)" width="100%" class="alignnone size-full wp-image-513" /></a></p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/Foto5.jpg"><img src="http://www.doonot.com/wp-content/uploads/2011/03/Foto5.jpg" alt="" title="Foto(5)" width="100%" class="alignnone size-full wp-image-514" /></a></p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/Foto6.jpg"><img src="http://www.doonot.com/wp-content/uploads/2011/03/Foto6.jpg" alt="" title="Foto(6)" width="100%" class="alignnone size-full wp-image-515" /></a></p>
<p>I had to open this screw in order to replace the battery that was shipped as it was empty. Just use a flat screwdriver and replace the AA batteries.</p>
<p>I expected from Apple that I only have to press the on button on the right side of the keyboard to use it, but that didn&#8217;t really work. Click on the Bluetooth Symbol on the upper right of your screen and you should see the Apple Keyboard. Click on it:</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/1.png"><img src="http://www.doonot.com/wp-content/uploads/2011/03/1.png" alt="" title="1" width="100%" class="alignnone size-full wp-image-518" /></a></p>
<p>In order to connect your keyboard to your Mac, you have to enter the numbers shown on the screen. Confirm by pressing the enter button. </p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/03/koppeln.png"><img src="http://www.doonot.com/wp-content/uploads/2011/03/koppeln.png" alt="" title="koppeln" width="100%" class="alignnone size-full wp-image-519" /></a></p>
<p>That&#8217;s basically it. You should now be able to use your keyboard like your cabled one. I hope this helps as I didn&#8217;t exactly know how to connect the keyboard to the Mac. If you have questions or feedback, please post it in the comment section. Cheers</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-1445556659678019";
/* Horizontaler Banner */
google_ad_slot = "5289321608";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/apple-wireless-keyboard-unboxing-and-installing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sqlite3 umlauts/special character problem</title>
		<link>http://www.doonot.com/sqlite3-umlautsspecial-character-problem/</link>
		<comments>http://www.doonot.com/sqlite3-umlautsspecial-character-problem/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 13:42:36 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Anleitung]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Weblog]]></category>
		<category><![CDATA[XCode]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[chmod+x]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[facts]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[special]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[sqlite3]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[umlaute]]></category>
		<category><![CDATA[umlauts]]></category>
		<category><![CDATA[utf8]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=499</guid>
		<description><![CDATA[When you are developing an iPhone application, you will most likely have to use an internal database to store your data. I also needed a database for my Facts iPhone application. As the app contains german words, it also contains umlauts and special characters like äöü and all this stuff that is not present in [...]]]></description>
			<content:encoded><![CDATA[<p>When you are developing an iPhone application, you will most likely have to use an internal database to store your data. I also needed a database for my Facts iPhone application. As the app contains german words, it also contains umlauts and special characters like äöü and all this stuff that is not present in the english language. However, I was not able to support these special characters although I used UTF8 encryption in my application.</p>
<p>To create the database, I used the following commands in terminal:</p>
<blockquote><p>cd Desktop<br />
mkdir FactsDatabase<br />
cd FactsDatabase<br />
sqlite3 facts.sqlite
</p></blockquote>
<p>Now you will see the sqlite command prompt which only accepts sql commands from now on. This is where I have created my database, and inserted some facts:</p>
<blockquote><p>
// create table<br />
create table facts(id integer primary key, fact text, isFavorite varchar(5), alreadyRead varchar(5));</p>
<p>// fill database with facts<br />
sqlite3 facts.sqlite &#8220;INSERT INTO facts(fact, isFavorite, alreadyRead) values(&#8216;Täglich werden 12 Neugeborene den falschen Eltern gegeben.&#8217;, &#8216;no&#8217;,'no&#8217;);&#8221;
</p></blockquote>
<p>Now if you do it like this, the special characters won&#8217;t show up in your application. After some hours of trying I tried to use run my sqlite commands in a shell script. I had to rearrange the commands to fit like this:</p>
<blockquote><p>
# drop exising table<br />
sqlite3 facts.sqlite &#8220;drop table facts;&#8221;</p>
<p># create database<br />
sqlite3 facts.sqlite &#8220;create table facts(id integer primary key, fact text, isFavorite varchar(5), alreadyRead varchar(5));&#8221;</p>
<p># fill database with facts<br />
sqlite3 facts.sqlite &#8220;INSERT INTO facts(fact, isFavorite, alreadyRead) values(&#8216;Täglich werden 12 Neugeborene den falschen Eltern gegeben.&#8217;, &#8216;no&#8217;,'no&#8217;);&#8221;
</p></blockquote>
<p>Save it as database.sh and in terminal, give it the rights to execute: chmod+x database.sh, and then run it with ./database.sh<br />
If you do it like this, the special characters are finally in the database and will show up in your application. To be honest, I have no idea why it only works with this workaround. It costed me quite a bit of time. Anyway, hope that helps anyone. If you have questions, use the comment section. Cheers.</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-1445556659678019";
/* Horizontaler Banner */
google_ad_slot = "5289321608";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/sqlite3-umlautsspecial-character-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>all in vain iphone applikation</title>
		<link>http://www.doonot.com/all-in-vain-iphone-applikation/</link>
		<comments>http://www.doonot.com/all-in-vain-iphone-applikation/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 12:42:06 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Bekanntgabe]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[XCode]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[all in vain]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[band]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[punk rock]]></category>
		<category><![CDATA[rock]]></category>
		<category><![CDATA[rock punk]]></category>
		<category><![CDATA[vain]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=489</guid>
		<description><![CDATA[Heute wurde meine 2. iPhone Applikation von Apple frei gegeben. Die Applikation beschäftigt sich mit meiner Band All in Vain. Hier ein kurzer Einblick, was Ihr mit der App so anstellen könnt: All in Vain ist eine junge, aufstrebende Punkrock/Alternative Band von Luzern (Schweiz). Diese Applikation bietet Zugriff auf alle wichtigen Daten rund um die [...]]]></description>
			<content:encoded><![CDATA[<p>Heute wurde meine 2. iPhone Applikation von Apple frei gegeben. Die Applikation beschäftigt sich mit meiner Band All in Vain. Hier ein kurzer Einblick, was Ihr mit der App so anstellen könnt:</p>
<blockquote><p>All in Vain ist eine junge, aufstrebende Punkrock/Alternative Band von Luzern (Schweiz). Diese Applikation bietet Zugriff auf alle wichtigen Daten rund um die Band.</p>
<p>Einige der Features im Überblick:</p>
<p>- Alles über All in Vain<br />
- Bandmembers einzeln vorgestellt (Details, Fotos, Equipment, Hobbies, etc).<br />
- Eine Media-Rubrik mit unveröffentlichen Demo Aufnahmen, welche nur mit dieser iPhone App gehört werden können!<br />
- Schau dir Bilder der Band und Ihren Projekten an (inkl. All in Vain Groupie Pics, Demo Session, Rock Night Sursee). Sobald neue Bilder verfügbar sind, werden sie automatisch uf deinem iPhone geladen.<br />
- Normal Display und iPhone 4 Retina Display Support.<br />
- RSS Feed, welcher dir alle Beiträge von www.allinvain.ch auf einen Blick präsentiert. Schüttle dein iPhone oder zieh mit dem Finger über die Tabelle um die Feeds zu aktualisieren.<br />
- Tour/Konzert Übersicht &#8211;&gt; somit weisst du immer, wo die nächsten Konzerte stattfinden werden. Nebst Konzertdaten siehst du auf einer Maps Karte direkt, wo sich die Location befindet.<br />
- Direkten Zugriff auf &#8220;All in Vain&#8221;-Channels wie Facebook, Twitter und Youtube!<br />
- All in Vain Sponsoring Übersicht.<br />
- Ordne die Tab Icons an wie&#8217;s dir am Besten passt. Sie können im &#8216;Mehr&#8217;-Menu verändert werden.<br />
- Dank Apples Push Notifications bist du immer auf dem neusten Stand. (Neue Websiten Einträge, neue Tourdaten, Allgemeine Informationen).</p>
<p>Funktionen, die bald kommen werden:<br />
- Werde ein Groupie von der Band oder von einzelnen Mitgliedern.<br />
- Songtexte.</p>
<p>Für diese Applikation braucht es eine Internetverbindung (Bilder, RSS Feeds, Tourdaten, Songs, Verschiedene Channels).</p></blockquote>
<p>Zum Schluss noch einige Bilder und der Link zur Applikation im<a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=421511452&amp;mt=8" target="_blank"> iTunes Store</a>:</p>
<p><a href="http://www.doonot.com/wp-content/uploads/2011/02/all_in_vain_appstore_images.png"><img class="alignnone size-full wp-image-491" title="all_in_vain_appstore_images" src="http://www.doonot.com/wp-content/uploads/2011/02/all_in_vain_appstore_images.png" alt="" width="100%" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/all-in-vain-iphone-applikation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcode Debugger has exited with error code 45</title>
		<link>http://www.doonot.com/xcode-debugger-has-exited-with-error-code-45/</link>
		<comments>http://www.doonot.com/xcode-debugger-has-exited-with-error-code-45/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 15:16:09 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Anleitung]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Cydia]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Macbook Pro]]></category>
		<category><![CDATA[XCode]]></category>
		<category><![CDATA[+]]></category>
		<category><![CDATA[albums]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[error 45]]></category>
		<category><![CDATA[exited]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[greenpois0n]]></category>
		<category><![CDATA[iphone 3gs]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photoalbums+]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[solve]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=478</guid>
		<description><![CDATA[I jailbroke my iPhone some days ago with the GreenPois0n Tool and installed all my stuff. When I was using my iPhone for Developing I found out that the debugger always exited with error status code 45. First I thought it was a problem with my app but then I tried with a non-jailbroken iPhone [...]]]></description>
			<content:encoded><![CDATA[<p>I jailbroke my iPhone some days ago with the GreenPois0n Tool and installed all my stuff. When I was using my iPhone for Developing I found out that the debugger always exited with error status code 45. First I thought it was a problem with my app but then I tried with a non-jailbroken iPhone 3GS and it worked without errors. I debugged the output code and found out that the &#8220;PhotoAlbums+&#8221; application which gives you the ability to create photo folders crashed all the time. I uninstalled this app from Cydia and now I can continue with development. Just as information if someone has the same problem <img src='http://www.doonot.com/wp-includes/images/smilies/emoticon_smile.png' alt=':)' class='wp-smiley' /> </p>
<p><script type="text/javascript">// < ![CDATA[
 google_ad_client = "ca-pub-1445556659678019"; /* Horizontaler Banner */ google_ad_slot = "5289321608"; google_ad_width = 468; google_ad_height = 60;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/xcode-debugger-has-exited-with-error-code-45/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>17.12.2010 &#8211; Neue Artikel von China!</title>
		<link>http://www.doonot.com/17-12-2010-neue-artikel-von-china/</link>
		<comments>http://www.doonot.com/17-12-2010-neue-artikel-von-china/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 12:33:55 +0000</pubDate>
		<dc:creator>Pädde</dc:creator>
				<category><![CDATA[Allgemeines]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[1 meter]]></category>
		<category><![CDATA[armband]]></category>
		<category><![CDATA[artikel]]></category>
		<category><![CDATA[aufladekabel]]></category>
		<category><![CDATA[autoscheibe]]></category>
		<category><![CDATA[dealextreme]]></category>
		<category><![CDATA[hong kong]]></category>
		<category><![CDATA[htc micro usb aufladekabel]]></category>
		<category><![CDATA[kabel]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[resell]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[weiss]]></category>

		<guid isPermaLink="false">http://www.doonot.com/?p=472</guid>
		<description><![CDATA[Heute kam eine neue Lieferung aus Hong Kong. Es gibt neue Sachen zum verkaufen: - 5x iPhone Kabel 1 Meter Weiss (je 5.-) - iPhone 4 Autoscheiben Halterung (10.-) - 2x 1 Meter HTC Micro USB Aufladekabel (je 5.-) - 1x iPhone 4 Sportarmband (5.-) Meldet euch auf doonot [at] doonot [dot] com um die [...]]]></description>
			<content:encoded><![CDATA[<p>Heute kam eine neue Lieferung aus Hong Kong. Es gibt neue Sachen zum verkaufen:</p>
<ul>
<li>- 5x iPhone Kabel 1 Meter Weiss (je 5.-)</li>
<li>- iPhone 4 Autoscheiben Halterung (10.-)</li>
<li>- 2x 1 Meter HTC Micro USB Aufladekabel (je 5.-)</li>
<li>- 1x iPhone 4 Sportarmband (5.-)</li>
</ul>
<p>Meldet euch auf doonot [at] doonot [dot] com um die Sachen zu reservieren oder zu bestellen. Postversand ist möglich und kostet meist nicht mehr als 1.-</p>
]]></content:encoded>
			<wfw:commentRss>http://www.doonot.com/17-12-2010-neue-artikel-von-china/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

