<?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>blogadresse &#187; opensource</title>
	<atom:link href="http://blogadresse.de/tag/opensource/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogadresse.de</link>
	<description>Tech. Design. Notes. Nonsense.</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:51:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Mein erstes C Programm &#8211; Trailing Stop Loss Rechner</title>
		<link>http://blogadresse.de/apple/development-apple/mein-erstes-c-programm-trailing-stop-loss-rechner/</link>
		<comments>http://blogadresse.de/apple/development-apple/mein-erstes-c-programm-trailing-stop-loss-rechner/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 16:00:13 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=360</guid>
		<description><![CDATA[Eine kleine programmier&#252;bung f&#252;r mich, da ich grade C lerne und au&#223;erdem eine kleines Tool f&#252;r alle, die sich f&#252;r Wertpapiere (Aktien) interessieren. <a href="http://blogadresse.de/apple/development-apple/mein-erstes-c-programm-trailing-stop-loss-rechner/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Da ich grade am C lernen bin und mich ein bisschen f&#252;r den Wertpapierhandel interessiere, habe ich als kleine Ãœbung bei C Programm geschrieben, dass den aktuellen Stop-Kurs einer Trailing Stop Loss Order ausrechnet.<span id="more-360"></span></p>
<p>Ich lerne &#252;bringens mit der Hilfe von <a href="http://www.amazon.de/gp/product/3499600749?ie=UTF8&amp;tag=blogadresse-21&amp;linkCode=as2&amp;camp=1638&amp;creative=6742&amp;creativeASIN=3499600749">C Programmieren von Anfang an</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.de/e/ir?t=blogadresse-21&amp;l=as2&amp;o=3&amp;a=3499600749" border="0" alt="" width="1" height="1" />, das ich nur empfehlen kann. Es ist alles einfach beschrieben und es gibt Ãœbungen, die man machen kann (L&#246;sungen sind im Anhang). Au&#223;erdem kostet es im Gegensatz zu vielen anderen B&#252;chern nur knapp 10 â‚¬.</p>
<p>Das kleine Kommandozeilen-Tool habe ich <a href='http://www.blogadresse.de/2008/04/03/mein-erstes-c-programm-trailing-stop-loss-rechner/trailing/' rel='attachment wp-att-361'>hier</a> f&#252;r Mac OS X (Intel) kompiliert und f&#252;r alle andere folgt der Quellcode.</p>
<pre lang="c" line="1">
// Written by Jan Kampling, 2008.

#include <stdio .h>
#include <ctype .h>

main () {
	float kurs, stoplimit, stoploss, summe;
	int auswahl;

	printf("\nT r a i l i n g    S t o p    L o s s    R e c h n e r");
	printf("\n\nGeben Sie den aktuellen Kurswert ein:\n");
	scanf("%f", &#038;kurs);
	printf("\nGeben Sie den Start Stop Loss Wert ein:\n");
	scanf("%f", &#038;stoploss);

	do {
		printf("Geben Sie\n");
		printf("0\t fuer absoluten Trailing Stop Abstand ein");
		printf("\noder\n");
		printf("1\t fuer prozentualen Trailing Stop Abstand\n");
		scanf("%i", &#038;auswahl);
	} while (!(auswahl == 0 || auswahl == 1));

	printf("\nGeben Sie ihr Trailing Stoss Loss Limit ein:\n");
	scanf("%f", &#038;stoplimit);

	if (kurs > stoplimit) {
		if (auswahl) {
			summe = kurs - (kurs * stoplimit / 100);
			if (summe > stoploss) {
				printf("\nIhre aktueller Stop Loss Kurs liegt bei %.2f.\n", summe);
				} else {
				printf("\nIhre aktueller Stop Loss Kurs liegt bei %.2f.\n", stoploss);
				}
		} else {
			summe = kurs - stoplimit;
			if (summe > stoploss) {
				printf("\nIhre aktueller Stop Loss Kurs liegt bei %.2f.\n", summe);
				} else {
				printf("\nIhre aktueller Stop Loss Kurs liegt bei %.2f.\n", stoploss);
				}
		}
	} else {
		printf("\nIhre Wertpapiere wurden bereits verkauft.\n");
	}
}</ctype></stdio></pre>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/development-apple/mein-erstes-c-programm-trailing-stop-loss-rechner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SDLMESS 0.123 compiled for Mac OS X (Intel)</title>
		<link>http://blogadresse.de/apple/software-apple/sdlmess-0123-compiled-for-mac-os-x-intel/</link>
		<comments>http://blogadresse.de/apple/software-apple/sdlmess-0123-compiled-for-mac-os-x-intel/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 13:31:20 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[emu]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[sdlmess]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=349</guid>
		<description><![CDATA[Irregularly I compile SDLMess for Mac OS, here is a new build. <a href="http://blogadresse.de/apple/software-apple/sdlmess-0123-compiled-for-mac-os-x-intel/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Street Fighter" href="http://www.flickr.com/photos/11516475@N00/323313567/" target="_blank"><img src="http://farm1.static.flickr.com/137/323313567_0bba7e8e86_m.jpg" border="0" alt="Street Fighter" /></a><br />
<small><a title="Attribution-NoDerivs License" href="http://creativecommons.org/licenses/by-nd/2.0/" target="_blank"><img src="http://www.blogadresse.de/wp-content/plugins/photo_dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/" target="_blank">photo</a> credit: <a title="Peter Ï€" href="http://www.flickr.com/photos/11516475@N00/323313567/" target="_blank">Peter Ï€</a></small></p>
<p>I compiled a new version of SDLMESS for Mac OS X (Intel only).</p>
<p>Download: <a href="http://www.blogadresse.de/wp-content/uploads/2008/03/sdlmess0123_Mac OS_Intel.zip">SDLMESS 0.123 Mac OS (Intel)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/sdlmess-0123-compiled-for-mac-os-x-intel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DNS-O-Matic Updater Script 1.0</title>
		<link>http://blogadresse.de/apple/software-apple/dns-o-matic-updater-script/</link>
		<comments>http://blogadresse.de/apple/software-apple/dns-o-matic-updater-script/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 16:25:41 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[DNS-O-Matic]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[opendns]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[updater]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2008/03/08/dns-o-matic-updater-script-10/</guid>
		<description><![CDATA[My little DNS-O-Matic updater. I wrote it in Applescript. It is really easy to use and has some nice advantages above other solutions. <a href="http://blogadresse.de/apple/software-apple/dns-o-matic-updater-script/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>DNS-O-Matic Updater Script is a simple AppleScript to update your external IP on DNS-O-Matic. You simply put your username and password in, save it and could run it.</p>
<p><span id="more-324"></span></p>
<p>It has some nice advantages above other clients:</p>
<ul>
<li>Stay out of the way</li>
<li>No memory usage (just runs and then quits)</li>
<li>Really small</li>
<li>Easy to change your self</li>
<li>No dock or menu icon</li>
</ul>
<p>You could start it an various ways:</p>
<ul>
<li>Script Editor</li>
<li>Script Menu</li>
<li>Save it as an app to start it in the dock or your favorite app launcher</li>
<li><strong>Run it as system agent by adding it with <a href="http://lingon.sourceforge.net/">Lingon</a></strong></li>
<li>Use it in Automator actions</li>
<li>Use it in shell script</li>
</ul>
<p>Script made by Jan Kampling<br />
http://www.blogadresse.de<br />
Licenesed under GNU General Public License, Free Software Foundation http://creativecommons.org/licenses/GPL/2.0/</p>
<p><strong>Download:</strong> <a href='http://www.blogadresse.de/wp-content/uploads/2008/03/dnsomatic_updater.zip' title='DNS-O-Matic Updater Script 1.0'>DNS-O-Matic Updater Script 1.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/dns-o-matic-updater-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jHeidi is HeidiSQL is for Mac and Linux</title>
		<link>http://blogadresse.de/apple/software-apple/jheidi-is-heidisql-is-for-mac-and-linux/</link>
		<comments>http://blogadresse.de/apple/software-apple/jheidi-is-heidisql-is-for-mac-and-linux/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 19:10:02 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2008/03/04/jheidi-is-heidisql-is-for-mac-and-linux/</guid>
		<description><![CDATA[Ansgar Becker, mein Schwager, portiert zusammen mit seinen Entwicklerkollegen HeidiSQL zu Java. <a href="http://blogadresse.de/apple/software-apple/jheidi-is-heidisql-is-for-mac-and-linux/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img align="center" src="http://www.blogadresse.de/wp-content/uploads/2008/03/heidisql-logo.png" alt="heidisql_logo.png" border="0" width="232" height="117" /></p>
<blockquote>
<p>HeidiSQL, a new (old) MySQL GUI, is an easy-to-use interface and a â€œworking-horseâ€ for web-developers using the popular MySQL-Database. It allows you to manage and browse your databases and tables from an intuitive Windows interface.
</p>
</blockquote>
<p>From the developers of <a href="http://www.heidisql.com">HeidiSql</a> come a new java-based companion which is actually in <a href="http://en.wikipedia.org/wiki/Alpha_version#Alpha">alpha stage</a>. The final version of jHeidi should provide a basic subset of features of HeidiSQL for Linux, Mac OS X and Windows.<span id="more-323"></span></p>
<p>The alpha version implements the following features from HeidiSQL</p>
<ul>
<li>Connection profile management</li>
<li>Instance, db, table, field browsing.</li>
<li>Create/Update/Drop DB, table, field, index</li>
<li>Query window for interactive SQL queries</li>
<li>Save/Load SQL scripts from query window</li>
<li>Allow multiple sessions/connections</li>
<li>Syntax colorized SQL/log view and query window</li>
<li>Refresh current view</li>
</ul>
<p>Download jHeidi <a href="http://www.heidisql.com/jheidi/files/jheidi-alpha-bin.zip">here</a> (2 MB).</p>
<blockquote>
<p><strong>While all features of jHeidi have been tested, the testing has not been rigorous in comparison with the mature HeidiSQL. Although enough testing has been done to ensure that your database will not be damaged by a bug in jHeidi, if you are working on production databases you should be using HeidiSQL. This preview is meant for primarily for developers on development systems.</strong>
</p>
</blockquote>
<p>All other informations regarding jHeidi could be found <a href="http://www.heidisql.com/jheidi/#download">here</a>.</p>
<p><a href='http://www.blogadresse.de/wp-content/uploads/2008/03/jheidi-mainwindow.jpg' title='jheidi-mainwindow.jpg'><img src='http://www.blogadresse.de/wp-content/uploads/2008/03/jheidi-mainwindow.thumbnail.jpg' alt='jheidi-mainwindow.jpg' /></a> <a href='http://www.blogadresse.de/wp-content/uploads/2008/03/jheidi-createtable.jpg' title='jheidi-createtable.jpg'><img src='http://www.blogadresse.de/wp-content/uploads/2008/03/jheidi-createtable.thumbnail.jpg' alt='jheidi-createtable.jpg' /></a> <a href='http://www.blogadresse.de/wp-content/uploads/2008/03/jheidi-mainwindow.jpg' title='jheidi-mainwindow.jpg'><img src='http://www.blogadresse.de/wp-content/uploads/2008/03/jheidi-mainwindow.thumbnail.jpg' alt='jheidi-mainwindow.jpg' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/jheidi-is-heidisql-is-for-mac-and-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SDLMESS 0.121 compiled for MAC OS Intel</title>
		<link>http://blogadresse.de/apple/software-apple/sdlmess-0121-compiled-for-mac-os-intel/</link>
		<comments>http://blogadresse.de/apple/software-apple/sdlmess-0121-compiled-for-mac-os-intel/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 17:27:56 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[emu]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[sdlmess]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2007/12/19/sdlmess-0121-compiled-for-mac-os-intel/</guid>
		<description><![CDATA[I compiled a new version of SDLMESS for Mac OS X (Intel only). Download: SDLMESS 0.121 Mac OS (Intel)]]></description>
			<content:encoded><![CDATA[<p>I compiled a new version of SDLMESS for Mac OS X (Intel only).</p>
<p>Download: <a href='http://www.blogadresse.de/wp-content/uploads/2007/12/sdlmess0121.zip' title='SDLMESS 0.121 Mac OS (Intel)'>SDLMESS 0.121 Mac OS (Intel)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/sdlmess-0121-compiled-for-mac-os-intel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DS Trimdrop and DLDI Drop are now open source</title>
		<link>http://blogadresse.de/apple/software-apple/ds-trimdrop-and-dldi-drop-are-now-open-source/</link>
		<comments>http://blogadresse.de/apple/software-apple/ds-trimdrop-and-dldi-drop-are-now-open-source/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 14:00:23 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[nintendo]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2007/11/11/ds-trimdrop-and-dldi-drop-are-now-open-source/</guid>
		<description><![CDATA[Since I do not longer have my NDS I will release the source code of DS Trimdrop and DLDI Drop under the  Creative Commons-License. Please respect the license and have fun with it. Download DS Trimdrop Source:  dstrimdrop_source.zip Download DLDI &#8230; <a href="http://blogadresse.de/apple/software-apple/ds-trimdrop-and-dldi-drop-are-now-open-source/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since I do not longer have my NDS I will release the source code of DS Trimdrop and DLDI Drop under the  <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons-License</a>. Please respect the license and have fun with it.</p>
<p>Download DS Trimdrop Source:  <a href="http://www.blogadresse.de/wp-content/uploads/2007/11/dstrimdrop-source.zip" title="dstrimdrop_source.zip">dstrimdrop_source.zip</a></p>
<p>Download DLDI Drop Source: <a href="http://www.blogadresse.de/wp-content/uploads/2007/11/dldi-drop-source.zip" title="dldi_drop_source.zip">dldi_drop_source.zip</a></p>
<p><a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"><img src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" alt="Creative Commons License" style="border-width: 0px" /></a><a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"></a><a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"></a><br />
The projects are licensed under the  <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license">Creative Commons-License</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/ds-trimdrop-and-dldi-drop-are-now-open-source/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>romcnv compiled for Mac OS X</title>
		<link>http://blogadresse.de/apple/software-apple/romcnv-compiled-for-mac-os-x/</link>
		<comments>http://blogadresse.de/apple/software-apple/romcnv-compiled-for-mac-os-x/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 12:10:12 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[psp]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2007/11/01/romcnv-compiled-for-mac-os-x/</guid>
		<description><![CDATA[I searched for the latest version of romcnv for Mac OS X but I could not find it. So I compiled it myself. Download PowerPC build: romcnv 2.3.0 Mac OS/PowerPC Download Intel build: romcnv 2.3.0 Mac OS/Intel]]></description>
			<content:encoded><![CDATA[<p>I searched for the latest version of romcnv for Mac OS X but I could not find it. So I compiled it myself.</p>
<p>Download PowerPC build: <a href="http://www.blogadresse.de/wp-content/uploads/2007/11/romcnv_ppc.zip" title="romcnv 2.3.0 Mac OS/PowerPC">romcnv 2.3.0 Mac OS/PowerPC</a><a href="http://www.blogadresse.de/wp-content/uploads/2007/11/romcnv_ppc.zip" title="romcnv 2.3.0 Mac OS/PowerPC"></a></p>
<p>Download Intel build: <a href="http://www.blogadresse.de/wp-content/uploads/2007/11/romcnv_intel.zip" title="romcnv 2.3.0 Mac OS/Intel">romcnv 2.3.0 Mac OS/Intel</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/romcnv-compiled-for-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Neugestaltung von blogadresse</title>
		<link>http://blogadresse.de/web/neugestaltung-von-blogadresse/</link>
		<comments>http://blogadresse.de/web/neugestaltung-von-blogadresse/#comments</comments>
		<pubDate>Fri, 11 May 2007 09:45:11 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2007/05/11/neugestaltung-von-blogadresse/</guid>
		<description><![CDATA[Ich habe mir vorgenommen blogadresse neu zu gestalten hier meine Todo List daf&#252;r: OpenSource Content Managment System als Grundlage, wahrscheinlich wird es WordPress oder falls schon benutzbar Habari Semantisch korrekter XHTML code CSS 2 konforme Gestaltung (wird vorerst sehr einfach &#8230; <a href="http://blogadresse.de/web/neugestaltung-von-blogadresse/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ich habe mir vorgenommen blogadresse neu zu gestalten hier meine Todo List daf&#252;r:</p>
<ul>
<li>OpenSource Content Managment System als Grundlage, wahrscheinlich wird es <a href="http://www.wordpress.org" title="Wordpress">WordPress</a> oder falls schon benutzbar <a href="http://code.google.com/p/habari/" title="habari">Habari</a></li>
<li>Semantisch korrekter XHTML code</li>
<li>CSS 2 konforme Gestaltung (wird vorerst sehr einfach aussehen)
<ul>
<li>Grundlage wird gelegt durch <a href="http://developer.yahoo.com/yui/" title="Yahoo! UI Library">Yahoo Grids und Font Reset</a></li>
</ul>
</li>
<li>Suchmaschienenoptimerung
<ul>
<li>Metadaten</li>
<li><a href="http://microformats.org/" title="microformats">microformats</a>
<ul>
<li>hcard</li>
<li>rel=&#8221;license&#8221;</li>
<li>hAtom</li>
<li>XFN</li>
</ul>
</li>
</ul>
</li>
<li>Barrierefreiheit</li>
<li>Versch&#246;nerung durch Anpassung des Designs (form follows function)
<ul>
<li>Javascripts per <a href="http://jquery.com/" title="jQuery">jQuery</a></li>
</ul>
</li>
</ul>
<p>Eine ziemlich lange Liste, die ich da hab. Ich werde zwischendurch immer mal berichten wie der aktuelle Stand ist. Ich muss mich blo&#223; erstmal mit dem Templatesystem von WordPress oder Habari auseinander setzen.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/web/neugestaltung-von-blogadresse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kaufrausch &#8211; Mac Software ist einfach zu gut</title>
		<link>http://blogadresse.de/apple/software-apple/kaufrausch-mac-software-ist-einfach-zu-gut/</link>
		<comments>http://blogadresse.de/apple/software-apple/kaufrausch-mac-software-ist-einfach-zu-gut/#comments</comments>
		<pubDate>Sat, 16 Dec 2006 22:04:13 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[shareware]]></category>
		<category><![CDATA[shopping]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2006/12/16/kaufrausch-mac-software-ist-einfach-zu-gut/</guid>
		<description><![CDATA[Seit dem ich vor 4 Jahren meinen erstem Mac bekommen habe, hat sich meine Einstellung zum kaufen von Software sehr ge&#228;ndert. Zu meinen Windows-Zeiten hatte die meiste Software (Windows) keinen gro&#223;en Reiz, meistens habe ich mit der Kiste nur CDs &#8230; <a href="http://blogadresse.de/apple/software-apple/kaufrausch-mac-software-ist-einfach-zu-gut/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Seit dem ich vor 4 Jahren meinen erstem Mac bekommen habe, hat sich meine Einstellung zum kaufen von Software sehr ge&#228;ndert.</p>
<p>Zu meinen Windows-Zeiten hatte die meiste Software (Windows) keinen gro&#223;en Reiz, meistens habe ich mit der Kiste nur CDs gebrannt und gespielt (und die Spiele meist nicht lang). Man hat sich mit dem Betriebssystem und den Programmen mehr rumgeschlagen als damit zu arbeiten. Daher war es mir auch nie gro&#223; in den Sinn gekommen Software zu kaufen, das meiste hat man eben so von Bekannten bekommen, mal installiert, nie benutzt und dann wieder deinstalliert.</p>
<p>Seit dem ich meinen Mac habe, finde ich immer mehr gefallen dran mir Software zu kaufen. Die Software ist macht einfach viel mehr Spa&#223;, sie funktioniert und ich kann sie auch gebrauchen. Ich finde die Mac Shareware und Freeware Szene ist einfach viel pers&#246;nlicher. Viele der bekannten Programmierer sieht man in Foren und Blogs, auf deren eigenen als auch in denen anderer. Sie sind nicht einfach nur Programmierer, des Geldes wegen. Viele von ihnen sind selbst gro&#223;e Apple-Fans und wollen zeigen, was man alles machen kann und wie man es machen kann. Viele haben sich zum Ziel gewechselt ihre Software &#8220;anders&#8221; zu machen als auf anderen Betriebssystemen. Einfacher, praktischer, mehr Zusammmenhang, sch&#246;ner und so weiter.</p>
<p>In den letzten zwei Jahren habe ich mir einiges an Software zu gelegt, was ich hier einmal auff&#252;hren m&#246;chte. Vieles habe ich zum Sonderpreis erstanden, dank der vielen Marketingaktionen, die es rund um Mac-Shareware gibt, also Beispiel seihen hier folgende Seiten genannt: <a href="http://www.maczot.com">maczot</a>, <a href="http://mupromo.com/">macupdate promo</a>, <a href="http://www.macheist.com">macheist</a>, <a href="http://www.mydreamapp.com">mydreamapp</a>, <a href="http://www.macappaday.com">macappaday</a> und sonstige Gutscheincode-Aktionen, die man so findet.</p>
<h4>Shareware &#8211; Software</h4>
<ul>
<li> <a href="http://www.nullriver.com/index/products/connect360">Connect360</a> &#8211; Netzwerkfutter f&#252;r meine Xbox 360</li>
<li><a href="http://www.newsfirerss.com">Newsfire</a> &#8211; der elegante Newsreader, hat bei mir wohl Vienna abgel&#246;st</li>
<li><a href="http://www.iwascoding.com/GarageSale">Garagesale</a> &#8211; das ebay Auktionstools</li>
<li><a href="http://www.appzapper.com">AppZapper</a> &#8211; das fehlende Deinstallationsprogramm</li>
<li><a href="http://www.midnightapps.com/chaching/index.htm">Cha-Ching</a> &#8211; Money Manager</li>
<li><a href="http://www.unsanity.com/ctm">Chat Transcript Manager</a> &#8211; f&#252;r die, die viel chatten</li>
<li><a href="http://www.unsanity.com/haxies/shapeshifter">ShapeShifter</a> &#8211; ich hab mich irgendwann satt gesehen an Aqua, Siro ist viel eleganter</li>
<li><a href="http://www.delicious-monster.com">Delicious Library</a> &#8211; sch&#246;nes Spielzeug, hab ich aber eigentlich nur weil es im Bundle war^^</li>
<li><a href="http://www.devon-technologies.com/products/devonthink/">DEVONthink</a> &#8211; das Ich-sammel-alles-Werkzeug, war auch im Bundle scheint aber sehr n&#252;tzlich muss ich aber noch testen</li>
<li><a href="http://www.pangeasoft.net/enigmo2/">Enigmo 2</a> &#8211; kleines nettes Denkspielchen f&#252;r Zwischendurch</li>
<li><a href="http://www.fotomagico.com/">FotoMagico</a> &#8211; f&#252;r die profim&#228;&#223;ies Diashow von meinen Fotos, viel besser als iPhoto</li>
<li><a href="http://reinventedsoftware.com/kit/">KIT</a> &#8211; ebenfalls ein sch&#246;nes Ich-sammel-alles-Werkzeug, habe ich zur Zeit im Einsatz, ist aufger&#228;umter als DEVONthink, aber auch nicht so m&#228;chtig</li>
<li>MenuCalendarClock iCal &#8211; damit ich endlich meine Aufgaben und Termine sehe ohne immer iCal aufzumachen</li>
<li><a href="http://www.pzizz.com/">pzizz</a> &#8211; zum entspannen</li>
<li><a href="http://www.realmacsoftware.com/">RapidWeaver</a> &#8211; sehr viel besser wie iWeb aber &#228;hnlich einfach, bastele damit gerade an endboss.de rum</li>
<li><a href="http://macromates.com/">TextMate</a> &#8211; gibt es ein besser Texttool f&#252;r den Mac?</li>
<li><a href="http://roobasoft.com/rooSwitch/">rooSwitch</a> &#8211; falls man Multiuser mit einem User machen will (versteht das jemand)</li>
<li><a href="http://nitosoft.com/en.html">Hawkeye</a> &#8211; f&#252;r die Videokonvertierbed&#252;rfnisse</li>
<li><a href="http://www.xslimmer.com/">Xslimmer</a> &#8211; hat bei mir fast 1 GB an Platz freigemacht und die Programme starten schneller^^</li>
<li> <a href="http://www.stupidfish23.com">shadowclipboard</a> &#8211; wer kommt schon mit einer Zwischenablage aus</li>
<li><a href="http://www.splasm.com/audiobookbuilder/">Audiobook Builder</a> &#8211; meine Freundin ist doch H&#246;rspielfan</li>
<li><a href="http://www.tubularapp.com">Tubular</a> &#8211; YouTube mal anders</li>
<li><a href="http://www.disoapp.com">Disco</a> &#8211; ein Brennprogramm mit Potenzial</li>
<li><a href="http://www.devon-technologies.com/products/photostickies/index.html">PhotoStickies</a>, <a href="http://assignmentplanner.burgundylogan.com/">Assignment Planner</a>, <a href="http://www.acqualia.com/soulver/">Soulver</a>, <a href="http://1passwd.com/">1Passwd</a>, <a href="http://iconfactory.com/software/ipulse/">iPulse</a>, <a href="http://www.mammoetsoftware.com/drawit/">DrawIt</a>, <a href="http://www.xericdesign.com/earthdesk.php">EarthDdesk</a>, <a href="http://www.koingosw.com/products/macpilot.php">Mac Pilot</a>, <a href="http://www.kavasoft.com">Shoebox Express</a> &#8211; hmm&#8230; was soll ich dazu sagen&#8230; &#8220;Einem geschenktem Gaul schaut man nicht ins Maul&#8221; ;-)</li>
<li><a href="http://homepage.mac.com/jonn8/docktop/">DockTop</a>, <a href="http://everydaysoftware.net/">OneKey</a>, <a href="http://splasm.com">Checkbook</a>, <a href="http://ethreesoftware.com/directmail">Direct Mail</a>, &#8211; bei MacZots Bundle dabei, mal schauen, was ich mal verschenken bzw. benutzen kann</li>
</ul>
<p>Anschlie&#223;end m&#246;chte ich jedem noch das <a href="https://www.macheist.com/buy/">macheist Bundle</a> empfehlen, sehr gute Software, sehr g&#252;nstig und man tut noch was gutes. Au&#223;erdem zu empfehlen ist nat&#252;rlich <a href="http://www.maczot.com/members/index.php?mod=register&amp;refid=2326">macZOT!</a>, wo man immer mal vorbeischauen sollte, dort gibt es immer wieder gute Software zum Sonderpreis.</p>
<h4>Freeware und OpenSource</h4>
<p>Es gibt auch sehr gute Freeware und OpenSource Software f&#252;r den Mac, die ich nat&#252;rlich auch nutze, daher hier noch eine kurze Liste von dem was ich dort so empfehlen kann.</p>
<ul>
<li><a href="http://sixtyfive.xmghosting.com/">7zX</a> &#8211; 7zip mac like</li>
<li><a href="http://www.adiumx.com/">Adium</a> &#8211; der Instant Messanger</li>
<li><a href="http://www.scifihifi.com/cocoalicious/">Cocoalicious</a> &#8211; del.icio.us client</li>
<li><a href="http://colloquy.info/">Colloquy</a> &#8211; IRC Chat</li>
<li><a href="http://cyberduck.ch/">Cyberduck</a> &#8211; FTP Client</li>
<li><a href="http://www.xtralean.com/IWOverview.html">ImageWell</a> &#8211; f&#252;r das schnelle Bild</li>
<li><a href="http://www.jbidwatcher.com/">JBidWatcher</a> &#8211; keine ebay Auktion mehr verpassen</li>
<li><a href="http://free.abracode.com/cmworkshop/">OnMyCommand</a> &#8211; mach mehr aus deinem Rechtsklick</li>
<li><a href="http://www.titanium.free.fr/pgs2/english/onyx.html">Onyx</a> &#8211; der OSX Hausputz</li>
<li><a href="http://pathway.screenager.be/">Pathway</a> &#8211; Wikis mal ganz anders lesen</li>
<li><a href="http://quicksilver.blacktree.com/">Quicksilver</a> &#8211; ohne geht bei mir gar nichts mehr</li>
<li><a href="http://www.skype.com">Skype</a> &#8211; f&#252;r das Gespr&#228;ch mit Freunden</li>
<li><a href="http://smultron.sourceforge.net/">Smultron</a> &#8211; die kostenlose alternative zu Textmate</li>
<li><a href="http://wakaba.c3.cx/s/apps/unarchiver.html">The Unarchiver</a> &#8211; der eine Entpacker f&#252;r alle</li>
<li><a href="http://transmission.m0k.org/">Transmission</a> &#8211; schlanker, schneller Bittorrent-Client</li>
<li><a href="http://www.blogadresse.de/wp-admin/www.tv-browser.org">TV-Browser</a> &#8211; ohne w&#252;rde mein EyeTV keinen Spa&#223; machen</li>
<li><a href="http://www.videolan.org/">VLC</a> &#8211; der spielt fast alles ab</li>
<li><a href="http://www.ragingmenace.com/software/menumeters/index.html">MenuMeters</a> &#8211; damit wei&#223; was abgeht am Rechner</li>
<li><a href="http://boinc.berkeley.edu/">BONIC</a> &#8211; ich tue gutes f&#252;r die Forschung</li>
<li><a href="http://macupdate.com/info.php/id/11273">iScrobbler</a> &#8211; damit jeder sieht was ich so h&#246;re</li>
<li><a href="http://growl.info">Growl</a> &#8211; der Nachrichtendienst</li>
<li><a href="http://www.inquisitorx.com/safari/">Inquisitor</a> &#8211; ich nutze Suchmaschinen nicht mehr ohne</li>
<li><a href="http://hetima.com/safari/stand-e.html">SafariStand</a> &#8211; viele n&#252;tzliche Extras</li>
</ul>
<p>Falls demn&#228;chst noch Sachen dazukommen &#8211; das wird bestimmt der Fall sein &#8211; dann mache ich ein paar Updates zu diesem Post.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/software-apple/kaufrausch-mac-software-ist-einfach-zu-gut/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Transmission Nightly Updater</title>
		<link>http://blogadresse.de/apple/development-apple/transmission-nightly-updater/</link>
		<comments>http://blogadresse.de/apple/development-apple/transmission-nightly-updater/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 11:08:58 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[transmission]]></category>
		<category><![CDATA[updater]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2006/12/07/transmission-nightly-updater/</guid>
		<description><![CDATA[I really like to follow the development of Transmisson so I often download the nightly builds to see what is new. I thought it would be nice if there would be an automatic updater. Transmission uses Sparkle for updates but &#8230; <a href="http://blogadresse.de/apple/development-apple/transmission-nightly-updater/">Weiterlesen <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img id="image193" alt="Transmission Icon" src="http://www.blogadresse.de/wp-content/uploads/2006/12/transmissionicon.png" /></p>
<p>I really like to follow the development of <a href="http://transmission.m0k.org/">Transmisson</a> so I often download the nightly builds to see what is new. I thought it would be nice if there would be an automatic updater. Transmission uses Sparkle for updates but this is only for the official releases. So I write this applescript updater. Please give me some feedback if it is working for you.</p>
<p>Download: <a id="p195" href="http://www.blogadresse.de/wp-content/uploads/2006/12/updater_transmission.zip">Transmission Nightly Updater</a></p>
<p>You could also use it do build your own nightly updaters for other applications. Comment on this if build your own.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/apple/development-apple/transmission-nightly-updater/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

