<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Betamode</title>
	<link>http://betamode.de</link>
	<description>Gedanken Beta 2.0</description>
	<lastBuildDate>Sun, 31 Jul 2011 18:28:21 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Anwendungen und Tools zum Monitoring und Graphing von Serverdaten (Load, Memory, Traffic)</title>
		<description><![CDATA[SAAS: http://www.serverdensity.com/ http://newrelic.com/ http://www.appfirst.com/ https://www.bijk.com/ Self-hosted: http://munin-monitoring.org/ http://www.cacti.net/ http://www.eluna.org/eluna_graph_system.html http://www.monitorix.org/ http://www.prbproject.org/ http://serverstats.berlios.de/ Erg&#228;nzungen willkommen.]]></description>
		<link>http://betamode.de/2011/07/31/server-data-monitoring-graphing/</link>
			</item>
	<item>
		<title>Fix ugly fonts in Firefox 5</title>
		<description><![CDATA[about:config gfx.direct2d.disabled auf true setzen]]></description>
		<link>http://betamode.de/2011/06/27/fix-ugly-fonts-in-firefox-5/</link>
			</item>
	<item>
		<title>Secure XAMPP: only local connections</title>
		<description><![CDATA[1) Open file xampp\apache\conf\httpd.conf and replace Listen 80 with Listen 127.0.0.1:80 2) Open file xampp\apache\conf\extra\httpd-ssl.conf and replace Listen 443 with Listen 127.0.0.1:443 3) Open file xampp\mysql\bin\my.cnf&#124;.ini and put in bind-address=localhost directly after [mysqld] (NOT [mysql]!)]]></description>
		<link>http://betamode.de/2011/03/25/secure-xampp-only-local-connections/</link>
			</item>
	<item>
		<title>Dual-boot a hackintosh with Windows 7</title>
		<description><![CDATA[http://thebackpackr.com/hackintoshing-with-snow-leopard/ http://www.chip.de/news/Microsoft-Tool-Windows-7-vom-USB-Stick-installieren_38622482.html]]></description>
		<link>http://betamode.de/2010/07/07/dual-boot-a-hackintosh-with-windows-7/</link>
			</item>
	<item>
		<title>Pin Freemind to the taskbar in Windows7</title>
		<description><![CDATA[The normal Freemind shortcut goes directly to Freemind.exe, but as the execution takes place in Java you can&#8217;t pin this shortcut to the taskbar in Windows 7. Another icon will appear with the same icon. If you try to pin this icon, Freemind won&#8217;t start or the icon will change to the generic Java icon. [...]]]></description>
		<link>http://betamode.de/2010/04/08/pin-freemind-to-the-taskbar-in-windows-7/</link>
			</item>
	<item>
		<title>Programming is hard</title>
		<description><![CDATA[http://writing.bryanwoods4e.com/]]></description>
		<link>http://betamode.de/2010/01/16/programming-is-hard/</link>
			</item>
	<item>
		<title>MySQL: tempor&#228;re Tabellen</title>
		<description><![CDATA[Gro&#223;e Queries, die sowieso per &#8216;Using temporary&#8217; anzeigen, dass im Hintergrund eine tempor&#228;re Tabelle erstellt wird, lassen sich oft wunderbar zwei- oder dreiteilen indem man erst eine tempor&#228;re Tabelle erstellt und dort nun dann die Abfragen ausf&#252;hrt. Besonders effektiv ist das, wenn Teil 1 des Queries die Anzahl der zu betrachtenden Zeilen stark einschr&#228;nkt, Teil [...]]]></description>
		<link>http://betamode.de/2009/06/23/mysql-temporaere-tabellen/</link>
			</item>
	<item>
		<title>MySQL: Delete a subset in a table quickly</title>
		<description><![CDATA[Heute mal wieder &#252;ber einen netten MySQL-Hack gestolpert: The trick is, that INNER JOIN will &#8216;shrink&#8217; the LargeTable down to the size of the TemporarySmallTable and the delete will operate on that smaller set only, since USING will reference to the joined table. http://blog.mkoebele.de/2008/07/mysql-delete-subset-in-table-quickly.html http://dev.mysql.com/doc/refman/5.0/en/delete.html#c9536 Mehr davon bitte&#8230;]]></description>
		<link>http://betamode.de/2009/06/21/mysql-delete-a-subset-in-a-table-quickly/</link>
			</item>
	<item>
		<title>Elastische Tabstopps</title>
		<description><![CDATA[Verdammt interessant, aber gerade keine Zeit hier nochmal komplett separat etwas dar&#252;ber zu schreiben, deshalb der Verweis auf mein Privat-Blog: http://blog.janpiotrowski.de/elastische-tabstopps/]]></description>
		<link>http://betamode.de/2008/10/16/elastische-tabstopps/</link>
			</item>
	<item>
		<title>PHP: UTF-16 zu UTF-8 konvertieren</title>
		<description><![CDATA[Und die zweite Heldentat gleich hinterher: Eine kleine PHP-Funktion (evtl. unvollst&#228;ndig, bei meinem Anwendungsfall hat es ausgereicht) zum konvertieren von UTF-16-Daten zu UTF-8: function utf16_to_utf8($str) { $c0 = ord($str[0]); $c1 = ord($str[1]); if ($c0 == 0xFE &#038;&#038; $c1 == 0xFF) { $be = true; } else if ($c0 == 0xFF &#038;&#038; $c1 == 0xFE) { [...]]]></description>
		<link>http://betamode.de/2008/09/08/php-utf-16-zu-utf-8-konvertieren/</link>
			</item>
	<item>
		<title>File-Encoding erkennen</title>
		<description><![CDATA[Mein Held f&#252;r heute: Mindprod mit seinem Encoding Recogniser. Applet kurz laden lassen, Datei ausw&#228;hlen und einfach Encodings durchprobieren. Funktioniert wunderbar.]]></description>
		<link>http://betamode.de/2008/09/07/file-encoding-erkennen/</link>
			</item>
	<item>
		<title>L&#246;sung: Maus zu langsam in Adobe Photoshop/Fireworks/&#8230; CS3</title>
		<description><![CDATA[Systemsteuerung -> Maus -> Registerkarte &#8220;Bewegung&#8221; -> Haken bei &#8220;Beschleunigung in Spielen deaktivieren&#8221; entfernen Und schon hat man die normale Mausgeschwindigkeit auch in CS3-Programmen. Quelle: http://www.psd-tutorials.de/modules/Forum/11_photoshop/25234-photoshop-cs3-maus-zu-langsam.html]]></description>
		<link>http://betamode.de/2008/08/12/loesung-maus-zu-langsam-in-adobe-photoshopfireworks-cs3/</link>
			</item>
	<item>
		<title>MySQL: The table &#8216;foo&#8217; is full</title>
		<description><![CDATA[Ich muss zugeben, ich war erstmal ziemlich platt. Aber, es gibt ja zum Gl&#252;ck Erkl&#228;rungen und (mutma&#223;liche) L&#246;sungen: http://dev.mysql.com/doc/refman/5.0/en/full-table.html http://dev.mysql.com/doc/refman/5.1/de/full-table.html http://jeremy.zawodny.com/blog/archives/000796.html Das von Jeremy Zawodny vorgeschlagene alter table foo max_rows = 200000000000 avg_row_length = 50; funktioniert auch wunderbar. Nun passen nochmal ein paar Gigabyte rein.]]></description>
		<link>http://betamode.de/2008/03/31/mysql-the-table-foo-is-full/</link>
			</item>
	<item>
		<title>IE7 em + float Bug</title>
		<description><![CDATA[Immer wieder sch&#246;n was einem bei der t&#228;glichen Arbeit so &#252;ber den Weg l&#228;uft. Stark vereinfacht: &#60;div style="float:left"&#62;&#60;img src=...&#62;&#60;/div&#62; &#60;div id="text"&#62;Erste Zeile Text. &#60;em&#62;Zweite Zeile Text&#60;/em&#62;&#60;/div&#62; Das f&#252;hrte im konkreten Fall im IE7 dazu, da&#223; ab der zweiten Zeile der Hintergrund des text-Div vor das floatende Div links gelegt wurde. Nat&#252;rlich war der verursachende Code [...]]]></description>
		<link>http://betamode.de/2008/03/04/ie7-em-float-bug/</link>
			</item>
	<item>
		<title>Google-Refererspam auch bei Adwords-Kunden</title>
		<description><![CDATA[Sistrix alias Johannes Beus hat schon vor einigen Tagen in seinem Blog einige Beobachtungen aufgeschrieben: [...] sowohl Microsoft als auch Google &#252;berpr&#252;fen mittlerweile Seiten auf Cloaking auf Referrerbasis. Dazu rufen sie die Seiten mit einem Referrer, der so aussieht, als komme der Nutzer &#252;ber ihre Suchmaschine auf. Quelle: Referrer-Spam von Google und Microsoft Ich habe [...]]]></description>
		<link>http://betamode.de/2008/02/17/google-refererspam-auch-bei-adwords-kunden/</link>
			</item>
	<item>
		<title>Objektiv Sigma 55-200mm / 4-5,6 DC Canon Telezoom zu verkaufen</title>
		<description><![CDATA[Meine Freundin hat sich ein neues Objektiv mit mehr Brennweite geleistet und m&#246;chte deshalb ihr bisheriges Sigma-Objektiv verkaufen: http://cgi.ebay.de/ws/eBayISAPI.dll?ViewItem&#038;item=180216630221]]></description>
		<link>http://betamode.de/2008/02/17/objektiv-sigma-55-200mm-4-56-dc-canon-telezoom-zu-verkaufen/</link>
			</item>
	<item>
		<title>Web Inspector f&#252;r Safari 3.0.4 auf Windows</title>
		<description><![CDATA[1) Download the nightly build from http://nightly.webkit.org/. 2) Extract the contents from the zip file. 3) If you are running Vista then you will have to add the following to the end of the Preferences.plist file (under C:\Users\&#60;UserName&#62;\AppData\Roaming\Apple Computer\Safari\), just before &#60;/dict>&#60;/plist&#62;: &#60;key&#62;WebKitUserStyleSheetLocationPreferenceKey&#60;/key&#62; &#60;true/&#62; 4) Execute the run-nightly-webkit.cmd file. This will launch Safari from the [...]]]></description>
		<link>http://betamode.de/2007/11/24/web-inspector-fuer-safari-304-auf-windows/</link>
			</item>
	<item>
		<title>MySQL: INSERT &#8230; ON DUPLICATE KEY UPDATE</title>
		<description><![CDATA[Ich kann gar nicht oft genug darauf hinweisen: INSERT INTO table (a,b,c) VALUES (1,2,3) ON DUPLICATE KEY UPDATE c=c+1; Sinn der Sache: Wenn ein INSERT einen doppelten Wert f&#252;r ein UNIQUE- oder PRIMARY KEY-Feld erzeugen w&#252;rde wird das UPDATE ausgef&#252;hrt. http://dev.mysql.com/doc/refman/4.1/en/insert-on-duplicate.html http://www.mysqlperformanceblog.com/2006/05/29/insert-on-duplicate-key-update-and-summary-counters/ Vielleicht wird man dann irgendwann diese umst&#228;ndlichen if(mysql_insert_id() == 0) oder mysql_affected_rows-Konstruktionen los.]]></description>
		<link>http://betamode.de/2007/08/23/mysql-insert-on-duplicate-key-update/</link>
			</item>
	<item>
		<title>Firefox-Plugin: Ungenutzte CSS-Selektoren aufsp&#252;ren</title>
		<description><![CDATA[Wie auf Zuruf ver&#246;ffentlich Manuela auf Pixelgraphix den Hinweis auf das kleine Helfer-Plugin &#8220;Dust-Me Selectors&#8221; von Sitepoint.com. Per Javascript eingebundene CSS-Dateien werden leider ignoriert, trotzdem ein wunderbares Tool zum Ausd&#252;nnen veralteter CSS-Dateien.]]></description>
		<link>http://betamode.de/2007/08/02/firefox-plugin-ungenutzte-css-selektoren-aufspueren/</link>
			</item>
	<item>
		<title>Resizing und Fading Slideshow</title>
		<description><![CDATA[Sehr flash-artige Fotoslideshow nur mit HTML, Javascript und CSS realisiert: This photo slideshow is a demonstration of Flash-like behavior implemented solely in Javascript, HTML, and CSS. http://www.couloir.org/js_slideshow/ (via GFX-World) PS: Ja, Betamode lebt.]]></description>
		<link>http://betamode.de/2007/08/01/resizing-und-fading-slideshow/</link>
			</item>
</channel>
</rss>

