<?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>Mario</title>
	<atom:link href="http://mariobrandt.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariobrandt.de</link>
	<description>Welcome to my world</description>
	<lastBuildDate>Tue, 24 Jan 2012 16:36:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript trim function</title>
		<link>http://mariobrandt.de/archives/daily-business/javascript-trim-function-415/</link>
		<comments>http://mariobrandt.de/archives/daily-business/javascript-trim-function-415/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 16:36:14 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[Daily Business]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=415</guid>
		<description><![CDATA[Leider fehlt diese Funktion in Javascript, aber es gibt Ersatz function trim (zeichenkette) {   // Erst führende, dann Abschließende Whitespaces entfernen   // und das Ergebnis dieser Operationen zurückliefern   return zeichenkette.replace (/^\s+/, '').replace (/\s+$/, ''); }]]></description>
			<content:encoded><![CDATA[<p>Leider fehlt diese Funktion in Javascript, aber es gibt Ersatz</p>
<pre>function trim (zeichenkette) {
  // Erst führende, dann Abschließende Whitespaces entfernen
  // und das Ergebnis dieser Operationen zurückliefern
  return zeichenkette.replace (/^\s+/, '').replace (/\s+$/, '');
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/daily-business/javascript-trim-function-415/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery IE .html() Error</title>
		<link>http://mariobrandt.de/archives/technik/jquery-ie-html-error-413/</link>
		<comments>http://mariobrandt.de/archives/technik/jquery-ie-html-error-413/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 10:38:31 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[Daily Business]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=413</guid>
		<description><![CDATA[Ein einfacher html code, der per ajax verändert werden soll. &#60;div&#62;&#60;img src="icons/reddotadd.gif" title="Add Page" id="AddPageTrigger" alt="Add Page" style="border:0; cursor:pointer;" /&#62;&#60;/div&#62; $("#AddPageTrigger").text("TEXT hier"); schlägt im IE fehl. Warum? Keine Ahnung, aber was funktioniert ist $("#AddPageTrigger").parent().text("TEXT hier");]]></description>
			<content:encoded><![CDATA[<p>Ein einfacher html code, der per ajax verändert werden soll.</p>
<pre>&lt;div&gt;&lt;img src="icons/reddotadd.gif" title="Add Page" id="AddPageTrigger" alt="Add Page" style="border:0; cursor:pointer;" /&gt;&lt;/div&gt;</pre>
<pre>$("#AddPageTrigger").text("TEXT hier");</pre>
<p>schlägt im IE fehl. Warum? Keine Ahnung, aber was funktioniert ist</p>
<pre>$("#AddPageTrigger").parent().text("TEXT hier");</pre>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/technik/jquery-ie-html-error-413/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Undzeichen ( &amp;) übertragen</title>
		<link>http://mariobrandt.de/archives/php/ajax-undzeichen-uebertragen-409/</link>
		<comments>http://mariobrandt.de/archives/php/ajax-undzeichen-uebertragen-409/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 12:50:33 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[encodeURIComponent]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=409</guid>
		<description><![CDATA[Normalerweise gibt es ein Problem beim Übertragen von Daten per AJAX, wenn sich ein &#38; Zeichen in dem zuübertragenden Text / Daten befindet. Das Javascript interpretiert das Undzeichen als Trennzeichen. Alles nach dem &#38; Zeichen wird nicht mehr übertragen. Abhilfe schafft hier die funktion encodeURIComponent &#160; var save_data = 'save_text=' + encodeURIComponent($(".edit_textarea").val()); logging(save_data); //return false; [...]]]></description>
			<content:encoded><![CDATA[<p>Normalerweise gibt es ein Problem beim Übertragen von Daten per AJAX, wenn sich ein &amp; Zeichen in dem zuübertragenden Text / Daten befindet. Das Javascript interpretiert das Undzeichen als Trennzeichen. Alles nach dem &amp; Zeichen wird nicht mehr übertragen. Abhilfe schafft hier die funktion encodeURIComponent</p>
<p>&nbsp;</p>
<pre>var save_data = 'save_text=' + encodeURIComponent($(".edit_textarea").val());
		logging(save_data);
		//return false;
		$.ajax({
			type: 'POST',
			url: 'ajax.php',
			data: save_data,
			success: function (msg){
				console.log('OK: ' + msg);
			},
			error:function (xhr, ajaxOptions, thrownError){
				alert(xhr.status);
				alert(thrownError);
			}
		});</pre>
<p>Jetzt kommen die Daten auch an.</p>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/php/ajax-undzeichen-uebertragen-409/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 2008 enable ping</title>
		<link>http://mariobrandt.de/archives/technik/windows-2008-enable-ping-405/</link>
		<comments>http://mariobrandt.de/archives/technik/windows-2008-enable-ping-405/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 18:15:58 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[Technik]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=405</guid>
		<description><![CDATA[To enable ping from remote: netsh firewall set icmpsetting 8 disable again netsh firewall set icmpsetting 8 disable]]></description>
			<content:encoded><![CDATA[<p>To enable ping from remote:</p>
<pre>netsh firewall set icmpsetting 8</pre>
<p>disable again</p>
<pre>netsh firewall set icmpsetting 8 disable</pre>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/technik/windows-2008-enable-ping-405/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache 2.4 log level config</title>
		<link>http://mariobrandt.de/archives/apache/apache-2-4-loglevel-config-402/</link>
		<comments>http://mariobrandt.de/archives/apache/apache-2-4-loglevel-config-402/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 12:38:11 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=402</guid>
		<description><![CDATA[In the new apache 2.4 it is pretty cool to configure the logging via module. LogLevel warn ssl:error auth_digest:error socache_shmcb:warn mpm_worker:warn fcgid:info]]></description>
			<content:encoded><![CDATA[<p>In the new apache 2.4 it is pretty cool to configure the logging via module.</p>
<pre>LogLevel warn ssl:error auth_digest:error socache_shmcb:warn mpm_worker:warn fcgid:info</pre>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/apache/apache-2-4-loglevel-config-402/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>mod_fcgid is crashing apache windows and linux</title>
		<link>http://mariobrandt.de/archives/php/mod_fcgid-is-crashing-apache-windows-and-linux-390/</link>
		<comments>http://mariobrandt.de/archives/php/mod_fcgid-is-crashing-apache-windows-and-linux-390/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 12:15:38 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[apache 2.3]]></category>
		<category><![CDATA[event mpm]]></category>
		<category><![CDATA[fcgid]]></category>
		<category><![CDATA[mod_fcgid]]></category>
		<category><![CDATA[mpm]]></category>
		<category><![CDATA[worker-mpm]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=390</guid>
		<description><![CDATA[With apache 2.3.15 I had kinda  the same issue with mod_fcgidon ubuntu 8.04 as on windows.  With -k restart or -k graceful the server did not die like on windows, but the server delivered than only a 200 OK response header, but nothing more. Switching from worker mpm to event mpm seemed to solve this, [...]]]></description>
			<content:encoded><![CDATA[<p>With apache 2.3.15 I had kinda  the same issue with mod_fcgidon ubuntu 8.04 as on windows.  With <em>-k restart</em> or <em>-k graceful</em> the server did not die like on windows, but the server delivered than only a 200 OK response header, but nothing more. Switching from worker mpm to event mpm seemed to solve this, but the server died later :-/</p>
<p>Since it has talmost the same issues like on windows I could make a patch that fixes this. <a title="Graceful restart fix fcgid 2.3.7 dev" href="http://mariobrandt.de/wp-content/uploads/2011/11/graceful_restart_fix.diff">Grab the patch</a> (patched against trunk) for <a href="http://mariobrandt.de/wp-content/uploads/2010/11/fcgid_2361.diff">the patch for 2.3.6</a></p>
<p>The <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=50309" target="_blank">bug 50309</a> is now longer than a year listet. Bad that none applied it yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/php/mod_fcgid-is-crashing-apache-windows-and-linux-390/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reddot get root url aka index page</title>
		<link>http://mariobrandt.de/archives/technik/reddot-get-root-url-aka-index-page-387/</link>
		<comments>http://mariobrandt.de/archives/technik/reddot-get-root-url-aka-index-page-387/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 14:48:00 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[reddot]]></category>
		<category><![CDATA[render]]></category>
		<category><![CDATA[rendertag]]></category>
		<category><![CDATA[tag]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=387</guid>
		<description><![CDATA[&#60;%!! Context:CurrentIndex.GetRootIndex().GetUrl() !!%&#62; &#160; Simple render tag and it works!]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;">&lt;%!! Context:CurrentIndex.GetRootIndex().GetUrl() !!%&gt;</span></p>
<p>&nbsp;</p>
<p>Simple render tag and it works!</p>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/technik/reddot-get-root-url-aka-index-page-387/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Licht blockiert Fernbedienung</title>
		<link>http://mariobrandt.de/archives/technik/licht-blockert-fernbedienung-383/</link>
		<comments>http://mariobrandt.de/archives/technik/licht-blockert-fernbedienung-383/#comments</comments>
		<pubDate>Mon, 14 Nov 2011 19:06:32 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[Birne]]></category>
		<category><![CDATA[Licht]]></category>
		<category><![CDATA[phlipps]]></category>
		<category><![CDATA[receiver]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=383</guid>
		<description><![CDATA[Ich war bei meinen Eltern zu Besuch. Dort sollte ich mir mal den receiver angucken, weil der manchmal nicht ging, bzw das Umschalten. Baterien ausgetauscht.Nicht besser. HDMI Kabel getauscht, auch keine Veränderung. Anderen Receiver geholt, keine Veränderung. Wohnzimmer nicht ausgeschaltet, siehe da: es ging. O_o Am Ende stellte sich erhaus, das die eine Engergiesparbirne von [...]]]></description>
			<content:encoded><![CDATA[<p>Ich war bei meinen Eltern zu Besuch. Dort sollte ich mir mal den receiver angucken, weil der manchmal nicht ging, bzw das Umschalten. Baterien ausgetauscht.Nicht besser. HDMI Kabel getauscht, auch keine Veränderung. Anderen Receiver geholt, keine Veränderung. Wohnzimmer nicht ausgeschaltet, siehe da: es ging. O_o</p>
<p>Am Ende stellte sich erhaus, das die eine Engergiesparbirne von Philipps das Infrarotlicht der Fernbedienung stört, bzw manchmal sogar ganz blockt. Darauf muss man erst mal kommen.</p>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/technik/licht-blockert-fernbedienung-383/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure apache against CVE-2011-3389 aka Beast attack</title>
		<link>http://mariobrandt.de/archives/technik/secure-apache-against-cve-2011-3389-aka-beast-attack-354/</link>
		<comments>http://mariobrandt.de/archives/technik/secure-apache-against-cve-2011-3389-aka-beast-attack-354/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 08:52:59 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Technik]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[CVE]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=354</guid>
		<description><![CDATA[During the summer rumours about a new attack against SSL started circulating (CVE-2011-3389). As it turns out, the attack itself was conceived years ago, deemed impractical, but it was nevertheless fixed in TLS 1.1. The new attack technique introduced a few optimizations to make it practical. In terms of mitigation, I expect this problem will [...]]]></description>
			<content:encoded><![CDATA[<p>During the summer rumours about a new attack against SSL started circulating (CVE-2011-3389).<br />
As it turns out, the attack itself was conceived years ago, deemed impractical, but it was nevertheless fixed in TLS 1.1. The new attack technique introduced a few optimizations to make it practical.</p>
<p>In terms of mitigation, I expect this problem will be largely addressed on the client side, despite a potential compatibility problem that may cause some TLS sites to stop working.</p>
<p>With this config you can avoid that attack.</p>
<pre>
SSLProtocol all -SSLv2
SSLHonorCipherOrder On
SSLCipherSuite ECDHE-RSA-AES256-SHA384:AES256-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH:!AESGCM:!SSLV2:!eNULL
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</pre>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/technik/secure-apache-against-cve-2011-3389-aka-beast-attack-354/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Windows Netzlaufwerk als Ordner mounten / einbinden</title>
		<link>http://mariobrandt.de/archives/technik/windows-netzlaufwerk-als-ordner-mounten-einbinden-351/</link>
		<comments>http://mariobrandt.de/archives/technik/windows-netzlaufwerk-als-ordner-mounten-einbinden-351/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 21:29:11 +0000</pubDate>
		<dc:creator>mario</dc:creator>
				<category><![CDATA[Technik]]></category>
		<category><![CDATA[mklink]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[networkdrive]]></category>
		<category><![CDATA[netzlaufwerk]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://mariobrandt.de/?p=351</guid>
		<description><![CDATA[Unter Windows 7 geht das sehr einfach mklink /d c:\mydirectory\mysymboliclink \\destinationcomputer\share Fertig. Mount networkdrive as folder.]]></description>
			<content:encoded><![CDATA[<p>Unter Windows 7 geht das sehr einfach</p>
<pre>
mklink /d c:\mydirectory\mysymboliclink \\destinationcomputer\share
</pre>
<p>Fertig.</p>
<p>Mount networkdrive as folder. </p>
]]></content:encoded>
			<wfw:commentRss>http://mariobrandt.de/archives/technik/windows-netzlaufwerk-als-ordner-mounten-einbinden-351/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

