<?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>Ein Karlsruher Bloggt!</title>
	<atom:link href="http://blog.mynotiz.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mynotiz.de</link>
	<description>Java, PHP und alles rund ums Thema Informatik</description>
	<lastBuildDate>Wed, 16 May 2012 11:46:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Java JButton und ActionListener</title>
		<link>http://blog.mynotiz.de/allgemein/java-jbutton-und-actionlistener-1550/</link>
		<comments>http://blog.mynotiz.de/allgemein/java-jbutton-und-actionlistener-1550/#comments</comments>
		<pubDate>Wed, 16 May 2012 11:37:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Programmieren]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ActionListener]]></category>
		<category><![CDATA[Beispiel]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JButton]]></category>
		<category><![CDATA[Swing]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.mynotiz.de/?p=1550</guid>
		<description><![CDATA[Hier ein kleines Beispiel für alle Java Swing Neulinge. Mit Hilfe eines ActionListeners könnt ihr Klicks auf einen JButton abfangen. Funktioniert natürlich auch, falls ihr die Schaltfläche mit der Tastatur auslöst (zum Beispiel bei Focus mit Hilfe der Leertaste). import&#160;java.awt.BorderLayout; import&#160;java.awt.event.ActionEvent; import&#160;java.awt.event.ActionListener; import&#160;javax.swing.JButton; import&#160;javax.swing.JFrame; public&#160;class&#160;JButtonExample&#160;implements&#160;ActionListener{ &#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;private&#160;JButton&#160;button; &#160;&#160;&#160;&#160;public&#160;JButtonExample()&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;//&#160;Fenster&#160;anlegen &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;JFrame&#160;frame&#160;=&#160;new&#160;JFrame(); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;frame.setTitle(&#34;JButton&#160;Example&#34;); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;frame.setLayout(new&#160;BorderLayout()); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;//&#160;Button&#160;anlegen &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;this.button&#160;=&#160;new&#160;JButton(&#34;OK&#34;); [...]
Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/programmieren/java-jbutton-mit-hover-effekt-1401/' rel='bookmark' title='Java JButton mit Hover-Effekt'>Java JButton mit Hover-Effekt</a> <small>Öfters verwende ich in  meinen Programmen einen Button der sein...</small></li>
<li><a href='http://blog.mynotiz.de/programmieren/java-jtable-beispiel-491/' rel='bookmark' title='Java JTable Beispiel'>Java JTable Beispiel</a> <small>Seit längerem beschäftigt mich die Problematik &#8220;Tabellen auf der Benutzeroberfläche...</small></li>
<li><a href='http://blog.mynotiz.de/programmieren/jcombobox-beispiel-580/' rel='bookmark' title='Java JComboBox Beispiel'>Java JComboBox Beispiel</a> <small>Heute möchte ich zeigen wie ihr ein Dropdownmenü in Java...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Hier ein kleines Beispiel für alle Java Swing Neulinge. Mit Hilfe eines <strong>ActionListeners</strong> könnt ihr Klicks auf einen <strong>JButton</strong> abfangen. Funktioniert natürlich auch, falls ihr die Schaltfläche mit der Tastatur auslöst (zum Beispiel bei Focus mit Hilfe der Leertaste).<br />
<img src="http://blog.mynotiz.de/wp-content/uploads/2012/05/Bildschirmfoto-JButton-Example-2.png" alt="" title="Bildschirmfoto-JButton Example" width="350" height="150" class="size-full wp-image-1554" /></p>
<div class="java" style="border: 1px dotted black; padding: 5px; background-color: #EBEBEB;">
<table border="0" cellpadding="3" cellspacing="0">
<tr>
<td nowrap="nowrap" valign="top" align="left"><code><font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">java.awt.BorderLayout;</font><br />
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">java.awt.event.ActionEvent;</font><br />
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">java.awt.event.ActionListener;</font><br />
<font color="#ffffff"></font><br />
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">javax.swing.JButton;</font><br />
<font color="#7f0055"><b>import&nbsp;</b></font><font color="#000000">javax.swing.JFrame;</font><br />
<font color="#ffffff"></font><br />
<font color="#7f0055"><b>public&nbsp;class&nbsp;</b></font><font color="#000000">JButtonExample&nbsp;</font><font color="#7f0055"><b>implements&nbsp;</b></font><font color="#000000">ActionListener</font><font color="#000000">{</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>private&nbsp;</b></font><font color="#000000">JButton&nbsp;button;</font><br />
<font color="#ffffff"></font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#000000">JButtonExample</font><font color="#000000">()&nbsp;{</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;Fenster&nbsp;anlegen</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">JFrame&nbsp;frame&nbsp;=&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">JFrame</font><font color="#000000">()</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">frame.setTitle</font><font color="#000000">(</font><font color="#2a00ff">&#34;JButton&nbsp;Example&#34;</font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">frame.setLayout</font><font color="#000000">(</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">BorderLayout</font><font color="#000000">())</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;Button&nbsp;anlegen</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>this</b></font><font color="#000000">.button&nbsp;=&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">JButton</font><font color="#000000">(</font><font color="#2a00ff">&#34;OK&#34;</font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff"></font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;Eventhandler&nbsp;f&uuml;r&nbsp;Button&nbsp;zuweisen</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>this</b></font><font color="#000000">.button.addActionListener</font><font color="#000000">(</font><font color="#7f0055"><b>this</b></font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;Button&nbsp;der&nbsp;Frame&nbsp;hinzuf&uuml;gen</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">frame.add</font><font color="#000000">(</font><font color="#7f0055"><b>this</b></font><font color="#000000">.button</font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;Fenster&nbsp;zentrieren</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">frame.setSize</font><font color="#000000">(</font><font color="#990000">350</font><font color="#000000">,</font><font color="#990000">150</font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">frame.setLocationRelativeTo</font><font color="#000000">(</font><font color="#7f0055"><b>null</b></font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#3f7f5f">//&nbsp;Fenster&nbsp;sichbar&nbsp;machen</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">frame.setVisible</font><font color="#000000">(</font><font color="#7f0055"><b>true</b></font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;static&nbsp;</b></font><font color="#7f0055"><b>void&nbsp;</b></font><font color="#000000">main</font><font color="#000000">(</font><font color="#000000">String</font><font color="#000000">[]&nbsp;</font><font color="#000000">args</font><font color="#000000">)&nbsp;{</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>new&nbsp;</b></font><font color="#000000">JButtonExample</font><font color="#000000">()</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><br />
<font color="#ffffff"></font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#646464">@Override</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>public&nbsp;</b></font><font color="#7f0055"><b>void&nbsp;</b></font><font color="#000000">actionPerformed</font><font color="#000000">(</font><font color="#000000">ActionEvent&nbsp;e</font><font color="#000000">)&nbsp;{</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#7f0055"><b>if</b></font><font color="#000000">(</font><font color="#000000">button&nbsp;==&nbsp;e.getSource</font><font color="#000000">()){</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">System.out.println</font><font color="#000000">(</font><font color="#2a00ff">&#34;Button&nbsp;wurde&nbsp;geklickt!&#34;</font><font color="#000000">)</font><font color="#000000">;</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><br />
<font color="#ffffff">&nbsp;&nbsp;&nbsp;&nbsp;</font><font color="#000000">}</font><br />
<font color="#000000">}</font></code></td>
</tr>
</table>
</div>
<p>Ich hoffe ich konnte dem ein oder anderen mit diesem Tutorial helfen =)</p>
<p>Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/programmieren/java-jbutton-mit-hover-effekt-1401/' rel='bookmark' title='Java JButton mit Hover-Effekt'>Java JButton mit Hover-Effekt</a> <small>Öfters verwende ich in  meinen Programmen einen Button der sein...</small></li>
<li><a href='http://blog.mynotiz.de/programmieren/java-jtable-beispiel-491/' rel='bookmark' title='Java JTable Beispiel'>Java JTable Beispiel</a> <small>Seit längerem beschäftigt mich die Problematik &#8220;Tabellen auf der Benutzeroberfläche...</small></li>
<li><a href='http://blog.mynotiz.de/programmieren/jcombobox-beispiel-580/' rel='bookmark' title='Java JComboBox Beispiel'>Java JComboBox Beispiel</a> <small>Heute möchte ich zeigen wie ihr ein Dropdownmenü in Java...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.mynotiz.de/allgemein/java-jbutton-und-actionlistener-1550/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinta &#8211; GIMP Alternative</title>
		<link>http://blog.mynotiz.de/software/pinta-gimp-alternative-1521/</link>
		<comments>http://blog.mynotiz.de/software/pinta-gimp-alternative-1521/#comments</comments>
		<pubDate>Tue, 08 May 2012 19:15:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Fotografie]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[GIMP Alternative]]></category>
		<category><![CDATA[kostenlos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Photopshop Alternative]]></category>
		<category><![CDATA[Pinta]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.mynotiz.de/?p=1521</guid>
		<description><![CDATA[Vor kurzem bin ich auf ein tolles Open-source Projekt, mit dem Namen Pinta, gestoßen. Pinta(=Anagramm vom Wort Paint) ist ein sehr einfaches Bildverarbeitungsprogramm welches auf C# basiert und welches versucht Paint.net zu imitieren. Vorteil gegenüber Paint.net ist jedoch, dass Pinta auf allen drei großen Plattformen, nämlich Windows, MAC OS X und Linux(-Systemen), läuft und somit [...]
Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/tutorials/eeepc-1000h-ubuntu-wlan-problem-mit-wpa2-500/' rel='bookmark' title='EEEPC 1000H Ubuntu WLAN Problem mit WPA2'>EEEPC 1000H Ubuntu WLAN Problem mit WPA2</a> <small>Ich habe die aktuelle Version von xUbuntu 9.04 auf meinem...</small></li>
<li><a href='http://blog.mynotiz.de/internet/youtube-hd-videos-herunterladen-mit-linux-523/' rel='bookmark' title='Youtube HD Videos herunterladen mit Linux'>Youtube HD Videos herunterladen mit Linux</a> <small>Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com entdeckt....</small></li>
<li><a href='http://blog.mynotiz.de/software/xubuntu-904-mittels-samba-auf-netzwerkordner-zugreifen-543/' rel='bookmark' title='Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen'>Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen</a> <small>Vor einiger Zeit habe ich ein größeres Dokument bei meiner...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Vor kurzem bin ich auf ein tolles Open-source Projekt, mit dem Namen <a title="Pinta" href="http://pinta-project.com/" target="_blank">Pinta</a>, gestoßen. Pinta(=Anagramm vom Wort Paint) ist ein sehr einfaches Bildverarbeitungsprogramm welches auf C# basiert und welches versucht Paint.net zu imitieren. Vorteil gegenüber Paint.net ist jedoch, dass Pinta auf allen drei großen Plattformen, nämlich Windows, MAC OS X und Linux(-Systemen), läuft und somit eine echte<strong> Alternative zu GIMP</strong> darstellt. Für Anfänger im Bereich der Bilverarbeitung ist GIMP leider kaum praktisch zu verwenden (so sehe ich das zumindest =)), man muss sich sehr lange einarbeiten bis man erste Erfolge erzielt. Pinta ist wie Paint.net sehr intuitiv bedienbar und leicht zu erlernen, und warscheinlich sehr interessant für Hobby-Fotographen oder Hobby-Designer. GIMP verfügt natürlich über wesentlich mehr Features, aber wer braucht die alle schon^^. Auch der Umstieg von Photoshop zu Pinta ist sehr einfach zu bewerkstelligen, da sich beide Programme in vielen Punkten doch sehr stark ähneln. Toll gefällt mir auch, dass man <a href="http://pinta.uservoice.com/forums/105955-general" target="_blank">selbst neue Features vorschlagen</a> kann. Diese können dann von anderen Benutzern bewertet werden und bei einer guten Bewertung steigt die Chance natürlich, dass das Feature implementiert wird. Hier einige Screenshots, ein Bild sagt bekanntlich mehr als 1000 Worte:</p>
<h3>Screenshots</h3>
<div><a href="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta1.jpg" rel="lightbox[1521]"><img src="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta1.jpg" alt="" width="260" height="184" /></a> <a href="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta2.jpg" rel="lightbox[1521]"><img src="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta2.jpg" alt="" width="260" height="184" /></a> <a href="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta3.jpg" rel="lightbox[1521]"><img src="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta3.jpg" alt="" width="260" height="184" /></a> <a href="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta4.jpg" rel="lightbox[1521]"><img src="http://blog.mynotiz.de/wp-content/uploads/2012/05/pinta4.jpg" alt="" width="260" height="184" /></a></div>
<h3>Pinta unter Debian-Derivaten (z.B.: Ubuntu, Xubuntu&#8230;) installieren</h3>
<p>Pinta befindet sich standardmäßig unter den Ubuntu Paketquellen desswegen könnt ihr es einfach wie folgt installieren:</p>
<div class="java" style="border: 1px dotted black; padding: 5px; background-color: #ebebeb;" align="left">sudo apt-get install pinta</div>
<p>Falls ihr den Anspruch habt immer die aktuelleste Version auf eurem System zu haben müsst ihr Pinta wie folgt installieren:</p>
<div class="java" style="border: 1px dotted black; padding: 5px; margin-top: 5px; background-color: #ebebeb;" align="left">sudo add-apt-repository ppa:pinta-maintainers/pinta-stable</div>
<div class="java" style="border: 1px dotted black; padding: 5px; margin-top: 5px; background-color: #ebebeb;" align="left">sudo apt-get update</div>
<div class="java" style="border: 1px dotted black; padding: 5px; margin-top: 5px; background-color: #ebebeb;" align="left">sudo apt-get install pinta</div>
<p>Viel Spaß beim ausprobieren <img src='http://blog.mynotiz.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/tutorials/eeepc-1000h-ubuntu-wlan-problem-mit-wpa2-500/' rel='bookmark' title='EEEPC 1000H Ubuntu WLAN Problem mit WPA2'>EEEPC 1000H Ubuntu WLAN Problem mit WPA2</a> <small>Ich habe die aktuelle Version von xUbuntu 9.04 auf meinem...</small></li>
<li><a href='http://blog.mynotiz.de/internet/youtube-hd-videos-herunterladen-mit-linux-523/' rel='bookmark' title='Youtube HD Videos herunterladen mit Linux'>Youtube HD Videos herunterladen mit Linux</a> <small>Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com entdeckt....</small></li>
<li><a href='http://blog.mynotiz.de/software/xubuntu-904-mittels-samba-auf-netzwerkordner-zugreifen-543/' rel='bookmark' title='Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen'>Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen</a> <small>Vor einiger Zeit habe ich ein größeres Dokument bei meiner...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.mynotiz.de/software/pinta-gimp-alternative-1521/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WhatsApp Messenger auf dem PC</title>
		<link>http://blog.mynotiz.de/software/whatsapp-messenger-auf-dem-pc-1516/</link>
		<comments>http://blog.mynotiz.de/software/whatsapp-messenger-auf-dem-pc-1516/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 20:14:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[auf PC]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[nutzen]]></category>
		<category><![CDATA[WhatsApp]]></category>

		<guid isPermaLink="false">http://blog.mynotiz.de/?p=1516</guid>
		<description><![CDATA[1) BlueStack App Player herunterladen &#38; installieren Downloaden könnt ihr euch BlueStacks bei chip.de: http://www.chip.de/downloads/BlueStacks-App-Player_52156075.html 2) Registrieren bei BlueStack mit der E-Mail-Adresse Das @-Zeichen könnt ihr über [SHIFT] + [2] eingeben. 3) WhatsApp Messenger herunterladen Einfach whatsapp in der Suche eintippen und herunterladen… 4) Telefonnummer eingeben 1) Falls ihr WhatsApp schonmal am Handy installiert habt [...]
Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/internet/playmate-des-jahres-bilderserie51-bei-chipde-wallpaper-screensaver-215/' rel='bookmark' title='Playmate des Jahres Bilderserie(51) bei chip.de Wallpaper &amp; Screensaver'>Playmate des Jahres Bilderserie(51) bei chip.de Wallpaper &#038; Screensaver</a> <small>Die 12 Playmates des Jahres stellen sich vor. 51 Sehenswerte...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>1) BlueStack App Player herunterladen &amp; installieren</h3>
<p>Downloaden könnt ihr euch <strong>BlueStacks</strong> bei chip.de: <a href="http://www.chip.de/downloads/BlueStacks-App-Player_52156075.html">http://www.chip.de/downloads/BlueStacks-App-Player_52156075.html</a></p>
<p><a href="http://blog.mynotiz.de/wp-content/uploads/2012/04/image3.png" rel="lightbox"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://blog.mynotiz.de/wp-content/uploads/2012/04/image_thumb3.png" alt="image" width="513" height="402" border="0" /></a></p>
<h3></h3>
<h3>2) Registrieren bei BlueStack mit der E-Mail-Adresse</h3>
<p>Das @-Zeichen könnt ihr über [SHIFT] + [2] eingeben.</p>
<p><a href="http://blog.mynotiz.de/wp-content/uploads/2012/04/image4.png" rel="lightbox"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://blog.mynotiz.de/wp-content/uploads/2012/04/image_thumb4.png" alt="image" width="513" height="312" border="0" /></a></p>
<p><a href="http://blog.mynotiz.de/wp-content/uploads/2012/04/image5.png" rel="lightbox"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://blog.mynotiz.de/wp-content/uploads/2012/04/image_thumb5.png" alt="image" width="513" height="312" border="0" /></a></p>
<h3></h3>
<h3>3) WhatsApp Messenger herunterladen</h3>
<p>Einfach <strong>whatsapp</strong> in der Suche eintippen und herunterladen…</p>
<p><a href="http://blog.mynotiz.de/wp-content/uploads/2012/04/image6.png" rel="lightbox"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="image" src="http://blog.mynotiz.de/wp-content/uploads/2012/04/image_thumb6.png" alt="image" width="513" height="312" border="0" /></a></p>
<h3>4) Telefonnummer eingeben</h3>
<p>1) Falls ihr WhatsApp schonmal am Handy installiert habt wars das!</p>
<p>2) Wenn du noch nie WhatsApp benutzt hast mit deiner Handy-Nummer dann warte auf die Bestätigungs-SMS, lass die Zeit ablaufen und gebe anschließend manuell den dreistelligen Pin den du als SMS bekommen hast ein. Ihr müsst also nichtmal ein Android Handy besitzen. Ein stink normales reicht völlig aus!</p>
<p>Das War’s! Nun könnt ihr Kontakte also andere Handynummern hinzufügen!</p>
<p>Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/internet/playmate-des-jahres-bilderserie51-bei-chipde-wallpaper-screensaver-215/' rel='bookmark' title='Playmate des Jahres Bilderserie(51) bei chip.de Wallpaper &amp; Screensaver'>Playmate des Jahres Bilderserie(51) bei chip.de Wallpaper &#038; Screensaver</a> <small>Die 12 Playmates des Jahres stellen sich vor. 51 Sehenswerte...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.mynotiz.de/software/whatsapp-messenger-auf-dem-pc-1516/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xubuntu 11.10 &#8211; Tearing-Effekt mit NVidia Grafikkarten beheben</title>
		<link>http://blog.mynotiz.de/tutorials/xubuntu-11-10-tearing-effekt-mit-nvidia-grafikkarten-beheben-1503/</link>
		<comments>http://blog.mynotiz.de/tutorials/xubuntu-11-10-tearing-effekt-mit-nvidia-grafikkarten-beheben-1503/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 13:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Betriebsysteme]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[11.10]]></category>
		<category><![CDATA[Bildfehler]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[Tearing]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://blog.mynotiz.de/?p=1503</guid>
		<description><![CDATA[Was ist Tearing? Der Tearing-Effekt tritt vor allem bei ausgeschaltetem VSync in Spielen oder Videos auf. Er entsteht durch Neuaufbau des Folgebilds falls das alte Bild noch nicht vollständig angezeigt wurde. Schaltet man VSync ein so wird der Bildneuaufbau nicht sichtbar durchgeführt, dies kostet jedoch Rechenleistung, die nicht immer zur Verfügung steht. Compositor-Fehler Trotz eingeschaltetem [...]
Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/software/xubuntu-904-mittels-samba-auf-netzwerkordner-zugreifen-543/' rel='bookmark' title='Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen'>Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen</a> <small>Vor einiger Zeit habe ich ein größeres Dokument bei meiner...</small></li>
<li><a href='http://blog.mynotiz.de/software/apt-cache-search-sortierung-1494/' rel='bookmark' title='Linux: apt-cache search &#8211; Sortierung'>Linux: apt-cache search &#8211; Sortierung</a> <small>Manchmal sehr nervig dass die Ergebnis-Paketquellen beim Suchen mittels &#8220;apt-cache...</small></li>
<li><a href='http://blog.mynotiz.de/internet/youtube-hd-videos-herunterladen-mit-linux-523/' rel='bookmark' title='Youtube HD Videos herunterladen mit Linux'>Youtube HD Videos herunterladen mit Linux</a> <small>Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com entdeckt....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h2>Was ist Tearing?</h2>
<p>Der <strong>Tearing-Effekt</strong> tritt vor allem bei ausgeschaltetem <strong>VSync</strong> in Spielen oder Videos auf. Er entsteht durch Neuaufbau des Folgebilds falls das alte Bild noch nicht vollständig angezeigt wurde. Schaltet man VSync ein so wird der Bildneuaufbau nicht sichtbar durchgeführt, dies kostet jedoch Rechenleistung, die nicht immer zur Verfügung steht.</p>
<div><img src="http://blog.mynotiz.de/wp-content/uploads/2012/04/Tearing_simulated.jpg" alt="" width="550" height="413" /></div>
<div>
<h2>Compositor-Fehler</h2>
</div>
<div>Trotz eingeschaltetem VSync in meinen NVidia-Einstellungen habe ich Tearing bei 1080p und 720p Videos spührbar erkennen können. Das stört extrem beim Filme schauen, desshalb hier die Lösung zur Abhilfe dieses lästigen Problemes.</div>
<h2>Lösung</h2>
<h3>1) Sync to VBlank einschalten</h3>
<div><img src="http://blog.mynotiz.de/wp-content/uploads/2012/04/Bildschirmfoto-19.04.2012-185829.png" alt="" width="679" height="553" /></div>
<div></div>
<div>
<h3>2) Compositing ausschalten</h3>
</div>
<div></div>
<div><img src="http://blog.mynotiz.de/wp-content/uploads/2012/04/Bildschirmfoto-19.04.2012-185928.png" alt="" width="650" height="503" /></div>
<p>Ich hoffe ich konnte dem ein oder anderen helfen. =)</p>
<div></div>
<p>Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/software/xubuntu-904-mittels-samba-auf-netzwerkordner-zugreifen-543/' rel='bookmark' title='Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen'>Xubuntu 9.04 mittels Samba auf Netzwerkordner zugreifen</a> <small>Vor einiger Zeit habe ich ein größeres Dokument bei meiner...</small></li>
<li><a href='http://blog.mynotiz.de/software/apt-cache-search-sortierung-1494/' rel='bookmark' title='Linux: apt-cache search &#8211; Sortierung'>Linux: apt-cache search &#8211; Sortierung</a> <small>Manchmal sehr nervig dass die Ergebnis-Paketquellen beim Suchen mittels &#8220;apt-cache...</small></li>
<li><a href='http://blog.mynotiz.de/internet/youtube-hd-videos-herunterladen-mit-linux-523/' rel='bookmark' title='Youtube HD Videos herunterladen mit Linux'>Youtube HD Videos herunterladen mit Linux</a> <small>Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com entdeckt....</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.mynotiz.de/tutorials/xubuntu-11-10-tearing-effekt-mit-nvidia-grafikkarten-beheben-1503/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux: apt-cache search &#8211; Sortierung</title>
		<link>http://blog.mynotiz.de/software/apt-cache-search-sortierung-1494/</link>
		<comments>http://blog.mynotiz.de/software/apt-cache-search-sortierung-1494/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 12:35:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Betriebsysteme]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apt-cache search]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sort]]></category>
		<category><![CDATA[sortieren]]></category>
		<category><![CDATA[sortierung]]></category>
		<category><![CDATA[Xubuntu]]></category>

		<guid isPermaLink="false">http://blog.mynotiz.de/?p=1494</guid>
		<description><![CDATA[Manchmal sehr nervig dass die Ergebnis-Paketquellen beim Suchen mittels &#8220;apt-cache search&#8221; nicht sortiert werden.&#160;Sucht man zum Beispiel nach dem Begriff &#8220;svn&#8221; so können die Ergebnisse einfach mit Hilfe einer Befehlserweiterung alphabetisch sortiert werden: apt-cache search svn &#124; sort Ähnliche Beiträge: Youtube HD Videos herunterladen mit Linux Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com [...]
Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/internet/youtube-hd-videos-herunterladen-mit-linux-523/' rel='bookmark' title='Youtube HD Videos herunterladen mit Linux'>Youtube HD Videos herunterladen mit Linux</a> <small>Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com entdeckt....</small></li>
<li><a href='http://blog.mynotiz.de/software/ubuntu-linux-emacs-in-der-console-laufen-lassen-1458/' rel='bookmark' title='Ubuntu (Linux) Emacs in der Console laufen lassen'>Ubuntu (Linux) Emacs in der Console laufen lassen</a> <small>Standardmäßig startet sich der Texteditor emacs beim Aufruf in der...</small></li>
<li><a href='http://blog.mynotiz.de/fun/das-linux-gebet-ein-linux-witz-85/' rel='bookmark' title='Das Linux Gebet &amp; ein Linux Witz'>Das Linux Gebet &#038; ein Linux Witz</a> <small>Beim surfen bin ich auf folgendes gestoßen. Ein sehr schöner...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Manchmal sehr nervig dass die Ergebnis-Paketquellen beim Suchen mittels &#8220;<b>apt-cache search</b>&#8221; nicht sortiert werden.&nbsp;Sucht man zum Beispiel nach dem Begriff &#8220;svn&#8221; so können die Ergebnisse einfach mit Hilfe einer Befehlserweiterung alphabetisch sortiert werden:</p>
<div align="left" class="java" style="border: 1px dotted black; padding: 5px; background-color: #EBEBEB;">apt-cache search svn | sort</div>
<p><img width="563" height="387" src="http://blog.mynotiz.de/wp-content/uploads/2012/04/Bildschirmfoto-19.04.2012-183226.png"></p>
<p>Ähnliche Beiträge:<ol>
<li><a href='http://blog.mynotiz.de/internet/youtube-hd-videos-herunterladen-mit-linux-523/' rel='bookmark' title='Youtube HD Videos herunterladen mit Linux'>Youtube HD Videos herunterladen mit Linux</a> <small>Gerade habe ich einen sehr interessanten Bericht auf http://youtube.com entdeckt....</small></li>
<li><a href='http://blog.mynotiz.de/software/ubuntu-linux-emacs-in-der-console-laufen-lassen-1458/' rel='bookmark' title='Ubuntu (Linux) Emacs in der Console laufen lassen'>Ubuntu (Linux) Emacs in der Console laufen lassen</a> <small>Standardmäßig startet sich der Texteditor emacs beim Aufruf in der...</small></li>
<li><a href='http://blog.mynotiz.de/fun/das-linux-gebet-ein-linux-witz-85/' rel='bookmark' title='Das Linux Gebet &amp; ein Linux Witz'>Das Linux Gebet &#038; ein Linux Witz</a> <small>Beim surfen bin ich auf folgendes gestoßen. Ein sehr schöner...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.mynotiz.de/software/apt-cache-search-sortierung-1494/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

