<?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>Jürgen Bouché</title>
	<atom:link href="http://www.juergenbouche.de/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.juergenbouche.de/blog</link>
	<description></description>
	<lastBuildDate>Wed, 04 Apr 2012 14:15:34 +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>Git &#8211; Use git behind a proxy (Windows and Linux)</title>
		<link>http://www.juergenbouche.de/blog/2011/11/22/git-use-git-behind-a-proxy-windows-and-linux/</link>
		<comments>http://www.juergenbouche.de/blog/2011/11/22/git-use-git-behind-a-proxy-windows-and-linux/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 11:49:07 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=406</guid>
		<description><![CDATA[To use git behind a proxy just set the http.proxy configuration: If you have problems with ssl over https use or import the correct CA. To get more informations how to set the CA see]]></description>
			<content:encoded><![CDATA[<p>To use git behind a proxy just set the http.proxy configuration:</p>
<pre class="brush: plain; title: ; notranslate">git config --global http.proxy proxy:port</pre>
<p>If you have problems with ssl over https use</p>
<pre class="brush: plain; title: ; notranslate">git config --global http.sslverify false</pre>
<p>or import the correct CA.</p>
<p>To get more informations how to set the CA see</p>
<pre class="brush: plain; title: ; notranslate">git help config</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/11/22/git-use-git-behind-a-proxy-windows-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ActionScript 3 &#8211; Singleton Pattern</title>
		<link>http://www.juergenbouche.de/blog/2011/10/14/actionscript-3-singleton-pattern/</link>
		<comments>http://www.juergenbouche.de/blog/2011/10/14/actionscript-3-singleton-pattern/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 18:27:33 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=378</guid>
		<description><![CDATA[If you like the Singleton Pattern checkout this post by Daniel R. There are 3 Methods discussed, achieving the goal to use the Singleton Pattern in ActionScript 3. I prefer the third method, this worked out very well for me, so far]]></description>
			<content:encoded><![CDATA[<p>If you like the Singleton Pattern checkout this <a title="Singleton Pattern in AS3" href="http://life.neophi.com/danielr/2006/10/singleton_pattern_in_as3.html" target="_blank">post</a> by Daniel R.<br />
There are 3 Methods discussed, achieving the goal to use the Singleton Pattern in ActionScript 3.</p>
<p>I prefer the third method, this worked out very well for me, so far <img src='http://www.juergenbouche.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<pre class="brush: sql; title: ; notranslate">package
{
	public final class Singleton
	{
		private static var instance:Singleton = new Singleton();

		public function Singleton()
		{
			if( instance ) throw new Error( &quot;Singleton can only be accessed through Singleton.getInstance()&quot; );
		}

		public static function getInstance():Singleton
		{
			return instance;
		}
	}
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/10/14/actionscript-3-singleton-pattern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle &#8211; Tempfile usage</title>
		<link>http://www.juergenbouche.de/blog/2011/09/21/oracle-tempfile-usage/</link>
		<comments>http://www.juergenbouche.de/blog/2011/09/21/oracle-tempfile-usage/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 13:09:17 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=369</guid>
		<description><![CDATA[Sometimes you need to identify the tempfile usage because temp is eaten up quickly by a large statement. To get a clear look into the tempfiles just use the following statement and you can easily see the program/user/session using all your assigned tempspace.]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to identify the tempfile usage because temp is eaten up quickly by a large statement. To get a clear look into the tempfiles just use the following statement and you can easily see the program/user/session using all your assigned tempspace.</p>
<pre class="brush: sql; title: ; notranslate">SELECT su.TABLESPACE
   ,su.segfile#
   ,su.segblk#
   ,ROUND(((su.blocks * pa.VALUE) / 1024),2) size_kb
   ,ROUND(((su.blocks * pa.VALUE) / 1024 / 1024),2) size_mb
   ,s.SID
   ,s.serial#
   ,s.username
   ,s.osuser
   ,s.program
   ,s.status
FROM v$session s
   ,v$sort_usage su
   ,v$process p
   ,v$parameter pa
WHERE pa.NAME = 'db_block_size'
   AND s.saddr = su.session_addr
   AND s.paddr = p.addr
ORDER BY su.TABLESPACE
   ,su.segfile#
   ,su.segblk#
   ,su.blocks;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/09/21/oracle-tempfile-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle &#8211; How to calculate size of Undo tablespace and Undo Retention?</title>
		<link>http://www.juergenbouche.de/blog/2011/08/24/oracle-how-to-calculate-size-of-undo-tablespace-and-undo-retention/</link>
		<comments>http://www.juergenbouche.de/blog/2011/08/24/oracle-how-to-calculate-size-of-undo-tablespace-and-undo-retention/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 10:32:14 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=356</guid>
		<description><![CDATA[Yesterday a teammate sended me a very nice part out of an article about calculating Oracle&#8217;s &#8220;undo_retention&#8221;. Sadly I do not know the real author but I found these two references at the internet: oraclepoint.com &#8211; How to calculate size of Undo tablespace and Undo Retention? akadia.com &#8211; Optimize Oracle UNDO Parameters The Article contains <a href='http://www.juergenbouche.de/blog/2011/08/24/oracle-how-to-calculate-size-of-undo-tablespace-and-undo-retention/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday a teammate sended me a very nice part out of an article about calculating Oracle&#8217;s &#8220;undo_retention&#8221;. Sadly I do not know the real author but I found these two references at the internet:</p>
<ul>
<li><a title="oraclepoint.com - How to calculate size of Undo tablespace and Undo Retention?" href="http://oraclepoint.com/oralife/2008/10/06/how-to-calculate-size-of-undo-tablespace-and-undo-retention/" target="_blank">oraclepoint.com &#8211; How to calculate size of Undo tablespace and Undo Retention?</a></li>
<li><a title="akadia.com - Optimize Oracle UNDO Parameters" href="http://www.akadia.com/services/ora_optimize_undo.html" target="_blank">akadia.com &#8211; Optimize Oracle UNDO Parameters</a></li>
</ul>
<p>The Article contains 2 very useful statements for the undo calculation:</p>
<p><strong>Needed UNDO Size in MB</strong></p>
<pre class="brush: sql; title: ; notranslate">SELECT
ROUND(d.undo_size/(1024*1024),2) &quot;ACTUAL UNDO SIZE [MByte]&quot;,
SUBSTR(e.value,1,25) &quot;UNDO RETENTION [Sec]&quot;,
ROUND((TO_NUMBER(e.value)*TO_NUMBER(f.value)*g.undo_block_per_sec)/(1024*1024),2) &quot;NEEDED UNDO SIZE [MByte]&quot;
FROM
(
SELECT
SUM(a.bytes) undo_size
FROM
v$datafile a,
v$tablespace b,
dba_tablespaces c
WHERE
c.contents = 'UNDO'
AND c.status = 'ONLINE'
AND b.name = c.tablespace_name
AND a.TS# = b.TS#
) d,
v$parameter e,
v$parameter f,
(
SELECT
MAX(undoblks/((end_time-begin_time)*3600*24))
undo_block_per_sec
FROM
v$undostat
) g
WHERE
e.name = 'undo_retention'
AND f.name = 'db_block_size'
;</pre>
<p><strong>Optimal UNDO Retention in seconds</strong></p>
<pre class="brush: sql; title: ; notranslate">SELECT
ROUND(d.undo_size/(1024*1024),2) &quot;ACTUAL UNDO SIZE [MByte]&quot;,
SUBSTR(e.value,1,25) &quot;UNDO RETENTION [Sec]&quot;,
ROUND((d.undo_size/(TO_NUMBER(f.value)*g.undo_block_per_sec))) &quot;OPTIMAL UNDO RETENTION [Sec]&quot;
FROM
(
SELECT
SUM(a.bytes) undo_size
FROM
v$datafile a,
v$tablespace b,
dba_tablespaces c
WHERE
c.contents = 'UNDO'
AND c.status = 'ONLINE'
AND b.name = c.tablespace_name
AND a.TS# = b.TS#
) d,
v$parameter e,
v$parameter f,
(
SELECT
MAX(undoblks/((end_time-begin_time)*3600*24))
undo_block_per_sec
FROM
v$undostat
) g
WHERE
e.name = 'undo_retention'
AND f.name = 'db_block_size'
;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/08/24/oracle-how-to-calculate-size-of-undo-tablespace-and-undo-retention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FXCM &#8211; Trading Championship June 2011 on myfxbook</title>
		<link>http://www.juergenbouche.de/blog/2011/08/08/fxcm-trading-championship-june-2011-on-myfxbook/</link>
		<comments>http://www.juergenbouche.de/blog/2011/08/08/fxcm-trading-championship-june-2011-on-myfxbook/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 12:46:23 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Forex]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=340</guid>
		<description><![CDATA[2 month ago, I decided to participate at the FXCM &#8211; Trading Championship June 2011 on myfxbook. I traded manually and used my pivot point indicator, released some posts before. There were some really good entrys and I ended up at rank #78 what I think is great! Besides, I finished as the best german <a href='http://www.juergenbouche.de/blog/2011/08/08/fxcm-trading-championship-june-2011-on-myfxbook/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>2 month ago, I decided to participate at the <a title="FXCM - Trading Championship June 2011" href="http://www.myfxbook.com/contests/trading-championship-june-2011/4/rules" target="_blank">FXCM &#8211; Trading Championship June 2011</a> on <a title="myfxbook" href="http://www.myfxbook.com/" target="_blank">myfxbook</a>. I traded manually and used my <a title="MetaTrader4 – Custom Indicator – Pivot Points" href="http://www.juergenbouche.de/blog/2011/05/10/metatrader4-custom-indicator-pivot-points/">pivot point indicator</a>, released some posts before. There were some really good entrys and I ended up at rank #78 what I think is great! Besides, I finished as the best german participant <img src='http://www.juergenbouche.de/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://www.juergenbouche.de/blog/wp-content/uploads/2011/08/fxcm_trading_challange_june_2011.jpg"><img class="aligncenter size-medium wp-image-347" title="fxcm_trading_challange_june_2011" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/08/fxcm_trading_challange_june_2011-300x227.jpg" alt="" width="300" height="227" /></a></p>
<p>Sadly, I can&#8217;t show you some screenshots because they immediatly closed all the contest accounts after the challenge ends.<br />
Next time I will make some shots directly during trading *promise* <img src='http://www.juergenbouche.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Watch my <a title="Contest - Scratch" href="http://www.myfxbook.com/members/scratch/contest-scratch/125942" target="_blank">contest account</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/08/08/fxcm-trading-championship-june-2011-on-myfxbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gun the engine and load your guns &#8211; the classic is back!</title>
		<link>http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/</link>
		<comments>http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 08:29:09 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=331</guid>
		<description><![CDATA[Remember Death Rally? Remedy released the version of 1996 ported to windows for free! You can download it here. Definitely a &#8220;must have&#8221;]]></description>
			<content:encoded><![CDATA[<p>Remember Death Rally?</p>
<p>Remedy released the version of 1996 ported to windows for free!<br />
You can download it <a href="http://www.remedygames.com/games/deathrally" target="_blank">here</a>.</p>
<p>Definitely a &#8220;must have&#8221; <img src='http://www.juergenbouche.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

<a href='http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/death_rally_01/' title='death_rally_01'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/07/death_rally_01-150x150.jpg" class="attachment-thumbnail" alt="death_rally_01" title="death_rally_01" /></a>
<a href='http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/death_rally_02/' title='death_rally_02'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/07/death_rally_02-150x150.jpg" class="attachment-thumbnail" alt="death_rally_02" title="death_rally_02" /></a>
<a href='http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/death_rally_03/' title='death_rally_03'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/07/death_rally_03-150x150.jpg" class="attachment-thumbnail" alt="death_rally_03" title="death_rally_03" /></a>
<a href='http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/death_rally_04/' title='death_rally_04'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/07/death_rally_04-150x150.jpg" class="attachment-thumbnail" alt="death_rally_04" title="death_rally_04" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/07/06/gun-the-engine-and-load-your-guns-the-classic-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MetaTrader4 &#8211; Custom Indicator &#8211; Pivot Points</title>
		<link>http://www.juergenbouche.de/blog/2011/05/10/metatrader4-custom-indicator-pivot-points/</link>
		<comments>http://www.juergenbouche.de/blog/2011/05/10/metatrader4-custom-indicator-pivot-points/#comments</comments>
		<pubDate>Tue, 10 May 2011 17:30:55 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Forex]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=311</guid>
		<description><![CDATA[You know Pivot Points? If not checkout babypips.com -&#62; School -&#62; Pivot Points. I&#8217;ve written this Pivot Points Indicator to use PP&#8217;s in MetaTrader4 Charts or in Expert Advisors. Parameters iMode &#8211; Choose the calculation mode. Default: 0 0 =&#62; Standard The calculation for a pivot point is shown below: Pivot point (PP) = (High <a href='http://www.juergenbouche.de/blog/2011/05/10/metatrader4-custom-indicator-pivot-points/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>You know Pivot Points?<br />
If not checkout <a href="http://www.babypips.com/school/forex-pivot-points.html" target="_blank">babypips.com -&gt; School -&gt; Pivot Points</a>.</p>
<p>I&#8217;ve written this Pivot Points Indicator to use PP&#8217;s in MetaTrader4 Charts or in Expert Advisors.</p>
<p><strong>Parameters</strong></p>
<p><strong>iMode &#8211; Choose the calculation mode. Default: 0</strong></p>
<p>0 =&gt; Standard</p>
<pre>The calculation for a pivot point is shown below:<strong>
Pivot point (PP)</strong> = (High + Low + Close) / 3
Support and resistance levels are then calculated off the pivot point like so:
First level support and resistance:
<strong>First resistance (R1)</strong> = (2 x PP) - Low
<strong>First support (S1)</strong> = (2 x PP) - High
Second level of support and resistance:
<strong>Second resistance (R2)</strong> = PP + (High - Low)
<strong>Second support (S2)</strong> = PP - (High - Low)
Third level of support and resistance:
<strong>Third resistance (R3) </strong>= High + 2(PP - Low)
<strong>Third support (S3)</strong> = Low - 2(High - PP)</pre>
<p>1 =&gt; Woodie</p>
<pre><strong>R2</strong> = PP + H - L
<strong>R1</strong> = (2 X PP) - Low
<strong>PP</strong> = (H + L + 2C) / 4
<strong>S1</strong> = (2 X PP) - High
<strong>S2</strong> = PP - High + Low</pre>
<p>2 =&gt; Camarilla</p>
<pre><strong>R4</strong> = C + ((H-L) x 1.5000)
<strong>R3</strong> = C + ((H-L) x 1.2500)
<strong>R2</strong> = C + ((H-L) x 1.1666)
<strong>R1</strong> = C + ((H-L) x 1.0833)
<strong>PP</strong> = (H + L + C) / 3
<strong>S1</strong> = C - ((H-L) x 1.0833)
<strong>S2</strong> = C - ((H-L) x 1.1666)
<strong>S3</strong> = C - ((H-L) x 1.2500)
<strong>S4</strong> = C - ((H-L) x 1.5000)</pre>
<p>3 =&gt; Fibonacci</p>
<pre><strong>R3</strong> = PP + ((H - L) x 1.000)
<strong>R2</strong> = PP + ((H - L) x .618)
<strong>R1</strong> = PP + ((H - L) x .382)
<strong>PP</strong> = (H + L + C) / 3
<strong>S1</strong> = PP - ((H - L) x .382)
<strong>S2</strong> = PP - ((H - L) x .618)
<strong>S3</strong> = PP - ((H - L) x 1.000)</pre>
<p><strong>iBasePeriod &#8211; Choose the Base Period (TimeFrame). Default: 1440 (H1)</strong></p>
<p>With this parameter you can apply the H1 Pivot Points for example to a M5 chart.<br />
You are selecting the Base Period for the Pivot Points. If you like to see the Weekly Pivot Points enter 10080.<br />
More about TimeFrames you can find at <a href="http://docs.mql4.com/constants/timeframes" target="_blank">MQL4 Reference -&gt; Standard constants -&gt; Timeframes</a>.</p>
<p><strong>iShift &#8211; Choose the indicator shifting. Default: 1</strong></p>
<p>Normally PP where calculated with the prices of the day before. Changing iShift to 2 will<br />
use current day-2 for calculation.</p>
<p><strong>Example</strong></p>
<div id="attachment_315" class="wp-caption alignnone" style="width: 836px"><a href="http://www.juergenbouche.de/blog/wp-content/uploads/2011/05/scratch_pivotpoints.png"><img class="size-full wp-image-315  " title="Scratchs Pivot Points" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/05/scratch_pivotpoints.png" alt="Scratchs Pivot Points - Daily Pivot Points in a H1 chart" width="826" height="436" /></a><p class="wp-caption-text">Scratchs Pivot Points - Daily Pivot Points in a H1 chart</p></div>
<p><strong>Download</strong><br />
<a href="http://www.juergenbouche.de/blog/wp-content/uploads/2011/05/Scratchs_PivotPoints.mq4">Scratchs_PivotPoints.mq4</a> (<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/de/"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-sa/3.0/de/80x15.png" alt="Creative Commons License" /></a> This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/de/">Creative Commons Attribution-ShareAlike 3.0 Germany License</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/05/10/metatrader4-custom-indicator-pivot-points/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Git &#8211; Installation on Windows</title>
		<link>http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/</link>
		<comments>http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 09:32:35 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=281</guid>
		<description><![CDATA[The way I install Git on Windows.]]></description>
			<content:encoded><![CDATA[<p>The way I install Git on Windows.<br />

<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git01/' title='git01'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git01-150x150.png" class="attachment-thumbnail" alt="git01" title="git01" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git02/' title='git02'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git02-150x150.png" class="attachment-thumbnail" alt="git02" title="git02" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git03/' title='git03'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git03-150x150.png" class="attachment-thumbnail" alt="git03" title="git03" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git04/' title='git04'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git04-150x150.png" class="attachment-thumbnail" alt="git04" title="git04" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git05/' title='git05'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git05-150x150.png" class="attachment-thumbnail" alt="git05" title="git05" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git06/' title='git06'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git06-150x150.png" class="attachment-thumbnail" alt="git06" title="git06" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git07/' title='git07'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git07-150x150.png" class="attachment-thumbnail" alt="git07" title="git07" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git08/' title='git08'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git08-150x150.png" class="attachment-thumbnail" alt="git08" title="git08" /></a>
<a href='http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/git09/' title='git09'><img width="150" height="150" src="http://www.juergenbouche.de/blog/wp-content/uploads/2011/03/git09-150x150.png" class="attachment-thumbnail" alt="git09" title="git09" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/03/24/git-installation-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Git Gui language on Windows</title>
		<link>http://www.juergenbouche.de/blog/2011/03/09/change-git-gui-language-on-windows/</link>
		<comments>http://www.juergenbouche.de/blog/2011/03/09/change-git-gui-language-on-windows/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 06:44:54 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=259</guid>
		<description><![CDATA[To change the portable git gui language to english just add &#8220;@set LANG=en&#8221; at the top of git-cmd and/or git-bash. Example:]]></description>
			<content:encoded><![CDATA[<p>To change the <ins datetime="2011-03-25T12:46:13+00:00">portable</ins> git gui language to english just add &#8220;@set LANG=en&#8221; at the top of git-cmd and/or git-bash.</p>
<p>Example:</p>
<pre class="brush: bash; highlight: [3]; title: ; notranslate">@echo off

@set LANG=en

rem Copyright (C):  2001, 2002  Earnie Boyd
rem   mailto:earnie@users.sf.net
rem This file is part of Minimal SYStem
rem   http://www.mingw.org/msys.shtml
rem
...
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/03/09/change-git-gui-language-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git over http(s) (SSL and WebDAV) with Apache on Windows</title>
		<link>http://www.juergenbouche.de/blog/2011/02/27/git-over-https-ssl-and-webdav-with-apache-on-windows/</link>
		<comments>http://www.juergenbouche.de/blog/2011/02/27/git-over-https-ssl-and-webdav-with-apache-on-windows/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 19:28:18 +0000</pubDate>
		<dc:creator>Jürgen</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.juergenbouche.de/blog/?p=250</guid>
		<description><![CDATA[I tried to setup Git on my windows machine the last days (maybe weeks) and it was really anoying. There are many tutorials out there for many different setups, but it still was a bit tricky. This will just be another tutorial, but this was working for me &#8230; Step 1 Download and install Git <a href='http://www.juergenbouche.de/blog/2011/02/27/git-over-https-ssl-and-webdav-with-apache-on-windows/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I tried to setup Git on my windows machine the last days (maybe weeks) and it was really anoying. There are many tutorials out there for many different setups, but it still was a bit tricky. This will just be another tutorial, but this was working for me &#8230;</p>
<p><strong>Step 1</strong></p>
<p>Download and install Git @ <a href="http://www.git-scm.org" target="_blank">git-scm.org</a> (I used Git-1.7.4-preview20110204.exe) you need this for the server and later for the client, too.<br />
I prefer to use the Explorer-Integrated Git-Bash.</p>
<p><strong>Step 2</strong></p>
<p>Download Apache and all you need to configure SSL.<br />
I used the bundle (xampp-win32-1.7.4-VC6.zip) available on <a href="http://www.apachefriends.org" target="_blank">apachefriends.org</a>, because it is easy to install and we can jump right into the configuration.<br />
Just unpack the .zip-File to C:\</p>
<p><strong>Step 3</strong></p>
<p>Goto &#8220;C:\xampp\htdocs&#8221; and right-click on the folder to open the Git-Bash.</p>
<pre class="brush: bash; title: ; notranslate">git init --bare test.git
cd test.git
git update-server-info</pre>
<p>Now we have created an empty server repository.</p>
<p><strong>Step 4</strong></p>
<p>Goto &#8220;C:\xampp\apache\conf&#8221; and edit the httpd.conf file.</p>
<pre class="brush: bash; title: ; notranslate">LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so</pre>
<p>Activate the dav modules by uncommenting.</p>
<pre class="brush: bash; title: ; notranslate">DavLockDB &quot;/xampp/apache/logs/Dav.Lock&quot;;

&lt;Directory &quot;C:/xampp/htdocs/test.git&quot;&gt;
   # Enable WebDAV
   Dav On

   # Authentication
   AuthType Basic
   AuthName &quot;test.git&quot;
   AuthUserFile &quot;C:/xampp/apache/conf/htuser.git&quot;
   AuthGroupFile &quot;C:/xampp/apache/conf/htgroup.git&quot;

   # All users from group test can access
   Require group test

   # Refuse .htaccess-Files
   AllowOverride None

   # Allow List dir
   Options Indexes

   # Acces only with SLL
   SSLRequireSSL
&lt;/Directory&gt;

BrowserMatch &quot;Microsoft Data Access Internet Publishing Provider&quot; redirect-carefully
BrowserMatch &quot;MS FrontPage&quot; redirect-carefully
BrowserMatch &quot;^WebDrive&quot; redirect-carefully
BrowserMatch &quot;^WebDAVFS/1.[0123]&quot; redirect-carefully
BrowserMatch &quot;^gnome-vfs/1.0&quot; redirect-carefully
BrowserMatch &quot;^XML Spy&quot; redirect-carefully
BrowserMatch &quot;^Dreamweaver-WebDAV-SCM1&quot; redirect-carefully
BrowserMatch &quot;MSIE&quot; AuthDigestEnableQueryStringHack=On</pre>
<p>Now the test.git repository is only available for the users in group test.</p>
<p><strong>Step 5</strong></p>
<p>Now you can start your Apache and switch to the client.<br />
To clone the repository just type:</p>
<pre class="brush: bash; title: ; notranslate">git clone https://user@mydomain.com/test.git/</pre>
<p>Be sure that you don&#8217;t forget the trailing slash!</p>
<p>Now we will enter the repository, adding a file, commit our changes and upload the new version to our git repository.</p>
<pre class="brush: bash; title: ; notranslate"># Enter repository
cd test.git
# Create file foo.txt
echo foo &gt; foo.txt
# Add foo.txt ot our local repository
git add foo.txt
# Commit changes
git commit -m &quot;Adding foo.txt&quot;
# Push changes to our remote repository
git push origin master</pre>
<p>Done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.juergenbouche.de/blog/2011/02/27/git-over-https-ssl-and-webdav-with-apache-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

