<?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>Felipe Alfaro Solana</title>
	<atom:link href="http://www.felipe-alfaro.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.felipe-alfaro.org/blog</link>
	<description>A little bit of technology, security and networking with Linux, FreeBSD and Mac OS X, plus some personal opinions.</description>
	<lastBuildDate>Sun, 23 Oct 2011 16:46:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Disable Bonjour service advertisements in OS X</title>
		<link>http://www.felipe-alfaro.org/blog/2011/10/23/disable-bonjour-service-advertisements-in-os-x/</link>
		<comments>http://www.felipe-alfaro.org/blog/2011/10/23/disable-bonjour-service-advertisements-in-os-x/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 16:46:32 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=591</guid>
		<description><![CDATA[In case you are worried about Bonjour sending advertisements onto the local network because it compromises your privacy or because you are worried about security, know that you can disable them. It is described in http://support.apple.com/kb/HT3789: $ cd /System/Library/LaunchDaemons $ sudo vi com.apple.mDNSResponder.plist and replace: &#60;array&#62; &#60;string&#62;/usr/sbin/mDNSResponder&#60;/string&#62; &#60;string&#62;-launchd&#60;/string&#62; &#60;/array&#62; with &#60;array&#62; &#60;string&#62;/usr/sbin/mDNSResponder&#60;/string&#62; &#60;string&#62;-launchd&#60;/string&#62; &#60;string&#62;-NoMulticastAdvertisements&#60;/string&#62; &#60;/array&#62;]]></description>
			<content:encoded><![CDATA[<p>In case you are worried about Bonjour sending advertisements onto the local network because it compromises your privacy or because you are worried about security, know that you can disable them. It is described in http://support.apple.com/kb/HT3789:</p>
<p>$ cd /System/Library/LaunchDaemons<br />
$ sudo vi com.apple.mDNSResponder.plist</p>
<p>and replace:</p>
<div>
<pre>
        &lt;array&gt;
                &lt;string&gt;/usr/sbin/mDNSResponder&lt;/string&gt;
                &lt;string&gt;-launchd&lt;/string&gt;
        &lt;/array&gt;
</pre>
</div>
<p>with</p>
<div>
<pre>
        &lt;array&gt;
                &lt;string&gt;/usr/sbin/mDNSResponder&lt;/string&gt;
                &lt;string&gt;-launchd&lt;/string&gt;
                &lt;string&gt;-NoMulticastAdvertisements&lt;/string&gt;
        &lt;/array&gt;
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2011/10/23/disable-bonjour-service-advertisements-in-os-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flashing a US/CDMA 3G+WiFi Xoom Honeycomb ROM onto a European/UMTS one</title>
		<link>http://www.felipe-alfaro.org/blog/2011/07/14/flashing-a-uscdma-3gwifi-xoom-honeycomb-rom-onto-a-europeanumts-one/</link>
		<comments>http://www.felipe-alfaro.org/blog/2011/07/14/flashing-a-uscdma-3gwifi-xoom-honeycomb-rom-onto-a-europeanumts-one/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 12:26:21 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=580</guid>
		<description><![CDATA[This post describes how to hack a US/CDMA 3G+WiFi Xoom Honeycomb OTA ROM image to be flashable onto a European/UMTS 3G+WiFi Xoom. First, get a US/CDMA Honeycomb OTA image. I won&#8217;t tell you how to get it, but you&#8217;d better get it from an authorized source and make sure it hasn&#8217;t been compromised or tampered [...]]]></description>
			<content:encoded><![CDATA[<p>This post describes how to hack a US/CDMA 3G+WiFi Xoom Honeycomb OTA ROM image to be flashable onto a European/UMTS 3G+WiFi Xoom.</p>
<p>First, get a US/CDMA Honeycomb OTA image. I won&#8217;t tell you how to get it, but you&#8217;d better get it from an authorized source and make sure it hasn&#8217;t been compromised or tampered with. <strong>Flashing random ROMs downloaded from random Web sites is a recipe for disaster.</strong></p>
<p>Let&#8217;s say the OTA image is named <strong><code>xoom-ota.zip</code></strong>. Proceed to <code>unzip</code> its contents:</p>
<p><code>$ mkdir ota &#038;&#038; cd ota<br />
$ unzip /tmp/xoom-ota.zip</code></p>
<p>Now, one has to edit the <code>update-script</code> to prevent the OTA process from trying to replace the UMTS radio with a CDMA radio:</p>
<p><code>--- orig/META-INF/com/google/android/updater-script	2008-02-28 18:33:46.000000000 +0100<br />
+++ ota/META-INF/com/google/android/updater-script	2011-07-14 13:40:04.000000000 +0200<br />
@@-53,10+53,6 @@<br />
show_progress(0.200000, 10);<br />
package_extract_file("boot.img", "/dev/block/platform/sdhci-tegra.3/by-name/boot");<br />
show_progress(0.100000, 0);<br />
-assert(package_extract_file("bp.img", "/tmp/bp.img"),<br />
- package_extract_file("rdl.bin", "/tmp/rdl.bin"),<br />
- moto.update_cdma_bp("/tmp/rdl.bin", "/tmp/bp.img"),<br />
- delete("/tmp/bp.img", "/tmp/rdl.bin"));<br />
assert(package_extract_file("bootloader.bin", "/tmp/bootloader.bin"),<br />
moto.set_mbm_update("/tmp/bootloader.bin"),<br />
delete("/tmp/bootloader.bin"));<br />
</code></p>
<p>Now that the patch has been applied, let&#8217;s re-<code>zip</code> the modified tree into a new OTA ZIP file:</p>
<p><code>$ zip -r ../update.zip *</code></p>
<p>In order to apply the OTA onto the Xoom you&#8217;ll likely need to install the <a href="http://www.addictivetips.com/mobile/what-is-clockworkmod-recovery-and-how-to-use-it-on-android-complete-guide/#installation" title="ClockWorkMod" target="_blank">ClockWorkMod</a> recovery image, since at the time of this writing Xoom&#8217;s stock Android recovery can&#8217;t access the contents of the internal SD card partition. It seems, however, that Xoom&#8217;s stock Android recovery can access external USB storage devices.</p>
<p>In order to copy the hacked OTA image use:</p>
<p><code>$ adb push ../update.zip /mnt/sdcard</code></p>
<p>In order to install ClockWorkMod, you&#8217;ll need to download the recovery image. The easiest way is by installing &#8220;ROM Manager&#8221; into your Xoom from the Android Market. ROM Manager allows one to flash the recovery image on rooted Xooms automatically. If your Xoom isn&#8217;t rooted don&#8217;t worry as ROM Manager will still download the recovery image and place it somewhere under /mnt/sdcard/clockworkmod. From there, pull the image into your PC:</p>
<p><code>$ adb pull /mnt/sdcard/clockworkmod/.../recovery-clockwork-4.0.0.4-stingray.img</code></p>
<p>Then reboot the Xoom into the bootloader:</p>
<p><code>$ adb reboot bootloader</code></p>
<p>Once the fastboot protocol has been enabled (as shown on the screen):</p>
<p><code>$ fastboot flash recovery recovery-clockwork-4.0.0.4-stingray.img</code></p>
<p>Then reboot into recovery. It is important to reboot into recovery right away. Booting the system normally will likely reflash your recovery partition with the stock one, replacing ClockWorkMod. To boot into recovery, reboot the device:</p>
<p><code>$ fastboot reboot</code></p>
<p>Wait for the Motorola Dual-core logo, then tap the Volume Down key several times until the Android recovery option is shown on the top-left of the screen. Then press the Volume Up key to enter the recovery menu.</p>
<p>Once in the ClockWorkMod recovery, request to apply an update.zip image from the internal SD card partition. Navigate the menus using the Volume Up and Volume Down keys, and select an option by using the power button on the back. The update process will start and everything should apply smoothly. Next, wipe the cache and user data partitions, reboot and cross your fingers.</p>
<p>Suffice to say that you&#8217;ll lose 3G capabilities on your Xoom. It seems no one cares about Europe, not even Google, so Motorola still has Honeycomb 3.0.1 for us Europeans (instead of 3.1 or something newer like 3.2). And since 3.0.1 is so unstable and slow, I decided to upgrade to the latest Honeycomb build.</p>
<p>Perhaps one day people will take Europe seriously and release synchronized versions for the US and Europe (and also the rest of the world).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2011/07/14/flashing-a-uscdma-3gwifi-xoom-honeycomb-rom-onto-a-europeanumts-one/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Being angry</title>
		<link>http://www.felipe-alfaro.org/blog/2011/04/07/being-angry/</link>
		<comments>http://www.felipe-alfaro.org/blog/2011/04/07/being-angry/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 08:20:36 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/2011/04/07/being-angry/</guid>
		<description><![CDATA[Aristotle once said: &#8220;Anyone can become angry &#8211; that is easy. But to be angry with the right person, to the right degree, at the right time, for the right purpose, and in the right way &#8211; that is not easy.&#8221;]]></description>
			<content:encoded><![CDATA[<p>Aristotle once said: &#8220;Anyone can become angry &#8211; that is easy. But to be angry with the right person, to the right degree, at the right time, for the right purpose, and in the right way &#8211; that is not easy.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2011/04/07/being-angry/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Error Configuring db46 – MacPorts</title>
		<link>http://www.felipe-alfaro.org/blog/2010/12/20/error-configuring-db46-%e2%80%93-macports/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/12/20/error-configuring-db46-%e2%80%93-macports/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 17:11:51 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=569</guid>
		<description><![CDATA[Recently, I could not get db46 to install from Macports: $ sudo /opt/local/bin/port install db46 ... Error: db46 requires the Java for Mac OS X development headers. Error: Download the Java Developer Package from: Error: Target org.macports.configure returned: missing Java headers The solution consists of creating symbolic link to the installed files: sudo ln -s [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I could not get <code>db46</code> to install from Macports:</p>
<div>
<pre>$ sudo /opt/local/bin/port install db46
...
Error: db46 requires the Java for Mac OS X development headers.
Error: Download the Java Developer Package from:
Error: Target org.macports.configure returned: missing Java headers</pre>
</div>
<p>The solution consists of creating symbolic link to the installed files:</p>
<div>
<pre>sudo ln -s /Developer/SDKs/MacOSX10.6.sdk/System/Library/\
  Frameworks/JavaVM.framework/Versions/CurrentJDK/Headers \
  /System/Library/Frameworks/JavaVM.framework/\
  Versions/CurrentJDK/Headers</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/12/20/error-configuring-db46-%e2%80%93-macports/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>El peluquero</title>
		<link>http://www.felipe-alfaro.org/blog/2010/11/04/el-peluquero/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/11/04/el-peluquero/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 18:17:08 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=567</guid>
		<description><![CDATA[Un día, un florista fue al peluquero a cortarse el pelo. Después, pidió la cuenta y el peluquero le contestó: - No puedo aceptar dinero. Esta semana estoy haciendo un servicio comunitario. El florista quedó agradecido y se marchó. Cuando el peluquero fue a abrir el negocio, a la mañana siguiente, había una nota de [...]]]></description>
			<content:encoded><![CDATA[<p>Un día, un florista fue al peluquero a cortarse el pelo. Después, pidió la cuenta y el peluquero le contestó:<br />
- No puedo aceptar dinero. Esta semana estoy haciendo un servicio comunitario.<br />
El florista quedó agradecido y se marchó. Cuando el peluquero fue a abrir el negocio, a la mañana siguiente, había una nota de agradecimiento y una docena de rosas en la puerta.</p>
<p>Luego entró un panadero para cortarse el pelo, y cuando fue a pagar, el peluquero respondió:<br />
- No puedo aceptar dinero. Esta semana estoy haciendo un servicio comunitario.<br />
El panadero se puso contento y se fue. A la mañana siguiente cuando el peluquero volvió, había una nota de agradecimiento y una docena de barras de pan esperándolo en la puerta.</p>
<p>Más tarde, un profesor fue a cortarse el pelo y en el momento de pagar, el peluquero otra vez respondió:<br />
- No puedo aceptar dinero. Esta semana estoy haciendo un servicio comunitario.<br />
El profesor, con mucha alegría, se fue. A la mañana siguiente, cuando el peluquero abrió, había una nota de agradecimiento y una docena de diferentes libros, tales como &#8220;Cómo mejorar sus negocios&#8221; y &#8220;Cómo tener éxito&#8221;.</p>
<p>Entonces un diputado fue acortarse el pelo y cuando fue a pagar y el peluquero nuevamente dijo:<br />
- No puedo aceptar dinero. Esta semana estoy haciendo un servicio comunitario.<br />
El diputado contento se alejó. Al día siguiente cuando el peluquero fue a abrir el local, había una docena de diputados haciendo cola para cortarse el pelo gratis.</p>
<p>Esto, querido amigo, muestra la diferencia fundamental que existe actualmente entre los ciudadanos comunes y los miembros del Honorable Congreso de la Nación.</p>
<p>Por favor, en las próximas elecciones (2011), vota con cuidado&#8230; </p>
<p>Atentamente,<br />
EL PELUQUERO</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/11/04/el-peluquero/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Problems with Firefox 4 beta and cookies?</title>
		<link>http://www.felipe-alfaro.org/blog/2010/08/20/problems-with-firefox-4-beta-and-cookies/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/08/20/problems-with-firefox-4-beta-and-cookies/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 10:13:37 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=564</guid>
		<description><![CDATA[Did you experience problems with Firefox 4 beta and cookies? A possible cause is that in Firefox 4 beta, the cookie limit is now per-domain instead of per-host, so any single domain can now, by default, keep up to 50 cookies. For some Web applications. that might be set too low. When the limit is hit, Firefox will [...]]]></description>
			<content:encoded><![CDATA[<p>Did you experience problems with Firefox 4 beta and cookies? A possible cause is that in Firefox 4 beta, the cookie limit is now per-domain instead of per-host, so any single domain can now, by default, keep up to 50 cookies. For some Web applications. that might be set too low. When the limit is hit, Firefox will start &#8220;randomly&#8221; deleting cookies, which can cause problems, typically with Web applications that use cookies for Single Sign-on and login credentials.</p>
<p>The solution is to browse to <strong>about:config</strong>, and add (or modify it if already exists) an <strong>integer</strong> preference named <strong>network.cookie.maxPerHost</strong>. Set it to 500 or somesuch. You may or may not want to also set <strong>network.cookie.maxNumber</strong> (the default is 3000).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/08/20/problems-with-firefox-4-beta-and-cookies/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Security of Google Chrome Plug-ins and Extensions</title>
		<link>http://www.felipe-alfaro.org/blog/2010/07/29/security-of-google-chrome-plug-ins-and-extensions/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/07/29/security-of-google-chrome-plug-ins-and-extensions/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 01:18:33 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=561</guid>
		<description><![CDATA[Does Google Chrome plug-in and extensions security model allow for a plug-in or a extension to hijack certain operations in the browser, like spoofing DNS name resolution? What is the likelihood for an extension, like LastPass for Chrome, to hijack the browser&#8217;s DNS name resolution process in such a way that, when the user is [...]]]></description>
			<content:encoded><![CDATA[<p>Does Google Chrome plug-in and extensions security model allow for a plug-in or a extension to hijack certain operations in the browser, like spoofing DNS name resolution?</p>
<p>What is the likelihood for an extension, like LastPass for Chrome, to hijack the browser&#8217;s DNS name resolution process in such a way that, when the user is redirected to a site like PayPal, in fact he or she is redirected to something that looks like PayPal but is not? If an extension or plug-in can hijack the browser&#8217;s DNS name resolution process, the browser&#8217;s address bar might read like http://www.paypal.com/ but the actual browser would have, in fact, established HTTP/TCP connection against another Web site that looks like PayPal&#8217;s but using a different, non-legitimate IP address.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/07/29/security-of-google-chrome-plug-ins-and-extensions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Eclipse, ADT, strings.xml and java.lang.NullPointerException</title>
		<link>http://www.felipe-alfaro.org/blog/2010/07/22/eclipse-adt-strings-xml-and-java-lang-nullpointerexception/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/07/22/eclipse-adt-strings-xml-and-java-lang-nullpointerexception/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 00:03:16 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=554</guid>
		<description><![CDATA[On a clean installation of Eclipse and the Android Development Tools (ADT), and for a new Android project, when trying to edit the strings.xml file, a java.lang.NullPointerException is thrown. To fix the problem, edit strings.xml directly, bypassing the GUI, by double clicking the file in the Eclipse workbench, then selecting strings.xml from the tab at [...]]]></description>
			<content:encoded><![CDATA[<p>On a clean installation of <a href="http://eclipse.org/downloads/">Eclipse</a> and the <a href="http://developer.android.com/sdk/eclipse-adt.html">Android Development Tools (ADT)</a>, and for a new Android project, when trying to edit the <code>strings.xml</code> file, a <code>java.lang.NullPointerException</code> is thrown.</p>
<p>To fix the problem, edit <code>strings.xml</code> directly, bypassing the GUI, by double clicking the file in the Eclipse workbench, then selecting <code>strings.xml</code> from the tab at the bottom. Then, replace the line that reads:</p>
<p><code>&lt;resources&gt;</code></p>
<p>with</p>
<p><code>&lt;resources xmlns:android="http://schemas.android.com/apk/res/android"&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/07/22/eclipse-adt-strings-xml-and-java-lang-nullpointerexception/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Skype, VoIP and proprietary solutions</title>
		<link>http://www.felipe-alfaro.org/blog/2010/07/13/skype-voip-and-proprietary-solutions/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/07/13/skype-voip-and-proprietary-solutions/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 11:55:03 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=550</guid>
		<description><![CDATA[This post is mostly a rant about Skype, the current state of VoIP solutions and proprietary solutions. For quite a while I&#8217;ve owned an Android device. I don&#8217;t like proprietary solutions that force the customer into another&#8217;s hidden agenda. I don&#8217;t like proprietary solutions that change licensing or pricing unidirectionally without consensus. And I don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>This post is mostly a rant about Skype, the current state of VoIP solutions and proprietary solutions.</p>
<p>For quite a while I&#8217;ve owned an Android device. I don&#8217;t like proprietary solutions that force the customer into another&#8217;s hidden agenda. I don&#8217;t like proprietary solutions that change licensing or pricing unidirectionally without consensus. And I don&#8217;t like proprietary solutions that server a monitory instead of a majority. I use Skype because I make lot of calls to land lines in other countries. I haven&#8217;t been able to find any other VoIP provider that is easy to use and supports multiple devices (the only one close to this is Google Voice, but Google Voice is not yet available outside the US). They have PC software and software for iPhone and iPad, with little or no restrictions. But I am still waiting on Skype to release a native Android application for it (besides the existing one that only works on a very limited set of devices in the Verizon US wireless network). </p>
<p>I tried to come up with a non-imaginative, reliable solution to this. I tried <a href="http://www.fring.com/default.php">Fring</a>, but <a href="http://blogs.skype.com/en/2010/07/fring.html">Fring does not support Skype anymore</a>. I also tried <a href="http://www.nimbuzz.com/en">Nimbuzz</a> but Skype support does not work at all on Android Froyo (2.2). So the next natural thing to try was <a href="http://sipdroid.org/">SIPdroid</a> and <a href="http://www.skype.com/intl/en-us/business/sip/overview/">SIP for Skype</a>. Unfortunately, and contributing to my overall disappointment, SIP for Skype does not support subscriptions and, additionally, you have to run a business. Using SIP for Skype requires buying a channel subscription to allow for outbound calls (you will need as many channel subscriptions as simultaneous outbound calls you want to support), but channels do not support subscriptions, like unlimited calls to landlines, and they have their own credit line. When a Skype user places a call over SIP, the credit is withdrawn directly from the channel, and not from the user&#8217;s credit (the SIP credentials used are the channel&#8217;s not the user&#8217;s). Hence, even if the Skype user has a subscription plan, call to landlines will still have a variable cost.</p>
<p>Why does Skype limit support to Verizon US wireless network? Verizon Wireless states they have 70.8 million customers. The global wireless market, according to <a href="http://www.itu.int/ITU-D/ict/statistics/ict/index.html">a research</a> topped at 3.3 billion subscribers by the end of 2007. That means that Verizon was roughly 2.15% of the total mobile market at that time. Even if Android market share in the US is just a mere 9% according to <a href="http://blog.nielsen.com/nielsenwire/online_mobile/iphone-vs-android/">Nielsen</a>, it means there are lots of customers that are not on Verizon but using Android and still are incapable of using Skype.</p>
<p>So please, Skype, release Skype for Android now, with no artificial limitations based on some murky, strange and obscure requirements from the Telcos. And stop blaming other&#8217;s like Fring. No one else but Skype is damaging the Skype brand for not supporting all platforms, unrestrictedly. Remember that Skype makes money because of its customers, and not anyone else. Serving your customers should be Skype&#8217;s only mission.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/07/13/skype-voip-and-proprietary-solutions/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>OpenSolaris b134 text-based installation</title>
		<link>http://www.felipe-alfaro.org/blog/2010/07/08/opensolaris-b134-text-based-installation/</link>
		<comments>http://www.felipe-alfaro.org/blog/2010/07/08/opensolaris-b134-text-based-installation/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 16:26:40 +0000</pubDate>
		<dc:creator>Felipe Alfaro Solana</dc:creator>
				<category><![CDATA[Solaris]]></category>

		<guid isPermaLink="false">http://www.felipe-alfaro.org/blog/?p=543</guid>
		<description><![CDATA[Beginning with OpenSolaris b134 it is now possible to do a text-based installation. Some of the main differences between the new text-based installation and the LiveCD-based installation are: The text-based installation supports serial console. The text-based installation performs a minimal installation. X11, GNOME and many other packages will not be installed by default, but can [...]]]></description>
			<content:encoded><![CDATA[<p>Beginning with OpenSolaris b134 it is now possible to do a text-based installation. Some of the main differences between the new text-based installation and the LiveCD-based installation are:</p>
<ul>
<li>The text-based installation supports serial console.</li>
<li>The text-based installation performs a minimal installation. X11, GNOME and many other packages will not be installed by default, but can be installed later on by following instructions from <a href="http://hub.opensolaris.org/bin/view/Project+caiman/Text+Install+b134+Notes">Text Installer b134-based project gate images</a>.</li>
<li>The text-based installation offers more installation options, like installing into a whole disk, a partition or a slice within a Solaris2 partition. Again, this can be achieved by following instructions from <a href="http://hub.opensolaris.org/bin/view/Project+caiman/Text+Install+b134+Notes">Text Installer b134-based project gate images</a>.</li>
</ul>
<p>Being able to install OpenSolaris into a slice within a partition can be useful. For example, my OpenSolaris box has 1x2TB disk and 3&#215;1.5TB disks. I want one ZFS pool to span 4&#215;1.5TB slices (across the 4 drives) and the ZFS root pool on the remaining space in the 2TB disk. With the LiveCD it requires a lot of hacking as described in <a href="http://www.felipe-alfaro.org/blog/2009/07/27/hp-proliant-dl180-g6-and-zfs-part-v/">HP Proliant DL180 G6 and ZFS (part V)</a>. With the text-based installation it is straightforward and it does not require booting a Linux distribution to modify the partition table, or from an OpenSolaris LiveCD to adjust the slices.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipe-alfaro.org/blog/2010/07/08/opensolaris-b134-text-based-installation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

