<?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>Mike Puchol &#187; Tech</title>
	<atom:link href="http://mikepuchol.com/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikepuchol.com</link>
	<description>aut viam inveniam aut faciam</description>
	<lastBuildDate>Thu, 26 Aug 2010 17:21:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Getting MAMP 1.9 to work with Image Magick, imagick.so and other flora</title>
		<link>http://mikepuchol.com/2010/08/26/getting-mamp-1-9-to-work-with-image-magick-imagick-so-and-other-flora/</link>
		<comments>http://mikepuchol.com/2010/08/26/getting-mamp-1-9-to-work-with-image-magick-imagick-so-and-other-flora/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 16:04:20 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Image Magick]]></category>
		<category><![CDATA[Imagick]]></category>
		<category><![CDATA[imagick.so]]></category>
		<category><![CDATA[MacPorts]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://mikepuchol.com/?p=839</guid>
		<description><![CDATA[It was a full eight hours of hair pulling. For some reason, all the tutorials that can be found on getting MAMP to work with Image Magick in Snow Leopard are incomplete, miss out information, or dated. Or all of them. They are excellent posts, but I could not get imagick.so to be loaded as [...]]]></description>
			<content:encoded><![CDATA[<p>It was a full eight hours of hair pulling. For some reason, all the tutorials that can be found on getting MAMP to work with Image Magick in Snow Leopard are incomplete, miss out information, or dated. Or all of them. They are excellent posts, but I could not get imagick.so to be loaded as a PHP module by following any of them. I won&#8217;t go into explaining what MAMP or Image Magick are, if you are reading this, you already know, and most likely are having the same problems I was having.</p>
<p>Here is a short list of the resources I used to write this procedure:</p>
<p><a href="http://www.brybot.ca/archives/getting-imagemagick-and-more-to-work-with-mamp-on-os-x" target="_blank">Getting Imagemagick (and more) to work with MAMP on OS X</a> &#8211; misses info on compiling for Snow Leopard.<br />
<a href="http://www.adamstacey.co.uk/2010/06/28/installing-image-magick-and-imagick-for-php-for-mamp/" target="_blank"> Installing Image Magick and Imagick for PHP for MAMP</a> &#8211; misses change needed in ports conf file to enable Universal mode.<br />
<a href="http://unrealexpectations.com/blog/2010/01/mamp-imagick-on-snow-leopard/" target="_blank"> MAMP &amp; Imagick on Snow Leopard</a> &#8211; goes through the pitfalls, which makes the tutorial confusing, but goes into the Universal mode switch.</p>
<p>There are others which I may miss, such as forum posts or other blogs, if so, my apologies. In all, none of them go into the use of older libraries by MAMP in its sandboxed model, which breaks imagick.so when trying to compile it from source rather than using pecl.</p>
<h3>1. Install MacPorts</h3>
<p>I won&#8217;t go into details as you most likely have already done it if you&#8217;re reading this. Make sure your ports are updated.</p>
<h3>2. Make MacPorts build Universal binaries</h3>
<p>Simply edit /opt/local/etc/macports/variants.conf and add +universal at the end of the file.</p>
<h3>3. Install Image Magick using MacPorts</h3>
<p>Simple:</p>
<pre>sudo port install ImageMagick</pre>
<p>This takes a while, so go grab a coffee.</p>
<h3>4. Update your path</h3>
<p>Add</p>
<pre>export PATH="$PATH:/opt/local/bin"</pre>
<p>to ~/.profile</p>
<h3>5. Download and install the imagick PHP extension</h3>
<p>Grab it from here, I used 3.0.1 RC2. Extract the archive, and then execute the following in Terminal:</p>
<pre>MACOSX_DEPLOYMENT_TARGET=10.6
CFLAGS="-arch i386 -arch x86_64 -g -Os -pipe -no-cpp-precomp"
CCFLAGS="-arch i386 -arch x86_64 -g -Os -pipe"
CXXFLAGS="-arch i386 -arch x86_64 -g -Os -pipe"
LDFLAGS="-arch i386 -arch x86_64 -bind_at_load"
export CFLAGS CXXFLAGS LDFLAGS CCFLAGS MACOSX_DEPLOYMENT_TARGET</pre>
<p>This sets up compilation as a Universal binary. Once the exports are done, execute:</p>
<pre>cd /imagick/
phpize
./configure –with-imagick=/opt/local
make
make install</pre>
<p>When this completes, you will have a directory called modules, inside which you will find imagick.so, the PHP extension. You can check compilation worked by executing:</p>
<pre>file imagick.so</pre>
<p>which should return:</p>
<pre>imagick.so: Mach-O universal binary with 2 architectures
imagick.so (for architecture i386): Mach-O bundle i386
imagick.so (for architecture x86_64): Mach-O 64-bit bundle x86_64</pre>
<p>If it doesn&#8217;t, then your exports didn&#8217;t happen correctly, and only one version was built.</p>
<h3>6. Copy the module to the MAMP modules folder</h3>
<p>You now need to copy imagick.so to the folder where MAMP stores PHP extensions, which in my install is:</p>
<pre>/Applications/MAMP/bin/php5.3/lib/php/extensions/no-debug-non-zts-20090626/</pre>
<p>for PHP 5.3, and</p>
<pre>/Applications/MAMP/bin/php5.2/lib/php/extensions/no-debug-non-zts-20060613/</pre>
<p>for PHP 5.2.</p>
<h3>7. Add the extension to php.ini</h3>
<p>Here you can choose to edit the MAMP template (File -&gt; Edit Template -&gt; [your PHP version]) or simply edit php.ini found in either /Applications/MAMP/conf/php5.3 or /Applications/MAMP/conf/php5.2. Add the following line:</p>
<pre>extension=imagick.so</pre>
<h3>8. The Test</h3>
<p>The easiest way to see what PHP is being run with is to create a simple php page with:</p>
<pre>&lt;?php</pre>
<pre>phpinfo();</pre>
<pre>?&gt;</pre>
<p>This will show you all the extensions being loaded, and you should see an entry for imagick. If you don&#8217;t, check the PHP error log, where you may find crap like this:</p>
<pre>dyld: Symbol not found: __cg_jpeg_resync_to_restart
Referenced from: /System/Library/Frameworks/ApplicationServices...
Expected in: /Applications/MAMP/Library/lib/libjpeg.62.dylib</pre>
<p>which is Not A Good Thing™. You may also hit library version incompatibilities, such as imagick.so requiring newer libraries than those provided by MAMP. If this is the case, you need to edit MAMP&#8217;s environment variables, thus:</p>
<pre>sudo vi /Applications/MAMP/Library/bin/envvars</pre>
<p>Comment the two lines that set and export the path, which look like:</p>
<pre>#DYLD_LIBRARY_PATH="/Applications/MAMP/Library/lib:$DYLD_LIBRARY_PATH"
#export DYLD_LIBRARY_PATH</pre>
<p>and add:</p>
<pre>export PATH="$PATH:/opt/local/bin"</pre>
<p>This has the effect of breaking out of the MAMP sandbox, and using the newer libraries found at /opt/local/bin. You could also delete the originals in MAMP and add dynamic links to the newer versions at /opt/local/bin, but I have not tried this nor recommend it.</p>
<p>After doing this change, restart MAMP, and try to reload the PHP info page &#8211; imagick should now be listed and working!</p>
<p>Let me know if I missed anything or you have any improvements to this tutorial, I am by no means an expert at this, just managed to get it working after a bout of severe hair loss.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2010%2F08%2F26%2Fgetting-mamp-1-9-to-work-with-image-magick-imagick-so-and-other-flora%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2010%2F08%2F26%2Fgetting-mamp-1-9-to-work-with-image-magick-imagick-so-and-other-flora%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2010/08/26/getting-mamp-1-9-to-work-with-image-magick-imagick-so-and-other-flora/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sobre Nikodemo, capital riesgo, y WebTV</title>
		<link>http://mikepuchol.com/2010/05/31/sobre-nikodemo-capital-riesgo-y-webtv/</link>
		<comments>http://mikepuchol.com/2010/05/31/sobre-nikodemo-capital-riesgo-y-webtv/#comments</comments>
		<pubDate>Mon, 31 May 2010 21:43:36 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Español]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cálico Electronico]]></category>
		<category><![CDATA[capital riesgo]]></category>
		<category><![CDATA[inversores]]></category>
		<category><![CDATA[Mobuzz]]></category>
		<category><![CDATA[Nikodemo]]></category>
		<category><![CDATA[VC]]></category>
		<category><![CDATA[WebTV]]></category>

		<guid isPermaLink="false">http://mikepuchol.com/?p=809</guid>
		<description><![CDATA[En primer lugar, y dado que sé cómo se siente Albert en éstos momentos, darle tódo mi ánimo en su nuevo proyecto, el WebSeries Festival. Por otro lado, no puedo quedarme al margen de la mucha tinta que se ha versado respecto al modelo de WebTV, el capital riesgo, y los emprendedores, tanto para bién [...]]]></description>
			<content:encoded><![CDATA[<p>En primer lugar, y dado que sé cómo se siente Albert en éstos momentos, darle tódo mi ánimo en su nuevo proyecto, el <a href="http://www.webseriesfestival.com">WebSeries Festival</a>. Por otro lado, no puedo quedarme al margen de la mucha tinta que se ha versado respecto al modelo de WebTV, el capital riesgo, y los emprendedores, tanto para bién como para mal. Yo mismo he experimentado el que te digan &#8220;no&#8221; en repetidas ocasiones, escuchar que el proyecto no está teniendo &#8220;tracción&#8221;, o que le faltan cosas. Como última consecuencia, el &#8220;no&#8221; repetitivo forzó la venta de Whisher en condiciones no demasiado óptimas (por mucho que lo intente maquillar mi ex-socio en su perfil de LinkedIn, aunque ésa es otra historia que no viene al caso).</p>
<p>Me apena decir adiós a series como <a href="http://www.calicoelectronico.com/">Cálico Electrónico</a>, que en sus inicios nos hizo contactar con Albert sobre la posibilidad de que nos creasen un video animado de introducción a Whisher &#8211; aunque al final no se hizo por cambios sustanciales en nuestra página web. El cierre de Nikodemo &amp; Co. viene forzado por no encontrar financiación que pudiese sostener el proyecto, que todavía tenía resultados económicamente negativos &#8211; aunque positivos en cuanto al público y lo social. Albert se queja de la falta de &#8220;riesgo&#8221; en la ecuación &#8220;capital riesgo&#8221;, aunque quizás el primer error fue la elección de las fuentes de financiación. El capital riesgo (en adelante, VC, como en los contratos) puro, tal y como se entiende en el mundo de los emprendedores, es desgraciadamente muy escaso en España. Me vienen a la cabeza unos pocos fondos, como Nauta, Debaeque, Adara, o Perennius. Más abundantes son los &#8220;business angels&#8221;, que son como un VC pero sin un garrote tan gordo para cuando van mal las cosas. Por debajo de aquí tenemos ya a los innumerables fondos, créditos, ayudas, viveros, parques tecnológicos, y pseudo-VCs. Los más preocupantes son éstos últimos, ya que en los primeros casos las cosas están bién claras desde el principio. Cuando accedes a un préstamo tipo NEOTEC, los términos son claros:</p>
<blockquote><p><em>La empresa devolverá la ayuda a CDTI según vaya generando cash-flow positivo. Para ello, la empresa se compromete a facilitar a CDTI anualmente las cuentas anuales cerradas. La cuota anual de devolución será de hasta un 20% del cash-flow positivo generado hasta la amortización total del crédito.</em></p></blockquote>
<p>Es decir, no corres riesgo. Si la empresa no llega a afianzarse, no tienes que hipotecar o vender la casa e irte a vivir debajo de un puente para devolver préstamos. el CDTI también se blinda un poco en cuanto a su riesgo de esta forma:</p>
<blockquote><p><em>CDTI anticipa a la empresa, a la firma del contrato que regula la ayuda NEOTEC, entre el 40 y el 60% de la ayuda aprobada. El resto se entregará a la empresa a la finalización y justificación técnica y económica del proyecto-plan de empresa aprobado.</em></p></blockquote>
<p>Si tus cuentas no dan resultado, el CDTI habrá perdido un máximo del 60%, de a su vez el 70% del coste total del proyecto, que es lo que otorgan. Otros tipos de ayudas oficiales se rigen por términos similares, y se convierten en una buena opción de capital semilla. El único problema es el arduo proceso de solicitud y trámite, que en ocasiones, puede alargarse meses, demasiado para una startup. Para solucionar en parte este problema, han aparecido una serie de empresas que se dedican a asesorar a startups en el proceso, a cambio de cuotas mensuales y/o porcentajes del capital conseguido &#8211; también otro tema para tratar en otro momento.</p>
<p><strong>Los pseudo-VCs, o el nacimiento de una nueva palabreja en el mundo de los emprendedores.</strong></p>
<p>El gran problema de los pseudo-VCs es que actúan como si tratasen con capital riesgo, cuando en realidad ofrecen créditos blandos convertibles. El gran riesgo de éstos créditos es que son como una enorme espada de Damocles que se balancea sobre la cabeza del emprendedor. El pseudo-VC se reserva el derecho a exigir la devolución del crédito en el momento que considere oportuno, y no en el momento en que la empresa sea &#8220;cash-flow positive&#8221;, ni tampoco con una restricción en cuanto al porcentaje de &#8220;cash-flow&#8221; destinado a la devolución. Por otra parte, también pueden convertir el crédito en participaciones en la empresa, en términos que pueden poner a los fundadores en minoría sin capacidad de recurso. El ejemplo de pseudo-VC en el caso de Nikodemo es Caixa Capital Risc, que se posiciona como VC, pero que en realidad tienen sus intereses bancarios en la retaguardia. Los bancos y cajas son la cosa más contraria al riesgo del mundo mundial, y por definición, no deberían &#8216;vender&#8217; capital riesgo.</p>
<p>Los condicionantes que imponen los pseudo-VCs pueden también condicionar seriamente las posibilidades de financiación por parte de VC real en etapas de crecimiento y necesidad de financiación de la empresa. Imaginemos por un minuto que somos un VC, y se nos presenta una empresa con un éxito razonable, y que cumple con la mayoría de objetivos marcados en el plan de negocio. Analizando la estructura de la empresa, nos damos cuenta que han recibido 500.000€ de un pseudo-VC. La empresa nos pide 1M€ sobre una valuación de 2M€. En el momento del cierre de la operación, el crédito del pseudo-VC representa un 25% del valor de la empresa &#8220;pre-money&#8221;, y tras el cierre, representará casi un 17%. En condiciones normales, el préstamo se devolvería en el momento oportuno, sin afectar la composición de porcentajes de los socios. En cambio, con un pseudo-VC de por medio, existe la posibilidad de que los socios se diluyan un 17% en cualquier momento. Para el VC que pone el millón de Euros, esto representa &#8216;perder&#8217; unos 170.000€ de golpe. Pocos VCs van a invertir en una startup con un riesgo así. Como dicen, &#8220;new money, new rules&#8221;.</p>
<p><strong>Si, en el título también menciona WebTV&#8230;</strong></p>
<p>No tengo muy claro que el modelo de WebTV (y que conste que tomo el término de forma un tanto liberal, para que se entienda a lo que me refiero) pueda llegar a funcionar con los modelos de ingresos actuales, que son, básicamente, la publicidad. Tal y como reconoce <a href="http://www.gonzalomartin.tv/2010/05/cierre-balzac-nikodemo-calico.html">Gonzalo Martín en su blog</a>, tener ingresos suficientes de publicidad exige unos volúmenes de tráfico muy elevados. Véase como ejemplo YouTube, que todavía pierde dinero y no sabe exactamente cómo monetizar más allá de los anuncios in-line. Otros medios como la prensa intentan los anuncios pre-roll, aunque desconozco su éxito. No creo que sea muy elevado ya que todos otorgan una pequeña &#8216;x&#8217; que permite saltarse el anuncio. En mi opinión, desde que empezó el mundillo Web 2.0, la publicidad se tendría que haber considerado como un extra, que en caso de ser sustancial, bienvenido, pero en caso de no existir, no tuviese como resultado la muerte de la startup. En los años que duró Whisher, me cansé de preguntar a otros emprendedores &#8220;y cuál es el modelo de negocio?&#8221;, siendo la respuesta incontables veces &#8220;la publicidad&#8221;. Me imagino que de ser más realistas con las cifras, muchos proyectos ni siquiera se hubiesen lanzado. Hemos pasado de la exuberancia irracional de las punto-com a la estupidez irracional de la Web 2.0.</p>
<p>La primera víctima sonada del ajuste en las startups WebTV fue Mobuzz. Acabó de la peor manera, con denuncias y sentencias favorables a los empleados para poder cobrar sus últimos sueldos e indemnizaciones (con resultado de que la empresa y sus representantes se encuentran en paradero desconocido). Sonada, porque murió tras una intensa campaña de marketing viral destinada a sacarla del agujero, que generó ríos de tinta a favor y en contra. Lo que pocos se pararon a pensar es si el modelo encajaba dentro del mercado, es decir, si existía mercado de pago suficiente para sustentar a la empresa. Buscando referencias al caso Mobuzz, he encontrado una web curiosa, Fiasco Awards 2010, donde <a href="http://www.fiascoawards.com/continguts/general/fitxa.php?llengua=es&amp;id=10">Mobuzz es una de las pretendientes</a>. Lo curioso es que votaron el iPad como ganador, cuando está batiendo récords de ventas&#8230;pero eso es, de nuevo, otra historia.</p>
<p>Tal y como también <a href="http://www.gonzalomartin.tv/2010/05/cierre-balzac-nikodemo-calico.html#comment-2247">menciona Albert en su comentario al post de Gonzalo</a>, las empresas de WebTV sufren de una competencia por parte de una serie de receptores de ayudas públicas a fondo perdido, como es la industria del cine. Cierto, pero es un factor a tener en cuenta cuando realizas tu plan de empresa &#8211; hay competencia que tenga fondos y/o recursos ilimitados? Voy a luchar en un campo de batalla neutral, o tengo una parte de posibles acuerdos &#8216;amañada&#8217; de antemano? A mí me ha pasado el perder un contrato público contra alguien que presupuestaba <strong>ocho</strong> veces más que el resto, sin ninguna otra explicación lógica que la del maletín. Es algo a tener muy en cuenta.</p>
<p>En cualquier caso, como emprendedor, deseo mucha suerte a todos los que estáis luchando día a día por llevar adelante vuestros sueños, independientemente de lo que digan los demás (o casi!). Eso es lo que realmente hace que el ser humano progrese, de otra forma, seguiríamos en una cueva.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2010%2F05%2F31%2Fsobre-nikodemo-capital-riesgo-y-webtv%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2010%2F05%2F31%2Fsobre-nikodemo-capital-riesgo-y-webtv%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2010/05/31/sobre-nikodemo-capital-riesgo-y-webtv/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My PCB business card flashes its LEDs!</title>
		<link>http://mikepuchol.com/2010/03/19/my-pcb-business-card-flashes-its-leds/</link>
		<comments>http://mikepuchol.com/2010/03/19/my-pcb-business-card-flashes-its-leds/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 18:47:00 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[business card]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[LEDs]]></category>
		<category><![CDATA[Microchip]]></category>
		<category><![CDATA[PCB]]></category>
		<category><![CDATA[PIC]]></category>

		<guid isPermaLink="false">http://mikepuchol.com/?p=790</guid>
		<description><![CDATA[Finally, I received the new PCBs from the manufacturer, after the first batch were found to be defective on track continuity (possibly due to too aggressive etching). This is a short video showing how the first one I assembled and programmed works:]]></description>
			<content:encoded><![CDATA[<p>Finally, I received the new PCBs from the manufacturer, after the first batch were found to be defective on track continuity (possibly due to too aggressive etching). This is a short video showing how the first one I assembled and programmed works:</p>
<p><object width="500" height="315"><param name="movie" value="http://www.youtube-nocookie.com/v/Cx_y_lylqps&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/Cx_y_lylqps&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="315"></embed></object>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2010%2F03%2F19%2Fmy-pcb-business-card-flashes-its-leds%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2010%2F03%2F19%2Fmy-pcb-business-card-flashes-its-leds%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2010/03/19/my-pcb-business-card-flashes-its-leds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starbucks Spain rolls out free BT OpenZone WiFi</title>
		<link>http://mikepuchol.com/2009/12/08/starbucks-spain-rolls-out-free-bt-openzone-wifi/</link>
		<comments>http://mikepuchol.com/2009/12/08/starbucks-spain-rolls-out-free-bt-openzone-wifi/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 00:06:28 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[BT OpenZone]]></category>
		<category><![CDATA[Starbucks]]></category>
		<category><![CDATA[Whisher]]></category>
		<category><![CDATA[WiFi]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=550</guid>
		<description><![CDATA[It had to happen, after Starbucks and Swisscom ended their contract a few months ago, WiFi has been missing from Starbucks in Spain. Some stores still have the old routers switched on with the &#8216;eurospot&#8217; SSID, I guess it will take some time to get them all replaced. Grabbing a coffee I noticed something new [...]]]></description>
			<content:encoded><![CDATA[<p>It had to happen, after Starbucks and Swisscom ended their contract a few months ago, <a href="http://the.firehou.se/2008/07/02/breaking-starbucks-drops-swisscoms-wifi-in-spain/" target="_blank">WiFi has been missing from Starbucks in Spain</a>. Some stores still have the old routers switched on with the &#8216;eurospot&#8217; SSID, I guess it will take some time to get them all replaced.</p>
<p>Grabbing a coffee I noticed something new on the receipt:</p>
<p><img class="aligncenter size-full wp-image-552" title="Starbucks WiFi" src="http://the.firehou.se/wp-content/uploads/2009/12/SB_WiFi.jpg" alt="Starbucks WiFi" width="200" height="445" /></p>
<p>At last, WiFi at my local Starbucks! It&#8217;s a shame that it comes <a href="http://the.firehou.se/2009/04/13/so-long-whisher-and-thanks-for-all-the-fish/" target="_blank">a few months late</a>, but welcome nevertheless. It seems that if you own a VIPS card you get double time, up to 90 minutes. The launch <a href="http://twitter.com/BTCare/status/6113340927" target="_blank">was confirmed by BT via Twitter</a> (nice to see they are on top of things!). All they need now is some nice PR material at the stores to show people that WiFi is available, and how to get online.</p>
<p><strong>[Update]</strong> I tested the connection on my iPhone today, and there are a few things that need fixing:</p>
<p>- The WISPr code is not fully recognized by the iPhone, and thus you are shown the hotspot&#8217;s default landing page.</p>
<p>- Once you have the landing page, you need to tap through to &#8216;other operators&#8217; so that you can login with the provided BT credentials.</p>
<p>- The BT login page is not mobile-formatted, which makes it a pain to navigate in order to login, even on the iPhone.</p>
<p>- There should be only a password for the free session, having such complex username/password combination is going to put some people off (&#8220;where&#8217;s the damn forward slash on this phone?!&#8221;).</p>
<p>Ideally, BT OpenZone should recognize mobile Safari, and present either a formatted landing page, or suitable WISPr code for the iPhone&#8217;s built-in authentication software to kick in. Otherwise, the WiFi connectivity is superb!
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F12%2F08%2Fstarbucks-spain-rolls-out-free-bt-openzone-wifi%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F12%2F08%2Fstarbucks-spain-rolls-out-free-bt-openzone-wifi%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/12/08/starbucks-spain-rolls-out-free-bt-openzone-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple, please give the Magic Mouse new gestures</title>
		<link>http://mikepuchol.com/2009/11/09/apple-please-give-the-magic-mouse-new-gestures/</link>
		<comments>http://mikepuchol.com/2009/11/09/apple-please-give-the-magic-mouse-new-gestures/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 01:17:38 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Exposé]]></category>
		<category><![CDATA[gestures]]></category>
		<category><![CDATA[Magic Mouse]]></category>
		<category><![CDATA[Spaces]]></category>
		<category><![CDATA[third button]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=543</guid>
		<description><![CDATA[YMMV, but I&#8217;m very happy with Apple&#8217;s Magic Mouse &#8211; the absence of a scroll wheel or button is bliss, and the ergonomics, while not as good as some mice by Logitech, are quite good. What I do miss however is the third button, and having other commands via alternative gestures. TUAW even posted an [...]]]></description>
			<content:encoded><![CDATA[<p>YMMV, but I&#8217;m very happy with <a href="http://www.apple.com/magicmouse/" target="_blank">Apple&#8217;s Magic Mouse</a> &#8211; the absence of a scroll wheel or button is bliss, and the ergonomics, while not as good as some mice by Logitech, are quite good. What I do miss however is the third button, and having other commands via alternative gestures. TUAW even posted an article earlier <a href="http://www.tuaw.com/2009/11/08/is-the-magic-mouse-a-dog/" target="_blank">calling the Magic Mouse a &#8220;dog&#8221;</a>, in part, due to the lack of a middle button.</p>
<p>Thanks to ifixit.com, we can appreciate that the underside of the Magic Mouse sports a grid of 10 x 13 sensor pads from the logo towards the top of the mouse, and two final rows at the very top, one with 8 sensors and the other with 6:</p>
<p><img class="aligncenter size-medium wp-image-544" title="Magic Mouse sensors" src="http://the.firehou.se/wp-content/uploads/2009/11/UyyKmUFBEB5WBCOW.large-300x225.jpg" alt="Magic Mouse sensors" width="300" height="225" /></p>
<p>This gives the mouse the potential to detect one or two fingers placed on it, <em>and</em> the individual motion of each finger, anywhere on the mouse&#8217;s usable surface. So, I propose the following gestures. To middle-click (third button), simply place two fingers on the mouse, and click with both at the same time, thus:</p>
<p><img class="aligncenter size-full wp-image-545" title="Middle click" src="http://the.firehou.se/wp-content/uploads/2009/11/Middle-click.png" alt="Middle click" width="179" height="243" /></p>
<p>To open Exposé or Spaces, place the right finger on the mouse, and scroll up or down with the left finger:</p>
<p><img class="aligncenter size-full wp-image-546" title="Expose" src="http://the.firehou.se/wp-content/uploads/2009/11/Expose.png" alt="Expose" width="179" height="243" /></p>
<p>It&#8217;s actually quite ergonomic, try it on your mouse, and if you like it, <a href="http://www.apple.com/feedback/imac.html" target="_blank">send the suggestion to Apple</a> &#8211; if anyone finds a form specific to the Magic Mouse, let me know, otherwise the link points to iMac feedback (as it comes with one). And yes, the images above are taken from Apple&#8217;s page and badly photoshopped, my apologies!
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F11%2F09%2Fapple-please-give-the-magic-mouse-new-gestures%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F11%2F09%2Fapple-please-give-the-magic-mouse-new-gestures%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/11/09/apple-please-give-the-magic-mouse-new-gestures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google GPS? Not so fast!</title>
		<link>http://mikepuchol.com/2009/10/30/google-gps-not-so-fast/</link>
		<comments>http://mikepuchol.com/2009/10/30/google-gps-not-so-fast/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 00:31:28 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[TomTom]]></category>
		<category><![CDATA[Web applications]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=539</guid>
		<description><![CDATA[So Erick Schonfeld took a shot at the iPhone maps app, which uses Google Maps as its data source, and all other car-mount GPS manufacturers such as TomTom or Garmin, saying that Google should make Apple beg for maps navigation. I don&#8217;t agree with much of his post, here is why: Real-time navigation availability depends [...]]]></description>
			<content:encoded><![CDATA[<p>So Erick Schonfeld took a shot at the iPhone maps app, which uses Google Maps as its data source, and all other car-mount GPS manufacturers such as TomTom or Garmin, <a href="http://www.techcrunch.com/2009/10/28/google-should-make-apple-beg-for-maps-navigation/" target="_blank">saying that Google should make Apple beg for maps navigation</a>. I don&#8217;t agree with much of his post, here is why:</p>
<ol>
<li>Real-time navigation availability depends on the type of license map data is served under, <a href="http://the.firehou.se/2008/06/16/understanding-the-iphone-sdks-restriction-on-real-time-navigation/" target="_blank">as I explained in a post a few months ago</a>. The map data served by Google to Apple for use on the iPhone does not allow real-time, turn-by-turn navigation, thus, it is cheap and much less money flows from Apple to Google for it. This is explicitly referenced in the iPhone SDK&#8217;s licensing terms. Google must be paying a premium on the data it serves on the Android GPS app for this kind of use.</li>
<li>A real-time navigation system depends on constant availability of maps, which means online devices, such as an Android phone running Google&#8217;s app, must have perfect wireless coverage, in terms of both connectivity and bandwidth, and we know this is next to impossible. A comment on Erick&#8217;s post suggests Google caches map data when the route is created, which would be fine&#8230;if people followed the route perfectly. Many times, this is impossible for a number of reasons, such as <a href="http://the.firehou.se/2006/06/02/tomtoms-hidden-all-terrain-mode/" target="_blank">bad routing</a>, roadworks, or heavy traffic. All of these require re-routing, so Google, and any online system, would need to cache also every possible deviation and re-routing from the original path, which is impossible. There is a reason why TomTom&#8217;s iPhone app comes loaded with several hundred megabytes of map data.</li>
<li>The GPS chipset on mobile devices is not well-suited for high-rate position updates. This is evident if you use TomTom&#8217;s iPhone app, and is also evident as TomTom includes a separate GPS chipset in their iPhone car kit, for &#8220;<a href="http://store.apple.com/us/product/TX672LL/A?fnode=MTY1NDA0MQ&amp;mco=MTM1Nzk0Mzk" target="_blank"><em>&#8230;the most accurate positioning</em></a>&#8220;. Since position update rate means battery consumption, and a phone has a ton of battery-consuming electronics on its own, the GPS typically provides less frequent updates than a dedicated GPS device.</li>
<li>Dedicated GPS units are best at taking you from A to B, re-routing you within a couple of seconds if you deviate, and showing you the location of <span style="text-decoration: line-through;">speed traps</span> safety cameras and other points of interest (POI). As you go up the price ladder, you are provided with additional functionality, such as voice commands, phone connectivity for hands-free audio and real-time traffic data. On this particular point, I totally agree with Matt Burns on his CrunchGear post, <a href="http://www.crunchgear.com/2009/10/29/google-didnt-kill-the-stand-alone-gps/" target="_blank">who says of GPS makers</a>: &#8220;<em>They are in the habit of producing 78 different versions of the same GPS. Each model steps you up $20 and adds another feature</em>&#8220;. But I digress. With such a model, of charging for map updates, or for safety cameras, would they not also be charging for POI data if it was of any real use in vehicle navigation? Like updates to the &#8220;Restaurants&#8221; category? No, the issue here is that POIs are the <em>least</em> used feature in GPS navigators, and the makers know this. You may occasionally look for the nearest gas station, but that&#8217;s about it. If you want to eat something, you will ask around at your destination, or will have looked up options before the trip, but very very rarely do people go looking for stuff on their GPS devices. It&#8217;s true that Google makes it a lot easier to access this kind of information, and puts it right there on your face, but nothing will beat a dedicated service such as <a href="http://www.yelp.com" target="_blank">Yelp</a>, or a dedicated app such as <a href="http://www.bliquo.com" target="_blank">Bliquo</a> (shameless plug for my good friend David Douek, who works there now, hope it helps your SEO at tiny bit!).</li>
<li>You can pick up a dedicated GPS unit for almost what you will spend on car mounts and cig-lighter adapter cables. They have faster routing, better planning capabilities, no need for wireless connectivity, and a much better audio output than any mobile phone.</li>
<li>You are supposed to be looking at the road while the GPS guides you by voice instructions, not at the GPS screen while it provides you with fancy data and/or graphics. Once you safely stop to look at the GPS, there are much better ways to present useful data, such as POIs, than Google&#8217;s interface. Many countries are looking into forcing GPS manufacturers into blanking the screen while the vehicle is moving in order to further prevent distractions to the driver.</li>
<li>TomTom, as an example, can add natural voice route requests to their higher-end units via software updates. Some already feature dictated destination input, but its use is clunky and not very useful right now &#8211; I bet we will see improvements soon. All it takes is the licensing of a proper speech-recognition engine. Google doesn&#8217;t have any major competitive advantage here, other than being the first to implement an (allegedly pending actual reviews) good functionality.</li>
<li style="text-align: left;"><a href="http://www.gpsmagazine.com/2007/07/tomtom_acquires_tele_atlas_for.php" target="_blank">TomTom owns Tele Atlas</a>, and <a href="http://mashable.com/2007/10/01/nokia-navteq/" target="_blank">Nokia owns NAVTEQ</a>, which combined provide a huge chunk of the map data used by Google Maps. I love you Fake Steve, <a href="http://www.fakesteve.net/2009/10/gps-makers-jubilant-as-google-validates.html" target="_blank">but you&#8217;re wrong on this one</a> &#8211; GPS makers are fine, and they know it. Unless Google is <a href="http://maps.google.com/help/maps/basemap/" target="_blank">planning on re-creating all the map data on their own of course</a>, which is discussed extensively <a href="http://www.spatiallyadjusted.com/2009/10/07/google-maps-now-uses-their-own-map-data/" target="_blank">on this post by James Fee</a>, but this would only mean Google would be free from other providers, not crush them.</li>
<li style="text-align: left;">Erick argues that &#8220;&#8230;<em>the future of mobile apps are Web apps&#8221;</em>. I think this is a huge over-simplification &#8211; the future of <em>some</em> mobile apps are apps that pull <em>some or all</em> of their data from the web. I regularly use an iPhone app that provides emergency response information on hazardous material (HazMat) incidents &#8211; I would be screwed if I had to depend on cellular coverage and a web service for this! We all saw how long Apple&#8217;s hard stance on iPhone web apps lasted, and the App Store just broke the 100.000 approved app barrier, so I rest my case.</li>
<li style="text-align: left;">Further from the GPS-centric topic, I&#8217;ll question wether Google really developed the Mail and Search functionalities of the iPhone &#8211; AFAIK, these are implementations of Mail and Spotlight respectively, can anyone confirm this one?</li>
</ol>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F10%2F30%2Fgoogle-gps-not-so-fast%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F10%2F30%2Fgoogle-gps-not-so-fast%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/10/30/google-gps-not-so-fast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wi-Fi Direct explained for those who think it is ad-hoc mode revisited</title>
		<link>http://mikepuchol.com/2009/10/18/wi-fi-direct-explained-for-those-who-think-it-is-ad-hoc-mode-revisited/</link>
		<comments>http://mikepuchol.com/2009/10/18/wi-fi-direct-explained-for-those-who-think-it-is-ad-hoc-mode-revisited/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 21:32:38 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Wi-Fi Direct]]></category>
		<category><![CDATA[WiFi]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=537</guid>
		<description><![CDATA[While it does contain most of the ad-hoc stack, the recently announced Wi-Fi Direct standard is actually an attempt to become more like Bluetooth. Ever since Wi-Fi was invented, ad-hoc mode allowed two or more adapters to form a peer-to-peer network without an access point (AP) running the show. In certain scenarios, there would be [...]]]></description>
			<content:encoded><![CDATA[<p>While it does contain most of the ad-hoc stack, <a href="http://gigaom.com/2009/10/14/wi-fi-gets-a-boost-with-new-p2p-standard/" target="_blank">the recently announced Wi-Fi Direct standard</a> is actually an attempt to become more like Bluetooth. Ever since Wi-Fi was invented, ad-hoc mode allowed two or more adapters to form a peer-to-peer network without an access point (AP) running the show. In certain scenarios, there would be connectivity problems when adapters were not configured for automatic IP assignment in the auto-discovery range, or had static IPs setup. Saving these, the user would then have to make sure his operating system had enabled the appropriate sharing protocols so that meaningful things could happen, such as sending files from one machine to the other.</p>
<p>Ever since Bluetooth was invented, it provided a communications stack, and a protocol stack, which encompassed a growing number of profiles. An application only had to talk to the right profile in order to establish communication with another Bluetooth device supporting the same profile, for example, serial port, audio gateway or FTP. During device discovery, a Bluetooth device would query the other about its available profiles, and would then choose the right one as needed. As a practical and recent example, the iPhone initially supported the handset profile, which provides very rudimentary headset functionality and leaves out things like address book access. Over time, the iPhone has been upgraded with more profiles, some as complex as A2DP which allows highish-definition audio to be sent to stereo headphones or speakers. I say &#8220;highish&#8221; as it uses an audio bandwidth of 16kHz, way below the normal audio response of a set of headphones, leading to a noticeable decrease in quality. But I digress.</p>
<p>In my view, <a href="http://www.wi-fi.org/news_articles.php?f=media_news&amp;news_id=909" target="_blank">the press release</a> was very badly worded, making it appear as a re-branding of old-time ad-hoc, when it really implies adding a number of protocol stacks and profiles to the standard ad-hoc mode. It is also an attempt to take Bluetooth head-on, with the argument that Wi-Fi is a gateway to a bigger number of services &#8211; Bluetooth DSL router, anyone? no? I rest my case. Having such a set of profiles would obviate the need to have Bluetooth chipsets on top of Wi-Fi, which are always an added cost and source of radio interference. We would then have to see how audio accessories cope with this, but then again, I&#8217;ve not seen many people carrying Bluetooth headsets around, while car kits can accommodate a Wi-Fi chipset thanks to their board space and bigger battery.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F10%2F18%2Fwi-fi-direct-explained-for-those-who-think-it-is-ad-hoc-mode-revisited%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F10%2F18%2Fwi-fi-direct-explained-for-those-who-think-it-is-ad-hoc-mode-revisited%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/10/18/wi-fi-direct-explained-for-those-who-think-it-is-ad-hoc-mode-revisited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hey everyone, faking a USB ID is not illegal, you know?</title>
		<link>http://mikepuchol.com/2009/09/24/hey-everyone-faking-a-usb-id-is-not-illegal-you-know/</link>
		<comments>http://mikepuchol.com/2009/09/24/hey-everyone-faking-a-usb-id-is-not-illegal-you-know/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 22:40:20 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Palm]]></category>
		<category><![CDATA[Pre]]></category>
		<category><![CDATA[USB-IF]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=533</guid>
		<description><![CDATA[I read with interest the many articles being written around the USB-IF&#8217;s decision to give its blessing to Apple&#8217;s use of the USB vendor ID, and claim that Palm&#8217;s usage of Apple&#8217;s Vendor ID in the Pre violates its policy. Now let&#8217;s sit back for a minute, and consider what the USB-IF actually is. The [...]]]></description>
			<content:encoded><![CDATA[<p>I read with interest <a href="http://www.tuaw.com/2009/09/23/usb-if-to-palm-oh-really-youve-got-some-explaining-to-do/" target="_blank">the many articles</a> being written around the USB-IF&#8217;s decision to give its blessing to Apple&#8217;s use of the USB vendor ID, and claim that Palm&#8217;s usage of Apple&#8217;s Vendor ID in the Pre violates its policy. Now let&#8217;s sit back for a minute, and consider what the <a href="http://www.usb.org" target="_blank">USB-IF</a> actually is.</p>
<p>The Implementer&#8217;s Forum, as it is know, is made up from various companies that helped develop the USB standard and its newer, faster derivatives. The USB-IF acts as a central clearinghouse that provides USB vendor IDs to manufacturers who wish to use USB ports in their products. Every vendor using USB is supposed to register on this forum and pay its fees, which then gives them the right to use the USB logo on their products, and an individual vendor ID, which combined with a product ID, identifies every device on a USB bus.</p>
<p>In theory, this is sweet and dandy, but in the real world, shit happens. Anyone who has played with hardware peripherals long enough will have seen at least once a device identified by Windows as something else &#8211; this happens when a vendor &#8220;clones&#8221; another vendor&#8217;s ID. Some can get away with using the other vendor&#8217;s ID and a random product ID, combined with a customized driver on CD. In fact, there are tons of products shipping today which bear the USB logo without paying any duties to the USB-IF, and thus, running with &#8220;pirated&#8221; IDs.</p>
<p>The only power the USB-IF has is self-regulation. If you want to bear their logo, you need to pay their royalty, and agree to abide to its policies, including non-cloning of vendor IDs. So let&#8217;s say Palm gets booted off the USB-IF. They just need to remove the USB logo from their product (if they bear it at all &#8211; check your iPhone as an example), and they&#8217;re home free. They are free to use Apple&#8217;s vendor ID as much as they want, and there is no legal recourse Apple or the USB-IF has. With so much legal power, don&#8217;t you think Apple would have sued Palm already if there were grounds for legal action? Rather, they engaged in a technical cat-and-mouse game involving iTunes updates to kill off the attacker.</p>
<p>Personally, I think Palm is in delusion. Making the Pre compatible with iTunes will not make it any more popular that it already is not. And Apple has every right to place technical blocks on the Pre, particularly if they miss-represent the vendor ID. Still, if I was Apple, I would have just ignored the issue. The Pre is not a threat to the iPhone, which is far superior in all aspects (apart from the non-removable battery).
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F09%2F24%2Fhey-everyone-faking-a-usb-id-is-not-illegal-you-know%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F09%2F24%2Fhey-everyone-faking-a-usb-id-is-not-illegal-you-know%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/09/24/hey-everyone-faking-a-usb-id-is-not-illegal-you-know/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Are there any security DVRs out there with Mac OS support?</title>
		<link>http://mikepuchol.com/2009/09/23/are-there-any-security-dvrs-out-there-with-mac-os-support/</link>
		<comments>http://mikepuchol.com/2009/09/23/are-there-any-security-dvrs-out-there-with-mac-os-support/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 16:15:11 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[AverDigi]]></category>
		<category><![CDATA[AverMedia]]></category>
		<category><![CDATA[DVR]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=530</guid>
		<description><![CDATA[It&#8217;s unreal &#8211; every single multiple-input dedicated DVR I am looking at for taking care of recording my home&#8217;s CCTV setup, only supports Windows. When network access is provider, it invariably involves loading an ActiveX control, which of course is not supported in OS X. Even more ridiculously, manufacturers such as AverDigi, a branch of [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s unreal &#8211; every single multiple-input dedicated DVR I am looking at for taking care of recording my home&#8217;s CCTV setup, only supports Windows. When network access is provider, it invariably involves loading an ActiveX control, which of course is not supported in OS X. Even more ridiculously, manufacturers such as <a href="http://www.avermedia.com/AVerDiGi/" target="_blank">AverDigi</a>, a branch of <a href="http://www.avermedia.com" target="_blank">AverMedia</a>, claim to run &#8220;<a href="http://www.avermedia.com/AVerDiGi/Product/Detail.aspx?Id=151" target="_blank">embedded Linux</a>&#8221; as some sort of badge of honor!</p>
<p>Let me get this straight &#8211; you use embedded Linux so that you can serve Windows-only ActiveX-infested web interfaces? Far worse, many of them use weird codecs that come in their Windows-only install CDs, which means that you&#8217;ll have to go back to a Windows machine or a VM in order to use these things. Mobile support of course isn&#8217;t much better, with Windows Mobile devices supported, again, via ActiveX, and Symbian via Java applets.</p>
<p>I&#8217;ll keep searching, but my hopes are fading&#8230;
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F09%2F23%2Fare-there-any-security-dvrs-out-there-with-mac-os-support%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F09%2F23%2Fare-there-any-security-dvrs-out-there-with-mac-os-support%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/09/23/are-there-any-security-dvrs-out-there-with-mac-os-support/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Peace and quiet returns to my Mac Pro</title>
		<link>http://mikepuchol.com/2009/09/21/peace-and-quiet-returns-to-my-mac-pro/</link>
		<comments>http://mikepuchol.com/2009/09/21/peace-and-quiet-returns-to-my-mac-pro/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:54:31 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[fan]]></category>
		<category><![CDATA[heatsink]]></category>
		<category><![CDATA[Mac Pro]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[X1900]]></category>

		<guid isPermaLink="false">http://the.firehou.se/?p=528</guid>
		<description><![CDATA[It was all due to a clogged up heat sink in the ATI X1900 card that sits inside my Mac Pro &#8211; since the idle fan was not pulling in an airflow, it slowly wound up to full speed, until it was full-on all the time. The build-up of dust was quickly cleared by a [...]]]></description>
			<content:encoded><![CDATA[<p>It was all due to a clogged up heat sink in the ATI X1900 card that sits inside my Mac Pro &#8211; since the idle fan was not pulling in an airflow, it slowly wound up to full speed, until it was full-on all the time. The build-up of dust was quickly cleared by a blast of compressed air&#8230;but this brought about an idea &#8211; why don&#8217;t idle video cards reverse the fan for a few seconds, say once a day, in order to blow back any dust build-up? This way, the heat sink radiator would be kept clean and efficient.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F09%2F21%2Fpeace-and-quiet-returns-to-my-mac-pro%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmikepuchol.com%2F2009%2F09%2F21%2Fpeace-and-quiet-returns-to-my-mac-pro%2F&amp;source=mikepuchol&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://mikepuchol.com/2009/09/21/peace-and-quiet-returns-to-my-mac-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
