<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>combo &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/combo/</link>
	<description>Feed of posts on WordPress.com tagged "combo"</description>
	<pubDate>Sun, 07 Sep 2008 16:42:53 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Advanced HTML Combo Box Element]]></title>
<link>http://codecentre.wordpress.com/?p=3</link>
<pubDate>Wed, 03 Sep 2008 14:09:00 +0000</pubDate>
<dc:creator>glanceportal</dc:creator>
<guid>http://codecentre.wordpress.com/?p=3</guid>
<description><![CDATA[Standard HTML combo box just automatically select an option from the first letter as we press a key.]]></description>
<content:encoded><![CDATA[<p>Standard HTML combo box just automatically select an option from the first letter as we press a key.  	 That is the main reason that I decide to create more advanced HTML combo box. 	 This combo box select the option automatically based on the keys we press so that  it is easier and faster to get to what we are looking for.</p>
<p><strong>Platform</strong></p>
<p>This script can be run well using Mozilla Firefox (any version), Internet Explorer (any version), Opera and Fast Browser.<br />
<!--more--><br />
<strong>Source Code</strong></p>
<pre style="background-color:#e1dcc1;color:#5a5a5a;font-family:courier new;font-size:11px;">&#60;script language="javascript"&#62;
// By	: GLance
// URL	: http://www.glance.uni.cc
  function get_ascii_by_event(e){
    switch(e.keyCode){
      case 32:return " ";break;
      case 48:if(e.shiftKey) return ")"; else return "0";break;
      case 49:if(e.shiftKey) return "!"; else return "1";break;
      case 50:if(e.shiftKey) return "@"; else return "2";break;
      case 51:if(e.shiftKey) return "#"; else return "3";break;
      case 52:if(e.shiftKey) return "$"; else return "4";break;
      case 53:if(e.shiftKey) return "%"; else return "5";break;
      case 54:if(e.shiftKey) return "^"; else return "6";break;
      case 55:if(e.shiftKey) return "&#38;"; else return "7";break;
      case 56:if(e.shiftKey) return "*"; else return "8";break;
      case 57:if(e.shiftKey) return "("; else return "9";break;
      case 59:if(e.shiftKey) return ":"; else return ";";break;
      case 61:if(e.shiftKey) return "+"; else return "=";break;
      case 65:if(e.shiftKey) return "A"; else return "a";break;
      case 66:if(e.shiftKey) return "B"; else return "b";break;
      case 67:if(e.shiftKey) return "C"; else return "c";break;
      case 68:if(e.shiftKey) return "D"; else return "d";break;
      case 69:if(e.shiftKey) return "E"; else return "e";break;
      case 70:if(e.shiftKey) return "F"; else return "f";break;
      case 71:if(e.shiftKey) return "G"; else return "g";break;
      case 72:if(e.shiftKey) return "H"; else return "h";break;
      case 73:if(e.shiftKey) return "I"; else return "i";break;
      case 74:if(e.shiftKey) return "J"; else return "j";break;
      case 75:if(e.shiftKey) return "K"; else return "k";break;
      case 76:if(e.shiftKey) return "L"; else return "l";break;
      case 77:if(e.shiftKey) return "M"; else return "m";break;
      case 78:if(e.shiftKey) return "N"; else return "n";break;
      case 79:if(e.shiftKey) return "O"; else return "o";break;
      case 80:if(e.shiftKey) return "P"; else return "p";break;
      case 81:if(e.shiftKey) return "Q"; else return "q";break;
      case 82:if(e.shiftKey) return "R"; else return "r";break;
      case 83:if(e.shiftKey) return "S"; else return "s";break;
      case 84:if(e.shiftKey) return "T"; else return "t";break;
      case 85:if(e.shiftKey) return "U"; else return "u";break;
      case 86:if(e.shiftKey) return "V"; else return "v";break;
      case 87:if(e.shiftKey) return "W"; else return "w";break;
      case 88:if(e.shiftKey) return "X"; else return "x";break;
      case 89:if(e.shiftKey) return "Y"; else return "y";break;
      case 90:if(e.shiftKey) return "Z"; else return "z";break;
      case 96:if(e.shiftKey) return ")"; else return "0";break;
      case 97:if(e.shiftKey) return "!"; else return "1";break;
      case 98:if(e.shiftKey) return "@"; else return "2";break;
      case 99:if(e.shiftKey) return "#"; else return "3";break;
      case 100:if(e.shiftKey) return "$"; else return "4";break;
      case 101:if(e.shiftKey) return "%"; else return "5";break;
      case 102:if(e.shiftKey) return "^"; else return "6";break;
      case 103:if(e.shiftKey) return "&#38;"; else return "7";break;
      case 104:if(e.shiftKey) return "*"; else return "8";break;
      case 105:if(e.shiftKey) return "("; else return "9";break;
      case 109:if(e.shiftKey) return "_"; else return "-";break;
      case 188:if(e.shiftKey) return "&#60;"; else return ",";break;
      case 190:if(e.shiftKey) return "&#62;"; else return ".";break;
      case 191:if(e.shiftKey) return "?"; else return "/";break;
      case 192:if(e.shiftKey) return "~"; else return "`";break;
      case 220:if(e.shiftKey) return "&#124;"; else return "\";break;
      default:return "";break;
    }
  }

  function combo_auto_select(obj, e){
    try{
      var saved_key = obj.tag;
      var tmp = saved_key;
      var key = get_ascii_by_event(e);
      var before = obj.value;
      var after = obj.value;
      if(e.ctrlKey &#124;&#124; e.altKey)
        return;
      if(key == "")
        return;
      var list_count = 0;
      try{
        var list_count = obj.options.length;
      }catch(err){}
      if(list_count == 0)
        return;
      tmp += key;
      var found = false;
      for(i=0;i&#60;list_count;i++){
        var val = obj.options[i].text.toLowerCase();
        if(val == "")
          continue;
        if(val.substr(0,tmp.length) == tmp.toLowerCase()){
          obj.options[i].selected = true;
          after = obj.options[i].value;
          found = true;
          break;
        }
      }
      if(!found){
        tmp = key;
        for(i=0;i&#60;list_count;i++){
          var val = obj.options[i].text.toLowerCase();
          if(val == "")
            continue;
          if(val.substr(0,tmp.length) == tmp.toLowerCase()){
            obj.options[i].selected = true;
            after = obj.options[i].value;
            found = true;
            break;
          }
        }
      }
      if(found){
        obj.tag = tmp;
        if(before != after){
          obj.value = after;
          try{
            obj.onchange();
          }catch(err){
        }
      }
    }else
      obj.tag = "";
    if(navigator.appName != "Microsoft Internet Explorer")
      e.preventDefault();
    else
      e.returnValue = false;
    return;
  }catch(errs){}
}
&#60;/script&#62;
&#60;select onkeydown="combo_auto_select(this, event)" style="width:200px"&#62;
  &#60;option&#62;Option 1&#60;/option&#62;
  &#60;option&#62;Option 2&#60;/option&#62;
  &#60;option&#62;Option 3&#60;/option&#62;
  &#60;option&#62;Option 4&#60;/option&#62;
&#60;/select&#62;</pre>
<p><strong>Copyright Note </strong></p>
<p>This script is free to use but please do not remove the comment in the script.</p>
<p><strong>Related Links</strong></p>
<p><a href="http://javascript.internet.com/" target="_blank">Javascript Source</a><br />
<a href="http://javascript.about.com/library/blnav7.htm" target="_blank">Creating a combo box</a><br />
<a href="http://en.wikipedia.org/wiki/HTML_element" target="_blank">About HTML element</a><br />
<a href="http://en.wikipedia.org/wiki/Javascript" target="_blank">About JavaScript</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[SWIFT AS A COURSING RIVER, WITH ALL THE FORCE OF A GREAT TYPHOON, WITH ALL THE STRENGTH OF A RAGIN' FIRE - TENGEN TOPPA GURREN LAGANN!]]></title>
<link>http://finality.wordpress.com/?p=1122</link>
<pubDate>Sun, 31 Aug 2008 10:13:10 +0000</pubDate>
<dc:creator>xephfyre</dc:creator>
<guid>http://finality.wordpress.com/?p=1122</guid>
<description><![CDATA[Slow as hell, I know, seen the (attempted) combo on /a/ many times, but&#8230;.
GENTLEMEN.

LET]]></description>
<content:encoded><![CDATA[<p>Slow as hell, I know, seen the (attempted) combo on /a/ many times, but....</p>
<p>GENTLEMEN.</p>
<p style="text-align:center;"><a href="http://finality.files.wordpress.com/2008/08/1214672077221.png"><img class="size-medium wp-image-1123 aligncenter" src="http://finality.wordpress.com/files/2008/08/1214672077221.png?w=300" alt="" width="300" height="170" /></a></p>
<p style="text-align:center;">LET'S GET DOWN TO BUSINESS</p>
<p style="text-align:center;"><!--more--></p>
<p style="text-align:center;"><a href="http://finality.files.wordpress.com/2008/08/kamina_bumper.jpg"><img class="aligncenter size-medium wp-image-1124" src="http://finality.wordpress.com/files/2008/08/kamina_bumper.jpg?w=300" alt="" width="300" height="187" /></a></p>
<p style="text-align:center;">TO DEFEAT THE HUNS!</p>
<p style="text-align:center;">
<p style="text-align:center;">
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/MKGpCmvGTwU'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/MKGpCmvGTwU&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>Thanks Maaku.</p>
<p>Lyrics: WITH ALL THE STRENGTH OF A RAP, WHICH IS A MAN'S SOUL.</p>
<p>By anon.</p>
<p><a href="http://finality.files.wordpress.com/2008/08/withallthestrengthofarapp1.png"><img src="http://finality.wordpress.com/files/2008/08/withallthestrengthofarapp1.png?w=38" alt="" width="38" height="300" class="aligncenter size-medium wp-image-1125" /></a></p>
<p>Edit: Off to b'day dinner. Enjoy!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cablevision Combo Todo en uno]]></title>
<link>http://fusiontribal.wordpress.com/?p=858</link>
<pubDate>Thu, 28 Aug 2008 16:04:46 +0000</pubDate>
<dc:creator>MAS2</dc:creator>
<guid>http://fusiontribal.wordpress.com/?p=858</guid>
<description><![CDATA[
Todos (al menos casi) hemos visto algún anuncio publicitario en diversos medios acerca del Combo T]]></description>
<content:encoded><![CDATA[<p><a href="http://fusiontribal.files.wordpress.com/2008/08/cablevision-combo.jpg"><img class="aligncenter size-full wp-image-859" src="http://fusiontribal.wordpress.com/files/2008/08/cablevision-combo.jpg" alt="" width="455" height="139" /></a></p>
<p>Todos (al menos casi) hemos visto algún anuncio publicitario en diversos medios acerca del Combo Todo en Uno de Cablevisión. Algunos <a title="Luis Maram Blog" href="http://blog.luismaram.com/2008/07/21/publicidad-kitsch-caso-cablevision/">han criticado</a> su propuesta de video, otros han hecho mofa de él con una excelente propuesta:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/aIYMZH27bSQ'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/aIYMZH27bSQ&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>La versión Original:</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/FGZbvtBXobA'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/FGZbvtBXobA&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>Personalmente el video desde el principio me ha parecido de mal gusto y el plan sigue siendo muy caro.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Alista el PRI discusión de la Ley de Radio y TV]]></title>
<link>http://observatoriomediosuia3.wordpress.com/?p=1771</link>
<pubDate>Mon, 25 Aug 2008 14:11:44 +0000</pubDate>
<dc:creator>Observatorio de Medios UIA</dc:creator>
<guid>http://observatoriomediosuia3.wordpress.com/?p=1771</guid>
<description><![CDATA[Angélica Mercado, Milenio 
 
Las comisiones del Senado tienen listo el dictamen de reformas a la L]]></description>
<content:encoded><![CDATA[<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">Angélica Mercado, Milenio </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">Las comisiones del Senado tienen listo el dictamen de reformas a la Ley de Radio y Televisión para agilizar la transición de las estaciones de AM a frecuencia modulada, las que por única ocasión recibirían los llamados “combos” sin licitar la frecuencia, informó el priista Carlos Lozano.<!--more--></span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">El legislador indicó que el cabildeo de la iniciativa presentada por senadores priistas, entre ellos el coordinador Manlio Fabio Beltrones, ha prosperado con los grupos parlamentarios para que el tema se discuta en septiembre, aun cuando hay objeción de Acción Nacional sobre este tema.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">En ese sentido, advirtió que hay las condiciones para construir acuerdos con el PRD si los panistas se marginan, “aunque yo espero que lo vean bien, porque correrían el riesgo de quedar mal con uno de los sectores más influyentes del país”.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">Lozano de la Torre expuso el tema a su fracción en la pasada reunión plenaria de Aguascalientes y dijo que ahí el presidente de la Comisión de Comunicaciones y Transportes, Ángel Aguirre, informó que se tiene listo el borrador.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">“Entiendo que ya vamos muy avanzados; participan varias comisiones, como Estudios Legislativos, Radio y Televisión y Comunicaciones, entonces es un trabajo que tenemos que hacer entre todas las comisiones pero ya hay el acuerdo nuestro de sacar adelante este trabajo en septiembre”, ponderó.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">Respecto a si está superada la recomendación de la Suprema Corte, que al revisar la llamada ley Televisa resolvió que no se pueden entregar concesiones sin licitación, Lozano afirmó que ese tema ya fue revisado por los abogados y no se encontró ningún impedimento.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">La iniciativa plantea que en ese caso, por única ocasión se entreguen las concesiones y permisos para operar frecuencias de FM a los “aemeros” que cumplan con requisitos incluidos en la propia ley.</span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;"> </span></span></p>
<p class="MsoNormal" style="text-align:justify;margin:0;"><span style="color:black;font-family:Tahoma;"><span style="font-size:small;">Lozano insistió en que este tema ha recibido el respaldo en todos los estados y posiblemente algún grupo en particular se pueda sentir perjudicado, pero beneficiará a más de 850 estaciones de AM en el país que prácticamente están al borde desaparecer. </span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gleam Of Fight: Madoi Takeda Combo XD]]></title>
<link>http://doujinxtacy.wordpress.com/?p=1699</link>
<pubDate>Fri, 22 Aug 2008 14:28:05 +0000</pubDate>
<dc:creator>Cute Benimaru</dc:creator>
<guid>http://doujinxtacy.wordpress.com/?p=1699</guid>
<description><![CDATA[Hell Yeah, the combo madness has begun!
Gleam Of Force: Madoi Takeda Basic Combo:

Saludos!
]]></description>
<content:encoded><![CDATA[<p>Hell Yeah, the combo madness has begun!</p>
<p><strong>Gleam Of Force: Madoi Takeda Basic Combo:</strong><br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/fQKmAnezuT8'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/fQKmAnezuT8&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>Saludos!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[DataOne Home Plans Combo 199, Combo 299, Flexi 350]]></title>
<link>http://netsolns.wordpress.com/?p=40</link>
<pubDate>Fri, 08 Aug 2008 11:31:02 +0000</pubDate>
<dc:creator>netsolns</dc:creator>
<guid>http://netsolns.wordpress.com/?p=40</guid>
<description><![CDATA[BSNL has introduced DataOne Home Plans Combo 199, Combo 299, Flexi 350, the tariff below is effectiv]]></description>
<content:encoded><![CDATA[<p>BSNL has introduced DataOne Home Plans Combo 199, Combo 299, Flexi 350, the tariff below is effective from 1st August, 2008.</p>
<p><a title="DataOne Home Plans Combo 199, Combo 299, Flexi 350" href="http://www.bsnl.co.in/newsdetailed.php?news_id=396" target="_self">http://www.bsnl.co.in/newsdetailed.php?news_id=396</a></p>
<h3>Flexi 350</h3>
<ol>
<li><strong>Bandwidth:</strong> 256 kbps</li>
<li><strong>SU/MU:</strong> Single User</li>
<li><strong>BB Fixed Monthly Charges:</strong> Rs.350</li>
<li><strong>Landline Fixed Monthly Charges:</strong> As per existing plan</li>
<li><strong>Download/Upload Limit:</strong> 1.8 GB</li>
<li><strong>Free Calls:</strong> As per existing plan</li>
<li><strong>Call charges per MCU:</strong> As per existing plan</li>
<li><strong>BB usage charges per MB<br />
beyond free download/upload limit:</strong> Rs 0.80</li>
<li><strong>Night Unlimited:</strong> NA</li>
<li><strong>Maximum Usage Charges for BB incl. of FMC:</strong> Rs 1500</li>
<li><strong>Security Deposit:</strong> One month rental</li>
</ol>
<h3>Combo 299</h3>
<ol>
<li><strong>Bandwidth:</strong> 256 kbps</li>
<li><strong>SU/MU:</strong> Single User</li>
<li><strong>BB Fixed Monthly Charges:</strong> Rs. 299</li>
<li><strong>Landline Fixed Monthly Charges:</strong> As per existing plan</li>
<li><strong>Download/Upload Limit:</strong> 1 GB</li>
<li><strong>Free Calls:</strong> Nil</li>
<li><strong>Call charges per MCU:</strong> Rs 1.00</li>
<li><strong>BB usage charges per MB<br />
beyond free download/upload limit:</strong> Rs 0.90</li>
<li><strong>Night Unlimited:</strong> NA</li>
<li><strong>Maximum Usage Charges for BB incl. of FMC:</strong> NA</li>
<li><strong>Security Deposit:</strong> One month rental</li>
</ol>
<h3>Combo 199</h3>
<ol>
<li><strong>Bandwidth:</strong> 256 kbps</li>
<li><strong>SU/MU:</strong> Single User</li>
<li><strong>BB Fixed Monthly Charges:</strong> Rs.199</li>
<li><strong>Landline Fixed Monthly Charges:</strong> As per existing plan</li>
<li><strong>Download/Upload Limit:</strong> 250 MB</li>
<li><strong>Free Calls:</strong> Nil</li>
<li><strong>Call charges per MCU:</strong> Rs 1.20</li>
<li><strong>BB usage charges per MB<br />
beyond free download/upload limit:</strong> Rs 0.90</li>
<li><strong>Night Unlimited:</strong> NA</li>
<li><strong>Maximum Usage Charges for BB incl. of FMC:</strong> NA</li>
<li><strong>Security Deposit:</strong> One month rental</li>
</ol>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Travis Barker und DJ AM live]]></title>
<link>http://sens1a.wordpress.com/?p=42</link>
<pubDate>Wed, 06 Aug 2008 10:54:50 +0000</pubDate>
<dc:creator>sens1a</dc:creator>
<guid>http://sens1a.wordpress.com/?p=42</guid>
<description><![CDATA[Ist schon über ein Jahr alt, aber einfach nur unglaublich&#8230;

]]></description>
<content:encoded><![CDATA[<p>Ist schon über ein Jahr alt, aber einfach nur unglaublich...</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/rKCE7-CZuME'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/rKCE7-CZuME&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[List of DeathKnight Items]]></title>
<link>http://dragonfablecentral.wordpress.com/?p=66</link>
<pubDate>Tue, 05 Aug 2008 20:09:29 +0000</pubDate>
<dc:creator>sinani201</dc:creator>
<guid>http://dragonfablecentral.wordpress.com/?p=66</guid>
<description><![CDATA[These are the DeathKnight items, which are used in the DeathKnight&#8217;s class combo ability.

Dea]]></description>
<content:encoded><![CDATA[<p>These are the DeathKnight items, which are used in the DeathKnight's class combo ability.</p>
<ul>
<li>DeathKnight Blade</li>
<li>Great DeathKnight Blade</li>
<li>Final DeathKnight Blade</li>
<li>Staff of Trelix</li>
<li>Great Staff of Trelix</li>
<li>Final Staff of Trelix</li>
<li>Daggers of Stabina</li>
<li>Great Daggers of Stabina</li>
<li>Final Daggers of Stabina</li>
<li>DeathKnight Belt (Belt)</li>
<li>DeathKnight Helmet (Helmet)</li>
<li>DeathKnight Cloak (Cape)</li>
<li>DeathKnight Pendent (Necklace)</li>
<li>Malifact's DOOM (Ring)</li>
</ul>
<p>The DeathKnight items can be found by doing Sir Malifact's quests, which you can get to from one of Artix's random quests, in Amityvale or the Necropolis. Before you start getting the actual items as quest rewards, you must first beat the quest 9 times before Sir Malifact takes his DeathKnight form.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[CMT 271.250.43M Thin Kerf]]></title>
<link>http://stusshed.wordpress.com/?p=1565</link>
<pubDate>Mon, 04 Aug 2008 01:26:39 +0000</pubDate>
<dc:creator>Stuart</dc:creator>
<guid>http://stusshed.wordpress.com/?p=1565</guid>
<description><![CDATA[


CMT Thin Kerf Combo
The next review from the “Battle of the Blades”.  The CMT 271.250.43M Thi]]></description>
<content:encoded><![CDATA[<div class="snap_preview">
<div class="snap_preview">
<div class="snap_preview">
[caption id="attachment_1569" align="aligncenter" width="392" caption="CMT Thin Kerf Combo"]<a href="http://stusshed.wordpress.com/reviews/blade-review/cmt-27125043m-thin-kerf/"><img class="size-full wp-image-1569" src="http://stusshed.wordpress.com/files/2008/08/blades-181.jpg" alt="" width="392" height="400" /></a>[/caption]
<p style="text-align:left;">The next review from the “Battle of the Blades”.  The <a href="http://stusshed.wordpress.com/reviews/blade-review/cmt-27125043m-thin-kerf/" target="_self">CMT 271.250.43M</a> Thin Kerf, 42 tooth combination blade.</p>
</div>
</div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[¿José Antonio Molina dirigirá combo "Ventú"?]]></title>
<link>http://bonoc.wordpress.com/?p=372</link>
<pubDate>Sun, 03 Aug 2008 18:06:03 +0000</pubDate>
<dc:creator>bonocimarron</dc:creator>
<guid>http://bonoc.wordpress.com/?p=372</guid>
<description><![CDATA[Ventú es un dominicanismo peyorativo que  usa el argot de los músicos para la denominación de una]]></description>
<content:encoded><![CDATA[<p><a title="Todo Bethoven con José Antonio Molina" href="http://bonoc.files.wordpress.com/2008/08/todobethoven.gif"><img class="alignleft size-medium wp-image-373" style="border:1px solid black;margin:6px;" src="http://bonoc.wordpress.com/files/2008/08/todobethoven.gif?w=300" alt="" width="300" height="225" /></a><em>Ventú </em>es un dominicanismo peyorativo que  usa el argot de los músicos para la denominación de una agrupación musical anónima, improvisada, la cual se conforma en dos o tres días, con los músicos que estén disponibles en la localidad. El término es la composición de la frase imperativa <strong>" ven tú"</strong>.</p>
<p>El maestro de ceremonia o presentador  le improvisa una denominación, la cual se refiere  generalmente  al genio director que pudo resolver en tan corto tiempo el reto para el cumplimiento de un contrato musical con la formación de un Ventú.</p>
<p><img src="/DOCUME~1/valerio/CONFIG~1/Temp/moz-screenshot-2.jpg" alt="" /> ¿Qué dominicano no sabe lo que es un combo? Por suerte,  este generalmente tiene nombre y por lo menos está institucionalizado.</p>
<p>El deshonor del <em>Ventú </em>no surge de su  calidad,  la cual a veces supera a la de cualquier combo, y en algunos casos, este altar de la inmediatez es capaz de la ejecución del mejor Jazz caribeño. Su deshonra proviene de su anonimato.</p>
<p>Por eso, hay la expetativa de que nuestro admirado José  Antonio Molina dirija un Ventú, el próximo 13 de agosto, en el teatro Nacional, durante un  <span style="text-decoration:underline;">magno concierto</span> que sí tiene nombre: <em>Todo Bethoven. </em></p>
<p>Si antes de esa fecha no se informa cuál es la orquesta que dirigirá JAM, entonces asumiríamos que sería el Ventú con más caché que  ojos dominicanos han visto.</p>
<p>Para que no quepa duda, fui a la misma esquina donde están las vallas publicitarias del Teatro Nacional y tomé la foto que promueve el concierto <em>Todo Bethoven</em>. Pago peso a moriqueta si alguién intuye a qué orquesta dirigirá JAM, el hijo de Josefina Miniño y Papa Molina.</p>
<p>¿Dirigirá a la Orquesta Sinfónica Nacional, o la misma OSN pero sin nombre o a un Ventú?</p>
<p>Lo que nadie duda es que, a pesar de todo, este ilustre director internacional dirigirá un verdadero <em>magno concierto</em>, pues talento le sobra.</p>
<p>Lo intrigante es que no sabemos si la orquesta en escena será un Ventú.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Freud LP30M]]></title>
<link>http://stusshed.wordpress.com/?p=1460</link>
<pubDate>Thu, 31 Jul 2008 04:35:33 +0000</pubDate>
<dc:creator>Stuart</dc:creator>
<guid>http://stusshed.wordpress.com/?p=1460</guid>
<description><![CDATA[
The next review from the “Battle of the Blades”.  The Freud LP30M, 40 tooth combination blade.
]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://stusshed.wordpress.com/reviews/blade-review/freud-lp30m/" target="_self"><img class="alignnone size-full wp-image-1435" src="http://stusshed.wordpress.com/files/2008/07/blades-14.jpg" alt="" width="396" height="400" /></a></p>
<p style="text-align:left;">The next review from the “Battle of the Blades”.  The <a href="http://stusshed.wordpress.com/reviews/blade-review/freud-lp30m/" target="_self">Freud LP30M</a>, 40 tooth combination blade.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA["HOT ROD" ROWDY RODDY PIPER LEATHER JACKET &amp; KILT]]></title>
<link>http://ralphsfigureclothing.wordpress.com/?p=567</link>
<pubDate>Wed, 30 Jul 2008 21:14:19 +0000</pubDate>
<dc:creator>ralphsfigureclothing</dc:creator>
<guid>http://ralphsfigureclothing.wordpress.com/?p=567</guid>
<description><![CDATA[
]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://i136.photobucket.com/albums/q163/lowdensity/OTHER%20FIGS/EBAY%20PICS/IMG_3404.jpg" alt="" width="480" height="640" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ya hay sabor a Juegos Olímpicos en McDonald's]]></title>
<link>http://sitemarca.wordpress.com/?p=1501</link>
<pubDate>Wed, 23 Jul 2008 11:42:32 +0000</pubDate>
<dc:creator>sitedit</dc:creator>
<guid>http://sitemarca.wordpress.com/?p=1501</guid>
<description><![CDATA[
Los Juegos de Beijing son una de las apuestas más fuertes de la marca en concepto de comunicación]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter" src="http://farm1.static.flickr.com/158/340564592_3f4e0e2eef.jpg" alt="" width="500" height="375" /></p>
<p>Los <a href="http://sp.beijing2008.cn/index.shtml" target="_blank">Juegos de Beijing</a> son una de las apuestas más fuertes de la marca en concepto de comunicación. Con el tema de la alimentación y la salud dando vuelta en todos sus restaurantes alrededor del mundo, <a href="http://www.mcdonalds.com" target="_blank">McDonald's </a>está invirtiendo millones en despegarse la etiqueta de “obesidad” que tiene en la frente. Para ello, <span style="color:#800000;"><strong>la marca se ha convertido en uno de los principales sponsors de la competencia</strong></span> y no tiene pensado perder ninguna oportunidad para explotar este acuerdo.</p>
<p>Ahora, a las sendas campañas publicitarias que se pueden ver (por lo menos en Argentina), <span style="color:#800000;"><strong>McDonald's sumó a su carta un menú especial con el motivo de los Juegos</strong></span>. El McCombo Beijing, como lo dieron en llamar, está compuesto por la hamburguesa de Beijing con semillas de sésamo blancas y negras - salsa de jengibre, chop suey (brotes de soja-cebolla de verdeo-chauchas-acelga-zanahoria-cebolla-champignones), lechuga y carne; sticks de arroz chino con verduras y gaseosa. De postre, la marca sumó el Sundae de Banana Caramelizada, el clásico helado de vainilla pero con cobertura de banana  acaramelada y caramelo.</p>
<p>El flamante combo ya se puede conseguir en <span style="color:#800000;"><strong>todos los locales que McDonald's tiene en Argentina</strong></span>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Subway]]></title>
<link>http://collegelife101.wordpress.com/?p=198</link>
<pubDate>Mon, 21 Jul 2008 00:23:53 +0000</pubDate>
<dc:creator>twilightspath</dc:creator>
<guid>http://collegelife101.wordpress.com/?p=198</guid>
<description><![CDATA[Ah, I love it when I order strange food combo&#8217;s at restaurants! Just got back from grabbing so]]></description>
<content:encoded><![CDATA[<p><span style="color:#FAF8CC;">Ah, I love it when I order strange food combo's at restaurants! Just got back from grabbing some Subway. If I could have had a picture of that lady's face when I said I did in fact want mushrooms AND carrots AND all the other veggies on my sandwich...... oh and one of her when I said I wanted the whole thing toasted..... priceless......<br />
[caption id="attachment_199" align="aligncenter" width="300" caption="Subway"]<a href="http://collegelife101.files.wordpress.com/2008/07/photo-1073.jpg"><img src="http://collegelife101.wordpress.com/files/2008/07/photo-1073.jpg?w=300" alt="Subway" width="300" height="225" class="size-medium wp-image-199" /></a>[/caption]<span style="color:#C3FD88;"><br />
-JD<br />
</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Scurte de maine]]></title>
<link>http://florin4d.wordpress.com/?p=36</link>
<pubDate>Wed, 09 Jul 2008 21:15:01 +0000</pubDate>
<dc:creator>florin4d</dc:creator>
<guid>http://florin4d.wordpress.com/?p=36</guid>
<description><![CDATA[Palmeiras v Figueirense @ 1.57
Everton CD v Cobresal , over @ 1.65
 Karlovic I. v Hanescu V. @ 1.47
]]></description>
<content:encoded><![CDATA[<p><strong>Palmeiras</strong> v Figueirense @ 1.57<br />
Everton CD v Cobresal , over @ 1.65<br />
<strong> Karlovic I.</strong> v Hanescu V. @ 1.47<br />
Muller M. v <strong>Kvitova P. </strong>@ 1.30<br />
<strong> Zakopalova K.</strong> v Johansson M. @ 1.5</p>
<p><em>Bookmaker : Gamebookers.com</em></p>
<p>Miza : 6/10</p>
<p>Cota : 7.17</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[To heal or not to heal.]]></title>
<link>http://archmagery.wordpress.com/?p=25</link>
<pubDate>Wed, 09 Jul 2008 13:19:14 +0000</pubDate>
<dc:creator>thade</dc:creator>
<guid>http://archmagery.wordpress.com/?p=25</guid>
<description><![CDATA[It&#8217;s no longer a question. Oh, sure, in WoW you could spec your priest as Shadow or your Druid]]></description>
<content:encoded><![CDATA[<p>It's no longer a question. Oh, sure, in WoW you could spec your priest as Shadow or your Druid as a kitty, and you didn't <em>have</em> to farm up a heal set, and you could <em>insist</em> that "No, I don't heal. I don't heal. I'm not a healer. I don't have heals on my hotbar. I never bought them from the trainer."</p>
<p>Yes, I did hear that last one before. From a real player. And I don't think he was kidding.</p>
<p>Well, times have changed. At least, for us. You could roll an archmage, spec him Asuryan/Vaul, and not put your heals on your hotbar...but you would either be severely gimping your damage game, or completely wasting your high magic points.</p>
<p>Many damage spells you cast (not all) generate high magic points that buff heal spells. Many healing spells you cast do the reverse: they build high magic points that buff dmg spells. What we have here is sort of a magical dance, or at least a skilled tennis match. Cast a few heals. Cast a bang. Cast a few bangs, cast a heal. The buffs are not always the same though. Of the skills we've seen, the benefits are +% to effect or a cut on casting time. I remember reading/hearing somewhere (citation lacking, sorry) that AP discounts might be granted for high magic points as well on some spells.</p>
<p>It's going to be an interesting balancing act, deciding what spells to start with, what spells to follow up with, in what order, under what circumstances...sufficiently complicated to be fun, not so complicated that you can't do your job if you don't get it. You can certainly be a healbot, but you will simply be wasting an aspect of yourself...as free, instant uber damage spells go unused. One nice thing the UI has is the "flames" that decorate whatever skills would benefit from whatever type of high magic you've got stored up. So even if you don't get it (or don't want to be bothered), there's a nice hint on the UI that says "Hey, healbot; smack a button for a free fireball". And you could do it. And it might be neat. Maybe even you, the indifferent healbot, might start unconciously weaving damage spells into your healing. Or the reverse: you dps hungry warlock-wannabes could lazily smack a free AoE heal out there, you know, between your crazy death-hungry hellstorms. Sure, your heals aren't as good as a healbots, but they're *<em>free</em>*.</p>
<p>Here's a for instance: consider Lambent Aura. I know you're a dps machine and you don't like heals, but on your way into the fight, or even when you just want to exploit all that high magic you just stock-piled by burning some faces off, you could pop off a Lambent Aura...or two or three. Instant cast HoTs that each accrue you high magic that's usable for your damage spells. Maybe it's a point of magic per cast (I'm guessing that's the case). It would a bit extreme (but still welcome in my mind) for each tick of a lambent aura healing to score us high magic. You could drop a few of those, one per second, up to five, then cut loose with a fully boosted damage spell.</p>
<p>One thing I'm really excited about with regards to this blog is that I will post things like "I tried these spell combos, and enjoyed the results," and then some of you might be like "I actually tried something different, and got the same result" or "got a better result" or "got a slightly not as good result". And together we will figure this game out. And while all the other classes are struggling because - hey - there is no witch hunter blog, and there is no bright wizard blog...but there is us. =) We are a family.</p>
<p>No, you can't move in with me.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[College kid attempts to eat all 12 McDonald's Combo meals in one sitting.]]></title>
<link>http://yourdailychum.wordpress.com/?p=952</link>
<pubDate>Tue, 01 Jul 2008 22:53:27 +0000</pubDate>
<dc:creator>Your Daily Chum</dc:creator>
<guid>http://yourdailychum.wordpress.com/?p=952</guid>
<description><![CDATA[
“I will consume every value meal from McDonalds, starting with the Big Mac all the way to the Fis]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://www.sogoodblog.com/wp-content/uploads/2008/06/12-meals-or-bust.png" alt="" /></p>
<blockquote><p>“I will consume every value meal from McDonalds, starting with the Big Mac all the way to the Fish Fillet. I cannot get up, it will all be done in one sitting. I will consume every piece of food.”</p></blockquote>
<p>Be careful what you promise.......read all about this guy's pledge <a href="http://www.sogoodblog.com/2008/07/01/eating-all-12-mcdonalds-meals-in-one-sitting-fail/" target="_blank">here</a>, and then ck. out the video below.</p>
<p>**WARNING=video is not for the faint of heart.  Let's just say he didn't quite complete putting the food down, before it wanted to return to the surface**</p>
<p>[googlevideo=http://video.google.com/videoplay?docid=5452588123248817471]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[C-C-C-Combo Breaker]]></title>
<link>http://motivateurself.wordpress.com/?p=1167</link>
<pubDate>Tue, 01 Jul 2008 13:44:51 +0000</pubDate>
<dc:creator>motivat0r</dc:creator>
<guid>http://motivateurself.wordpress.com/?p=1167</guid>
<description><![CDATA[
]]></description>
<content:encoded><![CDATA[<p><a href="http://motivateurself.wordpress.com/files/2008/07/c-c-c-combo-breaker.jpg"><img class="alignnone size-full wp-image-1147" src="http://motivateurself.wordpress.com/files/2008/07/c-c-c-combo-breaker.jpg" alt="" width="500" height="400" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Big update!]]></title>
<link>http://benobriensmith.wordpress.com/?p=95</link>
<pubDate>Tue, 01 Jul 2008 03:53:23 +0000</pubDate>
<dc:creator>benobriensmith</dc:creator>
<guid>http://benobriensmith.wordpress.com/?p=95</guid>
<description><![CDATA[VYOA Music Day Camp - SUCCESS! 
This summer brought another awesome week of teaching at the Vermont ]]></description>
<content:encoded><![CDATA[<p><strong>VYOA Music Day Camp - SUCCESS! </strong><br />
This summer brought another awesome week of teaching at the Vermont Youth Orchestra Association's Music Day Camp. I was the percussion instructor for the week of music camp with 7th-10th graders. It was a very fun week for the staff as well as the campers. Wonderful music was made throughout the week and it all culminated in a very nicely done concert on Friday afternoon. I look forward to teaching at the camp next summer!</p>
<p><strong>New Bass Amp :: Line 6 Low Down 110<br />
</strong><br />
I've been searching for a low-cost bass amp to use for my own bass playing as well as recording for a while now. I recently came across the <a href="http://line6.com/lowdownstudio110/">Line 6 Low Down Studio 110</a>. It's a 75 watt, 10" speaker combo with four preset tones; Clean; R&B; Rock and Grind. I started out just using the "Clean" tone but have begun experimenting with the other presets and I'm quite impressed. That little amp packs some serious tone! It's perfect for my needs (and was certainly in my price range - the amp goes for $250 new). I will certainly look forward to getting some serious use out of it.</p>
<p><strong>Leaving for Africa Soon :: T-3 Days and Counting</strong><br />
I will be spending three weeks in Ghana starting on July 4th. I'll be spending two days with a friend of mine (who is also going to be on the trip) in New York City before we leave. I'll be flying down to the city early on Wednesday morning and then our group leaves JFK late in evening on Thursday. I'm really looking forward to getting to spend two days hanging out in the city, checking out music and music stores but I'm totally stoked about Ghana! Three weeks is some serious time to spend in a country like Ghana. I feel that I've done a decent job of preparing myself for whatever "culture shock" may lay ahead.</p>
<p>My trip is focused around the dance and drumming traditions in Ghana. As a percussionist, this is a dream come true for me. I'll be studying daily with master drummer <a href="http://www.dunyo.com/">Kwasi Dunyo</a> in the village of Dagbamete. The experience will be something unlike any other I have ever received. All the planning, saving, researching and learning leads up to this trip, which is only days away. I'm excited beyond words. </p>
<p>I will return with many pictures, videos and recordings from my time there. I'll be armed with my trusty <a href="http://benobriensmith.wordpress.com/2008/04/17/zoom-h4-awesome-handheld-recorder/">Zoom H4 handheld recorder</a> and my simple (but reliable) Canon digital camera. </p>
<p>I'll post more specifics about the trip tomorrow (after some packing).</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Stereo recording in the palm of your hand with Alesis ProTrack]]></title>
<link>http://kampanelas.wordpress.com/?p=334</link>
<pubDate>Fri, 27 Jun 2008 07:21:07 +0000</pubDate>
<dc:creator>mK</dc:creator>
<guid>http://kampanelas.wordpress.com/?p=334</guid>
<description><![CDATA[
Alesis, the world’s leading manufacturer of professional audio equipment and studio electronics, ]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://i85.photobucket.com/albums/k75/Mike_Kamp/Untitled-1-2.jpg" alt="Alesis ProTrack" /></p>
<p><strong>Alesis</strong>, the world’s leading manufacturer of professional audio equipment and studio electronics, is proud to introduce <strong>ProTrack</strong>, the world’s first professional handheld digital stereo recorder for <strong>iPod</strong>.</p>
<p><!--more-->ProTrack provides convenient, direct-to-iPod stereo digital recording to iPod in a portable, handheld form factor. Users can capture live audio anywhere and anytime with their iPod or iPod nano. ProTrack’s smart design integrates the iPod into the recorder, with included sleds to securely mount supported iPod models to the recorder.</p>
<p>Two high-quality condenser microphones are built-in, fixed in XY stereo configuration for high quality field recording. ProTrack also offers users a pair of combination XLR - 1/4-inch inputs for connection for external microphones and line sources. When running on plug-in power using the included AC adapter, ProTrack supplies 48V phantom power so that it can power condenser microphones.</p>
<p>ProTrack’s exterior contains a Universal Dock for iPod, LED signal indicators, and controls for 48V phantom power, limiter, and volume. Four AAA alkaline batteries provide four to five hours of operation. A threaded mount is integrated for tabletop use on a camera tripod.</p>
<h1><span style="text-decoration:underline;">Key Features:</span></h1>
<div id="info2" style="visibility:visible;z-index:49;">
<div class="infopadding">
<ul>
<li>Sleek industrial design incorporates iPod</li>
<li>Integrated recording to iPod (Classic and 5th generation) and iPod nano (2nd or 3rd generation)</li>
<li>Pro-grade connections: two combo XLR - 1/4-inch inputs, 1/8-inch stereo output</li>
<li>Supplies 48V phantom power to inputs when wall-powered</li>
<li>Records 16-Bit, 44.1kHz or 22kHz stereo</li>
<li>Two built-in condenser microphones for detailed recording</li>
<li>Built-in microphones in XY configuration for optimum stereo image</li>
<li>Switchable limiter ensures overload-free recordings even in unpredictable aural situations</li>
<li>AC power adapter included</li>
<li>Four AAA batteries provide four to five hours of operation</li>
<li>Tripod stand mount for placing into ideal recording conditions</li>
</ul>
<p>References: <a href="http://www.alesis.com/" target="_blank">http://www.alesis.com/</a></div>
</div>
]]></content:encoded>
</item>

</channel>
</rss>
