<?xml version="1.0" encoding="UTF-8"?>

<rss version='2.0' 
     xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
     xmlns:doap="http://usefulinc.com/ns/doap#"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">

    <channel>
        <!-- This XML Feed shows details for the page signal 
             and everything recently tagged signal -->
        <creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/
          </creativeCommons:license>
        <title>signal on SWiK</title>
		<link>http://swik.net/signal</link>
        <doap:name>signal</doap:name>
        <doap:description></doap:description>
        <description></description> 
	  <!-- see doap:description for full description -->
        <link>http://swik.net/signal</link>
        
        <pubDate></pubDate>
        <lastBuildDate></lastBuildDate>
            
        <item>
            <title>Community at work - SIGNAL</title>
            <link>http://swik.net/MySQL/Planet+MySQL/Community+at+work+-+SIGNAL/cg8ce</link>
            <description>&lt;table border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;br/&gt;&lt;a href=&quot;http://datacharmer.blogspot.com/&quot;&gt;&lt;img src=&quot;http://3.bp.blogspot.com/_gVfZHGgf5LA/SO6QKRmV74I/AAAAAAAAAR8/HsjmmE9v_MU/s400/sakila_signal.jpg&quot; alt=&quot;sakila signal&quot; title=&quot;Sakila Signal&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;&lt;br/&gt;&lt;/td&gt;&lt;td&gt;&lt;br/&gt;Long time ago, I saw a &lt;a href=&quot;http://www.jorgebernal.info/dev-random/hacking-mysql-signal-support-i&quot;&gt;blog post&lt;/a&gt; by Jorge Bernal, with a simple implementation of SIGNAL for MySQL stored procedures. If you have ever tried to write MySQL stored procedures, you know how dearly missed is this feature. &lt;br/&gt;I discussed this feature internally, and everyone told me &quot;don&#039;t bother, we&#039;re going to implement SIGNAL in MySQL 6.1&quot;. And indeed, the full implementation for &lt;a href=&quot;http://forge.mysql.com/worklog/task.php?id=2110&quot;&gt;SIGNAL&lt;/a&gt; and &lt;a href=&quot;http://forge.mysql.com/worklog/task.php?id=2265&quot;&gt;RESIGNAL&lt;/a&gt; is in the roadmap.&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; &lt;br/&gt;What does that mean? Should we wait two or three more years to have a SIGNAL feature? Wouldn&#039;t it be nice to have a minimal SIGNAL working today, and get the full thing when it&#039;s ready?&lt;br/&gt;&lt;h3&gt;A bird in the hand ... &lt;/h3&gt;I would like to have SIGNAL available today, and therefore I tested Jorge&#039;s patch in the latest 5.1.28 code. It needs some more twisting to get it working. If you want to try it, make sure you have the current &lt;a href=&quot;http://datacharmer.org/downloads/jorge_signal.patch&quot;&gt;patch&lt;/a&gt;.&lt;br/&gt;Once you apply the patch and compile the code, you will have a server that accepts a simple &quot;SIGNAL&quot; command, without any parameter.&lt;br/&gt;Here&#039;s a simple usage example:&lt;br/&gt;First, you create two stored procedures:&lt;br/&gt;&lt;pre&gt;&lt;code&gt;&lt;br/&gt;delimiter //&lt;br/&gt;&lt;br/&gt;drop procedure if exists less_than_10 //&lt;br/&gt;create procedure less_than_10(i int )&lt;br/&gt;deterministic&lt;br/&gt;begin&lt;br/&gt;    if ( i     then&lt;br/&gt;        set @comment = concat(&#039;a valid number was entered (&#039;, i,&#039;)&#039;);&lt;br/&gt;    else&lt;br/&gt;        set @comment = concat(&#039;number too high (&#039;, i,&#039;)&#039;) ;&lt;br/&gt;        SIGNAL ;&lt;br/&gt;    end if;&lt;br/&gt;    select concat(&#039;everything fine [&#039;,@comment,&#039;]&#039;)  as comment;&lt;br/&gt;end//&lt;br/&gt;&lt;br/&gt;drop procedure if exists trapping //&lt;br/&gt;create procedure trapping ()&lt;br/&gt;deterministic&lt;br/&gt;begin&lt;br/&gt;    declare mystatus varchar(20) default &#039;ok&#039;;&lt;br/&gt;    declare continue handler for SQLSTATE &#039;38503&#039;&lt;br/&gt;        set mystatus = &#039;ERROR&#039;;&lt;br/&gt;    call less_than_10(7);&lt;br/&gt;    select mystatus, @comment;&lt;br/&gt;    call less_than_10(17);&lt;br/&gt;    select mystatus, @comment;&lt;br/&gt;    select &#039;and this is after the error&#039;;&lt;br/&gt;end //&lt;br/&gt;&lt;br/&gt;delimiter ;&lt;br/&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br/&gt;And then we&#039;ll try out the simple one, by calling directly the procedure with a SIGNAL.&lt;br/&gt;&lt;pre&gt;&lt;code&gt;&lt;br/&gt;call less_than_10(2);&lt;br/&gt;+--------------------------------------------------+&lt;br/&gt;| comment                                          |&lt;br/&gt;+--------------------------------------------------+&lt;br/&gt;| everything fine [a valid number was entered (2)] |&lt;br/&gt;+--------------------------------------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;Query OK, 0 rows affected (0.00 sec)&lt;br/&gt;&lt;br/&gt;select @comment;&lt;br/&gt;+--------------------------------+&lt;br/&gt;| @comment                       |&lt;br/&gt;+--------------------------------+&lt;br/&gt;| a valid number was entered (2) |&lt;br/&gt;+--------------------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;&lt;br/&gt;call less_than_10(12);&lt;br/&gt;ERROR 1340 (38503): Exception generated from user-defined function/procedure&lt;br/&gt;&lt;br/&gt;select @comment;&lt;br/&gt;+----------------------+&lt;br/&gt;| @comment             |&lt;br/&gt;+----------------------+&lt;br/&gt;| number too high (12) |&lt;br/&gt;+----------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br/&gt;next, we call the procedure that traps the exception. This one has full control of the execution flow, with SIGNAL and HANDLER.&lt;br/&gt;&lt;pre&gt;&lt;code&gt;&lt;br/&gt;call trapping();&lt;br/&gt;+--------------------------------------------------+&lt;br/&gt;| comment                                          |&lt;br/&gt;+--------------------------------------------------+&lt;br/&gt;| everything fine [a valid number was entered (7)] |&lt;br/&gt;+--------------------------------------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;&lt;br/&gt;+----------+--------------------------------+&lt;br/&gt;| mystatus | @comment                       |&lt;br/&gt;+----------+--------------------------------+&lt;br/&gt;| ok       | a valid number was entered (7) |&lt;br/&gt;+----------+--------------------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;&lt;br/&gt;+----------+----------------------+&lt;br/&gt;| mystatus | @comment             |&lt;br/&gt;+----------+----------------------+&lt;br/&gt;| ERROR    | number too high (17) |&lt;br/&gt;+----------+----------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;&lt;br/&gt;+-----------------------------+&lt;br/&gt;| and this is after the error |&lt;br/&gt;+-----------------------------+&lt;br/&gt;| and this is after the error |&lt;br/&gt;+-----------------------------+&lt;br/&gt;1 row in set (0.00 sec)&lt;br/&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br/&gt;This less than 30 lines patch is much better than many hacks that we&#039;ve seen published for years.&lt;br/&gt;What&#039;s your take? Would you like to have this feature in MySQL 5.1, while the full thing is being developed for 6.1?</description>
            
            <pubDate>Thu, 09 Oct 2008 18:13:26 -0700</pubDate>
        </item>
            
        <item>
            <title>Samsung SWC-E100 ExpressCard and WiMAX is in Baltimore!</title>
            <link>http://swik.net/User:zedomax/Zedomax/Samsung+SWC-E100+ExpressCard+and+WiMAX+is+in+Baltimore%21/cgl4d</link>
            <description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img class=&quot;size-full wp-image-9924 aligncenter&quot; title=&quot;wimax&quot; src=&quot;http://zedomax.com/blog/wp-content/uploads/2008/10/wimax.jpg&quot; alt=&quot;&quot; width=&quot;500&quot; height=&quot;272&quot;/&gt;&lt;/p&gt;
&lt;p&gt;Well, the great news is that WiMAX service that I have been &lt;a href=&quot;http://zedomax.com/blog/2008/06/04/wimax-will-replace-wifi-soon/&quot;&gt;complaining&lt;/a&gt; &lt;a href=&quot;http://zedomax.net/tag/wi-max/&quot;&gt;about&lt;/a&gt; for &lt;a href=&quot;http://zedomax.com/blog/category/technology/wimax-technology-2/&quot;&gt;years&lt;/a&gt; is finally here but only still in Baltimore.&lt;/p&gt;
&lt;p&gt;We should expect WiMAX to become available in more areas and why is this good?&lt;/p&gt;
&lt;p&gt;WiMAX is about 5-10 times faster than Sprint&amp;#8217;s CDMA network, meaning this WiMAX broadband card will allow you to surf at Cable DSL speeds anywhere you go.&lt;/p&gt;
&lt;p&gt;But until there&amp;#8217;s more coverage, you will have to wait.&lt;/p&gt;
&lt;p&gt;This WiMAX card is actually cheaper than most broadband cards out on the market today at $59.99 plus there&amp;#8217;s no contract, a really good deal if you ask me.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span id=&quot;intellitxt&quot;&gt;As it&amp;#8217;s the first of its kind, the E100 is the only XOHM card we&amp;#8217;ve tested so far, so we can&amp;#8217;t compare it to other WiMAX equipment. Our overall average speeds were 2.3Mbps down and 915Kbps up, which fits into Sprint&amp;#8217;s advertised range of 2-4 megabits down and 500-1500Kbps up. But speeds varied widely depending on signal strength: we achieved downloads as fast as 7.1 megabits, and as slow as 620 kilobits.&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;http://www.pcmag.com/article2/0,2817,2331486,00.asp&quot;&gt;via pcworld&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Brought to you by: &lt;a href=&quot;http://zedomax.com/blog&quot;&gt;Zedomax.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/10/02/samsung-swc-e100-expresscard-and-wimax-is-in-baltimore/&quot;&gt;Samsung SWC-E100 ExpressCard and WiMAX is in Baltimore!&lt;/a&gt;&lt;/p&gt;

	&lt;span style=&quot;display:none&quot;&gt;&lt;a href=&quot;http://zedomax.com/blog/category/afeatured-gadgets/&quot; title=&quot;A+Featured Gadgets&quot; rel=&quot;tag&quot;&gt;A+Featured Gadgets&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/broadband/&quot; title=&quot;broadband&quot; rel=&quot;tag&quot;&gt;broadband&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/cable-dsl/&quot; title=&quot;cable dsl&quot; rel=&quot;tag&quot;&gt;cable dsl&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/cards/&quot; title=&quot;cards&quot; rel=&quot;tag&quot;&gt;cards&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/cdma-network/&quot; title=&quot;cdma network&quot; rel=&quot;tag&quot;&gt;cdma network&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/ct/&quot; title=&quot;Consumer&quot; rel=&quot;tag&quot;&gt;Consumer&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/cool/&quot; title=&quot;Cool&quot; rel=&quot;tag&quot;&gt;Cool&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/e100/&quot; title=&quot;e100&quot; rel=&quot;tag&quot;&gt;e100&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/educational/&quot; title=&quot;Educational&quot; rel=&quot;tag&quot;&gt;Educational&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/expresscard/&quot; title=&quot;expresscard&quot; rel=&quot;tag&quot;&gt;expresscard&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/ct/gadgets/&quot; title=&quot;Gadgets&quot; rel=&quot;tag&quot;&gt;Gadgets&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/great-news/&quot; title=&quot;great news&quot; rel=&quot;tag&quot;&gt;great news&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/kilobits/&quot; title=&quot;kilobits&quot; rel=&quot;tag&quot;&gt;kilobits&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/megabits/&quot; title=&quot;megabits&quot; rel=&quot;tag&quot;&gt;megabits&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/news/&quot; title=&quot;News&quot; rel=&quot;tag&quot;&gt;News&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/samsung/&quot; title=&quot;samsung&quot; rel=&quot;tag&quot;&gt;samsung&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/signal-strength/&quot; title=&quot;signal strength&quot; rel=&quot;tag&quot;&gt;signal strength&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/sprint/&quot; title=&quot;sprint&quot; rel=&quot;tag&quot;&gt;sprint&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/swc/&quot; title=&quot;swc&quot; rel=&quot;tag&quot;&gt;swc&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/technology/&quot; title=&quot;technology&quot; rel=&quot;tag&quot;&gt;technology&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/wimax/&quot; title=&quot;wimax&quot; rel=&quot;tag&quot;&gt;wimax&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/technology/wimax-technology-2/&quot; title=&quot;WiMax&quot; rel=&quot;tag&quot;&gt;WiMax&lt;/a&gt;&lt;/span&gt;

	&lt;h3&gt;Related posts&lt;/h3&gt;
	&lt;ul class=&quot;st-related-posts&quot;&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/05/22/wimax-video-from-last-year/&quot; title=&quot;WiMax video from &amp;#8220;last year&amp;#8221;&amp;#8230; (May 22, 2008)&quot;&gt;WiMax video from &amp;#8220;last year&amp;#8221;&amp;#8230;&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/06/05/sprint-samsung-instinct-is-great-but-the-videos-suck/&quot; title=&quot;Sprint Samsung Instinct is great but the videos suck! (June 5, 2008)&quot;&gt;Sprint Samsung Instinct is great but the videos suck!&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/05/20/sprint-capping-unlimited-3g-data-service-at-5gb/&quot; title=&quot;Sprint Capping &amp;#8220;Unlimited&amp;#8221; 3G Data Service at 5GB (May 20, 2008)&quot;&gt;Sprint Capping &amp;#8220;Unlimited&amp;#8221; 3G Data Service at 5GB&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2007/08/28/samsung-umpc-with-wimax/&quot; title=&quot;Samsung UMPC with WiMAX (August 28, 2007)&quot;&gt;Samsung UMPC with WiMAX&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/05/27/samsung-instinct-the-iphone-killer-from-sprint/&quot; title=&quot;Samsung Instinct, the iPhone Killer from Sprint! (May 27, 2008)&quot;&gt;Samsung Instinct, the iPhone Killer from Sprint!&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/09/19/apple-should-be-sued-for-deceptive-iphone-3g-advertising/&quot; title=&quot;Apple should be Sued for Deceptive iPhone 3G Advertising! (September 19, 2008)&quot;&gt;Apple should be Sued for Deceptive iPhone 3G Advertising!&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/05/22/a-ride-around-seoul-in-a-wibro-equipped-bus/&quot; title=&quot;A ride around Seoul in a WiBro equipped bus (May 22, 2008)&quot;&gt;A ride around Seoul in a WiBro equipped bus&lt;/a&gt; &lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;http://zedomax.com/blog/2008/06/04/wimax-mini-laptops-and-intels-support/&quot; title=&quot;WiMax, Mini-Laptops, and Intel&amp;#8217;s Support (June 4, 2008)&quot;&gt;WiMax, Mini-Laptops, and Intel&amp;#8217;s Support&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;a href=&quot;http://feeds.feedburner.com/~a/Zedomaxcom?a=xI3xQ6&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~a/Zedomaxcom?i=xI3xQ6&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=XnC3M&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=XnC3M&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=qD9em&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=qD9em&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=xyuym&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=xyuym&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=RZTMm&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=RZTMm&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=euKjM&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=euKjM&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=MAMcM&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=MAMcM&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=8hdaM&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=8hdaM&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
            
            <pubDate>Thu, 02 Oct 2008 18:47:17 -0700</pubDate>
        </item>
            
        <item>
            <title>Four bars? The disconnect between bars and cell signal: Page 1</title>
            <link>http://swik.net/iphone/deli.cio.us%2Ftags%2Fiphone/Four+bars%3F+The+disconnect+between+bars+and+cell+signal%3A+Page+1/cgimo</link>
            <description></description>
            
            <pubDate>Wed, 01 Oct 2008 23:21:39 -0700</pubDate>
        </item>
            
        <item>
            <title>Four bars? The disconnect between bars and cell signal: Page 1</title>
            <link>http://swik.net/iphone/deli.cio.us%2Ftags%2Fiphone/Four+bars%3F+The+disconnect+between+bars+and+cell+signal%3A+Page+1/cgf9c</link>
            <description></description>
            
            <pubDate>Wed, 01 Oct 2008 09:21:22 -0700</pubDate>
        </item>
            
        <item>
            <title>Four bars? The disconnect between bars and cell signal: Page 1</title>
            <link>http://swik.net/iphone/deli.cio.us%2Ftags%2Fiphone/Four+bars%3F+The+disconnect+between+bars+and+cell+signal%3A+Page+1/cgews</link>
            <description></description>
            
            <pubDate>Wed, 01 Oct 2008 02:20:47 -0700</pubDate>
        </item>
            
        <item>
            <title>iPhone 2.1 Update Available from iTunes [IPhone]</title>
            <link>http://swik.net/iphone/deli.cio.us%2Ftags%2Fiphone/iPhone+2.1+Update+Available+from+iTunes+%5BIPhone%5D/cejdj</link>
            <description>The latest iPhone software update is now available from iTunes, so plug in that phone and click Update for the numerous smashed bugs, improved signal strength, better battery life, and Genius playlist creation. If you&amp;#039;ve updated, let&amp;#039;s hear what improv...</description>
            
            <pubDate>Fri, 12 Sep 2008 11:00:53 -0700</pubDate>
        </item>
            
        <item>
            <title>BasicDSP</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/BasicDSP/ccuat</link>
            <description></description>
            
            <pubDate>Mon, 18 Aug 2008 14:06:07 -0700</pubDate>
        </item>
            
        <item>
            <title>Reset iPhones Cell Connection | New Mac User</title>
            <link>http://swik.net/iphone/deli.cio.us%2Ftags%2Fiphone/Reset+iPhones+Cell+Connection+%7C+New+Mac+User/ccqf6</link>
            <description></description>
            
            <pubDate>Sun, 17 Aug 2008 10:06:05 -0700</pubDate>
        </item>
            
        <item>
            <title>GSM, SIP, H.323, ISUP and IMS Call Flows</title>
            <link>http://swik.net/SIP/del.icio.us+tag%2FSIP/GSM%2C+SIP%2C+H.323%2C+ISUP+and+IMS+Call+Flows/cb44a</link>
            <description></description>
            
            <pubDate>Sun, 10 Aug 2008 18:08:01 -0700</pubDate>
        </item>
            
        <item>
            <title>DIY Amateur TV Receiver!</title>
            <link>http://swik.net/User:zedomax/Zedomax/DIY+Amateur+TV+Receiver%21/b8f4b</link>
            <description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img class=&quot;alignnone size-medium wp-image-7701 aligncenter&quot; title=&quot;amateur-tv-receiver&quot; src=&quot;http://zedomax.com/blog/wp-content/uploads/2008/06/amateur-tv-receiver.jpg&quot; alt=&quot;DIY Amateur TV Receiver!&quot; width=&quot;500&quot; height=&quot;335&quot;/&gt;&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s another cool &lt;a href=&quot;http://www.flickr.com/photos/n8xd/517635522/&quot;&gt;DIY amateur TV receiver&lt;/a&gt;!&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;This is a 1.2 GHz microwave antenna made from regular 6&amp;#8243; household air duct. It picks up a signal from our new Amateur TV repeater. (The repeater will take a TV signal from anywhere in the local county, and retransmits it to everywhere in the local county.) The antenna looks like a giant flashlight.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.makezine.com/archive/2008/06/build_a_microwave_antenna.html&quot;&gt;via make&lt;/a&gt;&lt;/p&gt;

	&lt;span style=&quot;display:none&quot;&gt;&lt;a href=&quot;http://zedomax.com/blog/tag/air-duct/&quot; title=&quot;air duct&quot; rel=&quot;tag&quot;&gt;air duct&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/amateur-tv/&quot; title=&quot;amateur tv&quot; rel=&quot;tag&quot;&gt;amateur tv&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/ct/&quot; title=&quot;Consumer&quot; rel=&quot;tag&quot;&gt;Consumer&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/cool/&quot; title=&quot;Cool&quot; rel=&quot;tag&quot;&gt;Cool&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/diy/&quot; title=&quot;DoItYourself!&quot; rel=&quot;tag&quot;&gt;DoItYourself!&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/educational/&quot; title=&quot;Educational&quot; rel=&quot;tag&quot;&gt;Educational&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/entertainment/&quot; title=&quot;Entertainment&quot; rel=&quot;tag&quot;&gt;Entertainment&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/flashlight/&quot; title=&quot;flashlight&quot; rel=&quot;tag&quot;&gt;flashlight&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/category/ct/gadgets/&quot; title=&quot;Gadgets&quot; rel=&quot;tag&quot;&gt;Gadgets&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/household-air/&quot; title=&quot;household air&quot; rel=&quot;tag&quot;&gt;household air&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/local-county/&quot; title=&quot;local county&quot; rel=&quot;tag&quot;&gt;local county&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/microwave-antenna/&quot; title=&quot;microwave antenna&quot; rel=&quot;tag&quot;&gt;microwave antenna&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/repeater/&quot; title=&quot;repeater&quot; rel=&quot;tag&quot;&gt;repeater&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/tv-receiver/&quot; title=&quot;tv receiver&quot; rel=&quot;tag&quot;&gt;tv receiver&lt;/a&gt;, &lt;a href=&quot;http://zedomax.com/blog/tag/tv-signal/&quot; title=&quot;tv signal&quot; rel=&quot;tag&quot;&gt;tv signal&lt;/a&gt;&lt;/span&gt;
&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=3SF95I&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=3SF95I&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=Ybw61i&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=Ybw61i&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=JjmcYi&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=JjmcYi&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=wCFzAi&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=wCFzAi&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=HZWMLI&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=HZWMLI&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=92FnLI&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=92FnLI&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?a=19hAyI&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/Zedomaxcom?i=19hAyI&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description>
            
            <pubDate>Thu, 26 Jun 2008 09:08:24 -0700</pubDate>
        </item>
            
        <item>
            <title>Vocoder Has me sounding like a robot</title>
            <link>http://swik.net/podcast/Pro+Audio+Matrix/Vocoder+Has+me+sounding+like+a+robot/b4kru</link>
            <description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://proaudiomatrix.com/wp-content/uploads/2008/04/robotronic.gif&quot;&gt;&lt;img class=&quot;aligncenter size-medium wp-image-3459&quot; title=&quot;robotronic&quot; src=&quot;http://proaudiomatrix.com/wp-content/uploads/2008/04/robotronic-300x240.gif&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;240&quot;/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;Speech response is incredible, the sound is&lt;br/&gt;
crisp and clear, here is our new favorite.&lt;br/&gt;
Robotronic can vocode stereo signals with the internal&lt;br/&gt;
synthesizer, Samples can be processed, a signal can even be&lt;br/&gt;
processed with its own with shifted formants!&lt;br/&gt;
Each of the audio inputs has a complete channelstrip&lt;br/&gt;
with Gate, &lt;a class=&quot;zem_slink&quot; title=&quot;Compressor (software)&quot; rel=&quot;homepage&quot; href=&quot;http://www.apple.com/finalcutstudio/compressor&quot;&gt;Compressor&lt;/a&gt; and gain stage.&lt;br/&gt;
On the outputs you´ve got a 3 Band EQ, Compressor and a&lt;br/&gt;
multi &lt;a class=&quot;zem_slink&quot; title=&quot;Effects unit&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Effects_unit&quot;&gt;effects unit&lt;/a&gt; with four lovely signal-pimpers.This unit brings&lt;br/&gt;
you the desired vocoding sound which no other software &lt;a class=&quot;zem_slink&quot; title=&quot;Vocoder&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Vocoder&quot;&gt;vocoder&lt;/a&gt;&lt;br/&gt;
is capable of.&lt;/p&gt;
&lt;p&gt;Related articles&lt;/p&gt;
&lt;ul class=&quot;zemanta-article-ul&quot; style=&quot;margin: 1em 0pt 1.5em; padding: 0pt;&quot;&gt;
&lt;li class=&quot;zemanta-article&quot; style=&quot;margin: 0.5em 2em;&quot;&gt;&lt;a title=&quot;Open in new window&quot; href=&quot;http://blogs.adobe.com/davtechtable/2008/04/apples_compressor_encore_blura.html&quot;&gt;Apple&amp;#8217;s Compressor &amp;amp; Encore Blu-Ray&lt;/a&gt; [via Zemanta]&lt;/li&gt;
&lt;li class=&quot;zemanta-article&quot; style=&quot;margin: 0.5em 2em;&quot;&gt;&lt;a title=&quot;Open in new window&quot; href=&quot;http://blog.makezine.com/archive/2008/03/homemade_leslie_speaker.html?CMP=OTC-0D6B48984890&quot;&gt;Homemade Leslie speaker&lt;/a&gt; [via Zemanta]&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div id=&quot;zemanta-pixie&quot; style=&quot;margin: 5px 0pt; width: 100%;&quot;&gt;&lt;a id=&quot;zemanta-pixie-a&quot; title=&quot;Zemified by Zemanta&quot; href=&quot;http://www.zemanta.com/&quot;&gt;&lt;img id=&quot;zemanta-pixie-img&quot; style=&quot;border: medium none; float: right;&quot; src=&quot;http://img.zemanta.com/pixie.png?x-id=2f56b131-2587-4903-9bf2-2d6c126fb5ee&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
No Tags
&lt;p&gt;&lt;a href=&quot;http://feeds.feedburner.com/~a/ProAudioMatrix?a=IRPR4l&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~a/ProAudioMatrix?i=IRPR4l&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=3pEzVYG&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=3pEzVYG&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=UTefbkG&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=UTefbkG&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=WUKISSg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=WUKISSg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=R35DsMg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=R35DsMg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=yVk8Lkg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=yVk8Lkg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=TDow2CG&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=TDow2CG&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=9NvAmKg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=9NvAmKg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=FgSE6Ig&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=FgSE6Ig&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/ProAudioMatrix/~4/275976053&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
            
            <pubDate>Wed, 23 Apr 2008 00:24:08 -0700</pubDate>
        </item>
            
        <item>
            <title>Big Fish Audio Presents Analog Attack</title>
            <link>http://swik.net/podcast/Pro+Audio+Matrix/Big+Fish+Audio+Presents+Analog+Attack/b4bj7</link>
            <description>&lt;div class=&quot;zemanta-img&quot; style=&quot;margin: 1em; float: right;&quot;&gt;&lt;a href=&quot;http://commons.wikipedia.org/wiki/Image:MinimoogVoyager.jpg&quot;&gt;&lt;img style=&quot;border: medium none; display: block;&quot; src=&quot;http://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/MinimoogVoyager.jpg/202px-MinimoogVoyager.jpg&quot; alt=&quot;Minimoog Voyager synthesizer&quot;/&gt;&lt;/a&gt;Image via &lt;a href=&quot;http://commons.wikipedia.org/wiki/Image:MinimoogVoyager.jpg&quot;&gt;Wikipedia&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;Gear&lt;br/&gt;
Analog Attack was developed with &lt;a class=&quot;zem_slink&quot; title=&quot;Analog synthesizer&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Analog_synthesizer&quot;&gt;analog synth&lt;/a&gt; and signal processing gear of today and yesterday The instruments used for this production include: Minimoog, &lt;a class=&quot;zem_slink&quot; title=&quot;Minimoog Voyager&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Minimoog_Voyager&quot;&gt;Moog Voyager&lt;/a&gt;, &lt;a class=&quot;zem_slink&quot; title=&quot;Sequential Circuits Prophet-5&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Sequential_Circuits_Prophet-5&quot;&gt;Prophet 5&lt;/a&gt;, Prophet 600, Andromeda, Se-1x, Omega 8, Arp 2600, &lt;a class=&quot;zem_slink&quot; title=&quot;Yamaha CS-80&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Yamaha_CS-80&quot;&gt;Yamaha CS 80&lt;/a&gt;, &lt;a class=&quot;zem_slink&quot; title=&quot;Roland Juno-106&quot; rel=&quot;wikipedia&quot; href=&quot;http://en.wikipedia.org/wiki/Roland_Juno-106&quot;&gt;Juno 106&lt;/a&gt;, SH 101, Matrix 6.&lt;/p&gt;
&lt;p&gt;Key Applications  Mixes, Cues, Flash, Podcasts, Online Videos, Websites, GameAudio&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://demo.bigfishaudio.net/demo/anat1.mp3&quot;&gt;Download audio file (anat1.mp3)&lt;/a&gt;&lt;br/&gt;&lt;/p&gt;
&lt;p&gt;take a listen to the demo&lt;/p&gt;
&lt;p&gt;Related articles&lt;/p&gt;
&lt;ul class=&quot;zemanta-article-ul&quot; style=&quot;margin: 1em 0pt 1.5em; padding: 0pt;&quot;&gt;
&lt;li class=&quot;zemanta-article&quot; style=&quot;margin: 0.5em 2em;&quot;&gt;&lt;a title=&quot;Open in new window&quot; href=&quot;http://blog.makezine.com/archive/2008/03/ds_synthsequencer.html?CMP=OTC-0D6B48984890&quot;&gt;DS synth/sequencer on its way&lt;/a&gt; [via Zemanta]&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div id=&quot;zemanta-pixie&quot; style=&quot;margin: 5px 0pt; width: 100%;&quot;&gt;&lt;a id=&quot;zemanta-pixie-a&quot; title=&quot;Zemified by Zemanta&quot; href=&quot;http://www.zemanta.com/&quot;&gt;&lt;img id=&quot;zemanta-pixie-img&quot; style=&quot;border: medium none; float: right;&quot; src=&quot;http://img.zemanta.com/pixie.png?x-id=de21cdff-d0bc-47c0-aca1-2bf9ca16bc7d&quot; alt=&quot;&quot;/&gt;&lt;/a&gt;&lt;/div&gt;
No Tags
&lt;p&gt;&lt;a href=&quot;http://feeds.feedburner.com/~a/ProAudioMatrix?a=nNXPyT&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~a/ProAudioMatrix?i=nNXPyT&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;feedflare&quot;&gt;
&lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=0dScZrG&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=0dScZrG&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=tBd2xIG&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=tBd2xIG&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=BZ9jHyg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=BZ9jHyg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=hIcxqfg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=hIcxqfg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=eCINWjg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=eCINWjg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=vIzKzDG&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=vIzKzDG&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=5aeibpg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=5aeibpg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?a=ZqrP8Eg&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~f/ProAudioMatrix?i=ZqrP8Eg&quot; border=&quot;0&quot;&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src=&quot;http://feeds.feedburner.com/~r/ProAudioMatrix/~4/271210803&quot; height=&quot;1&quot; width=&quot;1&quot;/&gt;</description>
            
            <pubDate>Tue, 15 Apr 2008 23:21:53 -0700</pubDate>
        </item>
            
        <item>
            <title>An introduction to the treatment of neurophysiological signals using Scilab</title>
            <link>http://swik.net/scilab/del.icio.us+tag%2Fscilab/An+introduction+to+the+treatment+of+neurophysiological+signals+using+Scilab/b08w6</link>
            <description>Filtering</description>
            
            <pubDate>Mon, 21 Jan 2008 06:49:57 -0800</pubDate>
        </item>
            
        <item>
            <title>SPro home page</title>
            <link>http://swik.net/License:GPL/del.icio.us+tag%2Fgpl/SPro+home+page/bvikx</link>
            <description>SPro is a free speech signal processing toolkit which provides runtime commands implementing standard feature extraction algorithms for speech related applications and a C library to implement new algorithms and to use SPro files within your own programs.</description>
            
            <pubDate>Fri, 30 Nov 2007 10:05:56 -0800</pubDate>
        </item>
            
        <item>
            <title>Open Handset Alliance</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Open+Handset+Alliance/btjgf</link>
            <description></description>
            
            <pubDate>Sat, 10 Nov 2007 18:55:36 -0800</pubDate>
        </item>
            
        <item>
            <title>Open Handset Alliance</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Open+Handset+Alliance/btjfv</link>
            <description></description>
            
            <pubDate>Sat, 10 Nov 2007 18:55:11 -0800</pubDate>
        </item>
            
        <item>
            <title>2a_AxelWeiss.pdf (application/pdf Object)</title>
            <link>http://swik.net/XML/del.icio.us%2Ftag%2Fxml/2a_AxelWeiss.pdf+%28application%2Fpdf+Object%29/bk2rm</link>
            <description></description>
            
            <pubDate>Thu, 30 Aug 2007 00:17:00 -0700</pubDate>
        </item>
            
        <item>
            <title>Amplifiers, filters, cable, and PVR-x50&#039;s (was Re: Gotta buy a vowel: compiling patched tuner.c - RESOLVED) | ivtv | devel</title>
            <link>http://swik.net/MythTV/del.icio.us%2Ftag%2Fmythtv/Amplifiers%2C+filters%2C+cable%2C+and+PVR-x50%27s+%28was+Re%3A+Gotta+buy+a+vowel%3A+compiling+patched+tuner.c+-+RESOLVED%29+%7C+ivtv+%7C+devel/bbywz</link>
            <description>Improving cable signal</description>
            
            <pubDate>Tue, 19 Jun 2007 13:18:33 -0700</pubDate>
        </item>
            
        <item>
            <title>Some research articles about mathematics, computing, functional programming, signal processing, computer arithmetics</title>
            <link>http://swik.net/Haskell/del.icio.us+tag%2Fhaskell/Some+research+articles+about+mathematics%2C+computing%2C+functional+programming%2C+signal+processing%2C+computer+arithmetics/uads</link>
            <description></description>
            
            <pubDate>Tue, 16 Jan 2007 06:56:21 -0800</pubDate>
        </item>
            
        <item>
            <title>Some research articles about mathematics, informatics, functional programming, signal processing, computer arithmetics</title>
            <link>http://swik.net/Haskell/del.icio.us+tag%2Fhaskell/Some+research+articles+about+mathematics%2C+informatics%2C+functional+programming%2C+signal+processing%2C+computer+arithmetics/t9f7</link>
            <description></description>
            
            <pubDate>Tue, 16 Jan 2007 01:55:24 -0800</pubDate>
        </item>
            
        <item>
            <title>[from notmuch] This hack will give you a very noticeable improvement in signal strength. The wire amplifies the wireless signal doing the same job as expensive add-on antennas.</title>
            <link>http://swik.net/User:jeyrb/jey%27s+network%27s+del.icio.us+bookmarks/%5Bfrom+notmuch%5D+This+hack+will+give+you+a+very+noticeable+improvement+in+signal+strength.+The+wire+amplifies+the+wireless+signal+doing+the+same+job+as+expensive+add-on+antennas./sxut</link>
            <description></description>
            
            <pubDate>Tue, 02 Jan 2007 17:59:48 -0800</pubDate>
        </item>
            
        <item>
            <title>Scilab at a Glance. A Tutorial</title>
            <link>http://swik.net/opensource/del.icio.us+tag%2Fopensource/Scilab+at+a+Glance.+A+Tutorial/sm7m</link>
            <description>Scilab tutorial.
</description>
            
            <pubDate>Fri, 29 Dec 2006 23:52:02 -0800</pubDate>
        </item>
            
        <item>
            <title>Scilab at a Glance. A Tutorial</title>
            <link>http://swik.net/scilab/del.icio.us+tag%2Fscilab/Scilab+at+a+Glance.+A+Tutorial/sm6b</link>
            <description>Scilab tutorial.
</description>
            
            <pubDate>Fri, 29 Dec 2006 23:43:42 -0800</pubDate>
        </item>
            
        <item>
            <title>GNU libsigsegv  -  Handling page faults in user mode</title>
            <link>http://swik.net/License:GPL/del.icio.us+tag%2Fgpl/GNU+libsigsegv++-++Handling+page+faults+in+user+mode/lr4t</link>
            <description></description>
            
            <pubDate>Thu, 21 Sep 2006 05:10:37 -0700</pubDate>
        </item>
            
        <item>
            <title>Welcome to the Xholon Project</title>
            <link>http://swik.net/UML/del.icio.us+tag%2Fuml/Welcome+to+the+Xholon+Project/kd2k</link>
            <description></description>
            
            <pubDate>Mon, 28 Aug 2006 14:44:34 -0700</pubDate>
        </item>
            
        <item>
            <title>An introduction to the treatment of neurophysiological signals using Scilab</title>
            <link>http://swik.net/scilab/del.icio.us+tag%2Fscilab/An+introduction+to+the+treatment+of+neurophysiological+signals+using+Scilab/dabp</link>
            <description></description>
            
            <pubDate>Fri, 28 Apr 2006 10:37:45 -0700</pubDate>
        </item>
            
        <item>
            <title>The Message Bus (Mbus)</title>
            <link>http://swik.net/Mbus</link>
            <doap:name>Mbus</doap:name>
            <description>&lt;p&gt;The Message Bus (Mbus) is a light-weight local coordination protocol for developing component-based distributed applications&lt;/p&gt;
</description>
                    <category>mbus</category>
        <category>event</category>
        <category>signal</category>
        <category>message</category>
        <category>bus</category>
        <category>License:GPL</category>
                                              
            <pubDate>Fri, 26 Aug 2005 01:26:37 -0700</pubDate>
        </item>
    </channel>
</rss>
