<?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>strings &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/strings/</link>
	<description>Feed of posts on WordPress.com tagged "strings"</description>
	<pubDate>Tue, 07 Oct 2008 19:03:41 +0000</pubDate>

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

<item>
<title><![CDATA[Behind the Wall]]></title>
<link>http://filmcomposeratlarge.wordpress.com/?p=238</link>
<pubDate>Mon, 06 Oct 2008 23:37:26 +0000</pubDate>
<dc:creator>Rob Gokee</dc:creator>
<guid>http://filmcomposeratlarge.com/2008/10/06/behind-the-wall/</guid>
<description><![CDATA[Hey, 
I just posted a new track on my site and thought I&#8217;d give all you faithful blog readers]]></description>
<content:encoded><![CDATA[<p>Hey, </p>
<p>I just posted a new track on my site and thought I'd give all you faithful blog readers a first look (since no one else is aware it's up yet).  The track was a demo I wrote called Behind the Wall.  The piece was written with isolation in mind, I tried to keep the instruments isolated and somewhat stark, but cohesive as a song.  I used solo and small ensemble string sections and a piano to create the piece.  Enjoy.</p>
<p><a href="http://www.robgokeemusic.com/cues/behind_the_wall.mp3">Behind the Wall</a></p>
<p>Thanks for reading,</p>
<p>Rob</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Optimized String Reverse Algorithm...]]></title>
<link>http://vchaithanya.wordpress.com/?p=129</link>
<pubDate>Mon, 06 Oct 2008 22:04:02 +0000</pubDate>
<dc:creator>vchaithanya</dc:creator>
<guid>http://vchaithanya.es.wordpress.com/2008/10/06/optimized-string-reverse-algorithm/</guid>
<description><![CDATA[package com.test.stringOps;
public class StringReverse {
public static String reverse(String str) {
]]></description>
<content:encoded><![CDATA[<p>package com.test.stringOps;</p>
<p>public class StringReverse {</p>
<p>public static String reverse(String str) {<br />
if (str == null &#124;&#124; str.length() == 0) {<br />
return str;<br />
} else {<br />
StringBuilder bul = new StringBuilder(str);<br />
for(int i=0,j=bul.length()-1;i char c=bul.charAt(i);<br />
bul.setCharAt(i, bul.charAt(j));<br />
bul.setCharAt(j, c);<br />
}<br />
return bul.toString();<br />
}<br />
}<br />
}</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[String.Split Method]]></title>
<link>http://ehmandev.wordpress.com/?p=13</link>
<pubDate>Mon, 06 Oct 2008 19:44:15 +0000</pubDate>
<dc:creator>keith</dc:creator>
<guid>http://ehmandev.es.wordpress.com/2008/10/06/stringsplit-method/</guid>
<description><![CDATA[I was recently asked how to split a comma delimited string into an array of 32-bit integers.  Here ]]></description>
<content:encoded><![CDATA[<p>I was recently asked how to split a comma delimited string into an array of 32-bit integers.  Here is the solution that I came up with...</p>
<pre><span style="color:#0000ff;">using</span> System;
<span style="color:#0000ff;">using</span> System.Collections.Generic;
<span style="color:#0000ff;">using</span> System.Text;

<span style="color:#0000ff;">namespace</span> SplitString
{
    <span style="color:#0000ff;">static void</span> Main (<span style="color:#0000ff;">string</span>[] args)
    {
        <span style="color:#0000ff;">string</span> values = <span style="color:#a31515;">"-23, -20, -22, -30, -43"</span>;
        <span style="color:#0000ff;">string</span>[] values_split = values.Split(<span style="color:#a31515;">','</span>);
        <span style="color:#0000ff;">int</span>[] dvalues = <span style="color:#0000ff;">new int</span> [values_split.Length];

        <span style="color:#0000ff;">for</span> (<span style="color:#0000ff;">int</span> i = 0; i &#60; values_split.Length; i++)
        {
            <span style="color:#0000ff;">int</span>.TryParse(values_split[i], <span style="color:#0000ff;">out</span> dvalues[i]);
        }
    }
}</pre>
<p>This may not be the cleanest or most efficient method of converting from a string to an array of integers but it seems to work. If a given string was not able to be parsed into an integer value using the TryParse method then the corresponding element in the integer array will be set to zero. Depending on how the code was actually going to be used you may want to handle the failed parse differently.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Maverick by Definition]]></title>
<link>http://blaqsage.wordpress.com/?p=258</link>
<pubDate>Sun, 05 Oct 2008 21:27:04 +0000</pubDate>
<dc:creator>blaqsage</dc:creator>
<guid>http://blaqsage.es.wordpress.com/2008/10/05/maverick-by-definition/</guid>
<description><![CDATA[I looked up the definition of Maverick and I really don&#8217;t think McCain and Palen are using thi]]></description>
<content:encoded><![CDATA[<p><img class="alignleft" title="Maverick" src="http://images.cafepress.com/image/12972130_400x400.jpg" alt="" width="133" height="139" /><span style="color:#000000;">I looked up the definition of Maverick and I really don't think McCain and Palen are using this definition correctly in defining themselves:</span></p>
<p><span style="color:#ff0000;">1. An unbranded range animal, especially a calf that has become separated from its mother, traditionally considered the property of the first person who brands it.<br />
2. One that refuses to abide by the dictates of or resists adherence to a group; a dissenter.</span></p>
<p><span style="color:#000000;">Makes one wonder what other self descriptions they are using incorrectly.  Or could it be that they are letting the voters know they are 'property of' the same hidden forces that controlled the Bush administration?  Your guess is as good as mine.<br />
</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[La France, pays de l'&eacute;galit&eacute; des sexes?]]></title>
<link>http://journaldelarue.wordpress.com/2008/10/05/la-france-pays-de-lgalit-des-sexes/</link>
<pubDate>Sat, 04 Oct 2008 04:00:02 +0000</pubDate>
<dc:creator>journaldelarue</dc:creator>
<guid>http://journaldelarue.es.wordpress.com/2008/10/04/la-france-pays-de-lgalit-des-sexes/</guid>
<description><![CDATA[La France, pays de l&#8217;égalité des sexes?
Vous sentez peut être la polémique poindre son nez]]></description>
<content:encoded><![CDATA[<h4><strong>La France, pays de l'égalité des sexes?</strong></h4>
<p>Vous sentez peut être la polémique poindre son nez et vous n’ avez peut être pas tort !
<p>Je me suis d’abord laissé tenter par seulement déposer un commentaire à l’article de mon compatriote <a title="sexisme, &#233;galit&#233; des femmes, sexe, relation homme-femme" href="http://journaldelarue.wordpress.com/2008/08/30/le-sexisme-des-franais/">Le sexisme des Français</a>. Mais Monsieur Benjamin, certaines phrases ne peuvent rester impunies par la Sainte Inquisition du français féministe…
<p>De plus, je ne risque pas de déclencher un conflit international vu que nous restons entre Grenouilles.
<p>Après un début prometteur sur le fait qu’une femme devrait pouvoir se vêtir comme bon lui semble, on revient rapidement à un stéréotype effroyable qui est le :&#160; jupe courte = fille facile… La comparaison de la séduction avec un escalier est très juste mais il ne faut pas oublier qu’ on peut en tomber facilement et se faire assez mal en arrivant en bas…
<p>Ce n’ est pas cette phrase là qui a éveillé mes pulsions de chiens de garde mais plutôt cela :<br />
<blockquote>
<p>"Le français est de plus très préoccupé par l’égalité des sexes. Si une jupe trop courte nous dérange sur une femme, c’est que nous n’aimerions pas la voir sur un ami, c’est aussi simple que ça."</p>
</blockquote>
<p>Aie aie aie, je suis très content de voir des ami(e)s porter des jupes très courtes, des décolletés très plongeants et une infinité d’ accessoires mettant en avant leur charme. Et le fait que cela puisse déranger quelqu’un peut être jugé comme du sexisme, finalement un homme se promenant dans la rue la chemise à moitié ouverte n’ attirera pas les mêmes regards des femmes ?!? Et pourquoi ? Parce que les filles aiment bien voir leur ami habiller de cette façon ? Je ne pense pas, par contre peut être parce que la société dans laquelle nous vivons sexualise bien moins le corps d’ un homme que d’une femme ( en dehors de la communauté homosexuelle bien sûr ), il suffit pour cela de regarder les pubs, les films, les barbies, les strings existant en taille 8 ans…&#160; et de se rappeler que la prostitution est à 90% féminine pour la satisfaction des hommes (un statut d’objet sexuel).
<p>Le français est préoccupé par l’égalité des sexes dans un contexte de politiquement correct mais regardons dans les faits et dans les chiffres :
<p>- Une femme est payée en moyenne 27% de moins qu’ un homme sur un même poste
<p>- Une femme occupe 80% des emplois dits précaires (temps partiel imposé, Intérim, CDD…)
<p>- Une femme gère 90% des tâches non rémunérées ( ménage, enfants, administratifs…)
<p>- Les droits de la femme en matière d’ avortement sont de plus en plus rognés, le fétus mort-né peut être déclaré à l’ État Civil (ce qui est d’ ailleurs en train de se passer au Québec avec le C-484).
<p>- 1 femme meurt tous les trois jours sous les coups de son conjoint
<p>Et ce n’est qu’un échantillon d’une inégalité criante compensée parce que l’ on appelle la parité ( et qui d’ ailleurs ne fonctionne pas puisque les dernières élections de l’Assemblée Nationale donnent 23% de femmes dans l’ hémicycle). Alors préoccupé peut être mais agissant sûrement pas.
<p>Je termine avec une citation d’une femme française, plus ou moins fondatrice du courant féministe actuelle :<br />
<blockquote>
<p>"La femme n’est victime d’ aucune mystérieuse fatalité : il ne faut pas conclure que ses ovaires la condamnent à vivre éternellement à genoux." (Simone De Beauvoir). </p>
</blockquote>
<p>PS : il n’ y a évidemment rien de personnel mon cher Benjamin…
<p><strong>PUBLICITÉ</strong><br><strong><a href="http://www.editionstnt.com/Livres.html"><img style="margin:0 15px 0 0;" height="180" alt="show_image" src="http://raymondviger.files.wordpress.com/2008/06/show-image3.jpg?w=120&#38;h=180" width="120" align="left" border="0"></a> L’amour en 3 dimensions</strong>. Roman de cheminement humoristique. Pour dédramatiser les événements qui nous ont bouleversés. Pour mieux comprendre notre relation envers soi, notre entourage et notre environnement. Peut être lu pour le plaisir d’un roman ou dans un objectif de croissance personnelle.
<p>Le livre, au coût de 19,95$ est disponible&#160;
<p>Par téléphone: (514) 256-9000, en région: 1-877-256-9009<br>Par Internet: <a href="http://www.editionstnt.com/Livres.html">www.refletdesociete.com<br></a>Par la poste: Reflet de Société 4233 Ste-Catherine Est Montréal, Qc. H1V 1X4
<p>ainsi qu’à la Librairie du Québec à Paris.
<p>&#160;</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:55eb3c5e-ef93-4c86-9aad-15712ace6a15" style="display:inline;margin:0;padding:0;">Mots clés Technorati : <a href="http://technorati.com/tags/%c3%89galit%c3%a9%20des%20sexes" rel="tag">&#201;galit&#233; des sexes</a>,<a href="http://technorati.com/tags/sexisme" rel="tag">sexisme</a>,<a href="http://technorati.com/tags/sexisme%20des%20Fran%c3%a7ais" rel="tag">sexisme des Fran&#231;ais</a>,<a href="http://technorati.com/tags/fille%20facile" rel="tag">fille facile</a>,<a href="http://technorati.com/tags/s%c3%a9duction" rel="tag">s&#233;duction</a>,<a href="http://technorati.com/tags/jupes%20courtes" rel="tag">jupes courtes</a>,<a href="http://technorati.com/tags/d%c3%a9collet%c3%a9s" rel="tag">d&#233;collet&#233;s</a>,<a href="http://technorati.com/tags/charme" rel="tag">charme</a>,<a href="http://technorati.com/tags/strings" rel="tag">strings</a>,<a href="http://technorati.com/tags/objet%20sexuel" rel="tag">objet sexuel</a></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Cover Lovers]]></title>
<link>http://thenoiseboy.wordpress.com/?p=236</link>
<pubDate>Wed, 01 Oct 2008 18:27:04 +0000</pubDate>
<dc:creator>The Noiseboy</dc:creator>
<guid>http://thenoiseboy.es.wordpress.com/2008/10/01/cover-lovers/</guid>
<description><![CDATA[Boing Boing oddly linked to a site I&#8217;ve enjoyed called LP Cover Lover. The site serves as an o]]></description>
<content:encoded><![CDATA[<p>Boing Boing oddly linked to a site I've enjoyed called <a href="http://lpcoverlover.com/">LP Cover Lover</a>. The site serves as an online warehouse for curious record covers, most of them several decades old. The stranger the subject, the greater the likelihood a record has been recorded in honor of it. Case in point: <a href="http://lpcoverlover.com/2008/09/12/environmentally-sound/"><em>Music to Help Clean Up Stream Pollution By</em></a>. Of course, I spend time on sites like this one, in part, because it gives me great cover options for my theme mixes, like <a href="http://thenoiseboy.wordpress.com/2008/09/26/organs-for-everyone/">ORGANS!</a>. Here's the cover BB posted about, as well as a few other good ones from the site.</p>
<p><a href="http://thenoiseboy.files.wordpress.com/2008/10/faithtoneslp.jpg"><img class="aligncenter size-medium wp-image-237" title="faithtoneslp" src="http://thenoiseboy.wordpress.com/files/2008/10/faithtoneslp.jpg?w=298" alt="" width="298" height="300" /></a></p>
<p><a href="http://thenoiseboy.files.wordpress.com/2008/10/bigdamehunterslp.jpg"><img class="aligncenter size-medium wp-image-238" title="bigdamehunterslp" src="http://thenoiseboy.wordpress.com/files/2008/10/bigdamehunterslp.jpg?w=298" alt="" width="298" height="300" /></a></p>
<p><a href="http://thenoiseboy.files.wordpress.com/2008/10/bobjoelp.jpg"><img class="aligncenter size-medium wp-image-239" title="bobjoelp" src="http://thenoiseboy.wordpress.com/files/2008/10/bobjoelp.jpg?w=300" alt="" width="300" height="297" /></a></p>
<p><a href="http://thenoiseboy.files.wordpress.com/2008/10/monstersurfinglp.jpg"><img class="aligncenter size-medium wp-image-240" title="monstersurfinglp" src="http://thenoiseboy.wordpress.com/files/2008/10/monstersurfinglp.jpg?w=297" alt="" width="297" height="300" /></a></p>
<p>I had the opportunity to pick up the following one at WILL's Vintage Vinyl sale a few summers ago, but passed because it was $15 and in poor shape. The Makers spoofed this cover for a 7" of the same name they released many moons ago.</p>
<p><a href="http://thenoiseboy.files.wordpress.com/2008/10/musictosufferbylp.jpg"><img class="aligncenter size-medium wp-image-241" title="musictosufferbylp" src="http://thenoiseboy.wordpress.com/files/2008/10/musictosufferbylp.jpg?w=300" alt="" width="300" height="290" /></a></p>
<p>Hmm, maybe I've found the cover for STRINGS! ... ? How would my face look on this?</p>
<p><a href="http://thenoiseboy.files.wordpress.com/2008/10/stringslp.jpg"><img class="aligncenter size-medium wp-image-242" title="stringslp" src="http://thenoiseboy.wordpress.com/files/2008/10/stringslp.jpg?w=300" alt="" width="300" height="300" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Various strings of guitar]]></title>
<link>http://guitarlessonsinfo.wordpress.com/?p=11</link>
<pubDate>Wed, 01 Oct 2008 06:11:20 +0000</pubDate>
<dc:creator>matt2257</dc:creator>
<guid>http://guitarlessonsinfo.es.wordpress.com/2008/10/01/various-strings-of-guitar/</guid>
<description><![CDATA[The guitar has the number of tabs on relations with the various strings of a guitar. There are some ]]></description>
<content:encoded><![CDATA[<p>The guitar has the number of tabs on relations with the various strings of a guitar. There are some pieces of metal on the location of the guitar are called frets. The numbers you see in the lines are connected to the case of the guitar. If you see the number five, it is the lowest E. That means you press the E string below the fifth case of the guitar. If there is a zero on the line, which means that the chain should be played open.</p>
<p>As the number of lines, May also have symbols. <a href="http://amazingguitarcourse.com/esteban-guitar-lessons-esteban-guitar-review/">Esteban guitar review</a> For example, the symbol "x" on a line means that the channel is not played at all. Other symbols that you can see in the form of guitar are "b" (note the curve), "H" (hammer), "p" (pull off) and "t" (touch).</p>
<p>Learn to read guitar tablature is essential to learn to play guitar properly. Follow these guidelines and that it will soon be able to play your favorite songs with ease and perfection.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PHP-Code zum Verzweifeln]]></title>
<link>http://drazraeltod.wordpress.com/?p=836</link>
<pubDate>Tue, 30 Sep 2008 13:55:26 +0000</pubDate>
<dc:creator>Dr. Azrael Tod</dc:creator>
<guid>http://drazraeltod.es.wordpress.com/2008/09/30/php-code-zum-verzweifeln/</guid>
<description><![CDATA[Heute gibts mal wieder ein Codeschnipsel das Anfänger wohl zum Verzweifeln treiben würde.
Die folg]]></description>
<content:encoded><![CDATA[<p>Heute gibts mal wieder ein Codeschnipsel das Anfänger wohl zum Verzweifeln treiben würde.<br />
Die folgende, syntaktisch als richtig gewertete Befehlsfolge steht zur Diskussion:<br />
<code><span><br />
$blah="tröööt";<br />
if($blah != 0)<br />
{<br />
if($blah=="tröööt")<br />
{<br />
echo "Sie haben getrötet!";<br />
}<br />
else<br />
{<br />
echo 'Sie haben "'.$blah.'" gesagt.';<br />
}<br />
}<br />
else<br />
{<br />
echo "Sie haben eine 0 eingegeben";<br />
}<br />
</span></code><br />
Was wird PHP wohl ausgeben? Wer die Antwort findet bekommt einen Gummipunkt!<!--more--><br />
Richtig! Es ist "Sie haben eine 0 eingegeben". Der Grund ist ebenfalls offensichtlich, "tröööt" ist keine Zahl.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Doing a little tune up and tuning]]></title>
<link>http://atomintheinfiniteblog.wordpress.com/2008/09/27/doing-a-little-tune-up-and-tuning/</link>
<pubDate>Sat, 27 Sep 2008 21:40:25 +0000</pubDate>
<dc:creator>Tron 2.0</dc:creator>
<guid>http://atomintheinfiniteblog.es.wordpress.com/2008/09/27/doing-a-little-tune-up-and-tuning/</guid>
<description><![CDATA[Before Javi&#8217;s recording session he readys his guitars so they are in tip top shape and sound

]]></description>
<content:encoded><![CDATA[<p>Before Javi's recording session he readys his guitars so they are in tip top shape and sound</p>
<p><a href="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-9f68ee5b-124e-4ed3-a353-08dd043c1898.jpeg"><img src="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-9f68ee5b-124e-4ed3-a353-08dd043c1898.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-41e901e6-0501-44bf-a5f4-1d2e4f2dad7b.jpeg"><img src="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-41e901e6-0501-44bf-a5f4-1d2e4f2dad7b.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-dfecb448-49ca-4505-a5ef-4f9eba5fb4d7.jpeg"><img src="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-dfecb448-49ca-4505-a5ef-4f9eba5fb4d7.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
<p><a href="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-fe68765b-98b2-4014-8c39-274f7103b81d.jpeg"><img src="http://atomintheinfiniteblog.files.wordpress.com/2008/09/p-640-480-fe68765b-98b2-4014-8c39-274f7103b81d.jpeg" alt="" width="225" height="300" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[A quick update on Batteries]]></title>
<link>http://dutherenverseauborddelatable.wordpress.com/?p=180</link>
<pubDate>Sat, 27 Sep 2008 21:14:03 +0000</pubDate>
<dc:creator>yoric</dc:creator>
<guid>http://dutherenverseauborddelatable.es.wordpress.com/2008/09/27/a-quick-update-on-batteries/</guid>
<description><![CDATA[Just a quick word for people who may be curious about the development of OCaml Batteries Included. W]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">Just a quick word for people who may be curious about the development of OCaml Batteries Included. Work is proceeding nicely and we're getting close to a first official release. We've moved things around quite a lot recently, worked on the documentation and added a few nice features (read-only strings and arrays, uniform numeric modules with type-class-style dictionaries). We're about to add Unicode support for inputs and outputs (based on Camomile) and an improved Scanf module and that should be it for a first release.</p>
<p style="text-align:justify;">A new <a href="https://forge.ocamlcore.org/frs/?group_id=17&#38;release_id=43">preview tarball</a> has just been uploaded on the Forge, as well as a new <a href="http://batteries.forge.ocamlcore.org/doc.preview/batteries-preview4/html/api/">preview documentation</a>.</p>
<p style="text-align:justify;">As a side-note, the Haskell community seems to be involved much in the same process as Batteries Included, with the <a href="http://www.haskell.org/haskellwiki/Haskell_Platform">Haskell Platform</a>, aka <a href="http://www.haskell.org/haskellwiki/Haskell_Platform/Batteries_Included">Haskell Batteries Included</a>. Both their schedule and their list of packages seem a little more precise than ours but the overall objective remains the same: take a great programming language used mostly by academics and turn it into a complete development platform able to compete with the best the industrial world is able to offer. The main difference, it seems, is that the Haskell Platform doesn't have a glue layer designed to uniformize APIs. The other main difference, I'm afraid, is that the Haskell community seems much larger these days than the OCaml community -- or perhaps just more active or more verbal. It is my hope that a larger and more convenient standard library will help draw (back?) both academics and developers to the OCaml world. A little more academic support wouldn't hurt, of course.</p>
<p style="text-align:justify;">Back to OCaml Batteries Included, I hope we'll be able release by October 10th. At that point, we'll need beta-testing and it will be time to decide of what should get into Batteries Included 0.2. I'm sure everyone has ideas and suggestions -- it will soon be time to share them.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Heiße Höschen]]></title>
<link>http://schnien12.wordpress.com/?p=714</link>
<pubDate>Sat, 27 Sep 2008 17:18:42 +0000</pubDate>
<dc:creator>Schnien</dc:creator>
<guid>http://schnien12.es.wordpress.com/2008/09/27/heise-hoschen/</guid>
<description><![CDATA[Bin gerade mit meinem Liebling bei seinen Eltern.
Habe mal wieder Wäsche dabei gehabt, weil wie imm]]></description>
<content:encoded><![CDATA[<p>Bin gerade mit meinem Liebling bei seinen Eltern.<br />
Habe mal wieder Wäsche dabei gehabt, weil wie immer keine Waschtermine unserer Waschküche frei waren.<br />
Tjoa, anscheinend habe ich auch meine frischen Strings mit in die Waschmaschine geschmissen.<br />
Meine Wechselwäsche ist somit also nass...und ich steh da...ohne Hosen.<br />
Trage momentan die Unterhosen meines Süssen. :lol:<br />
Irgendwas muss ich ja anziehn. Sind übrigens sehr bequem, nur ziemlich unsexy. Aber ich hab ja nicht vor sie für immer zu tragen...</p>
<p><b>Nachtrag:</b> Wäsche wurde inzwischen aufgehangen...meine Höschen...immernoch nicht auffindbar. Befürchte, ich habe sie schlicht und einfach zu Hause liegen gelassen.</p>
<p><b>Nachtrag 2</b>: Habe nun endlich heut früh meine so sehr vermissten Slips gefunden. Sie lagen <i>- warum auch immer -</i> gemütlich in meiner Sockenschublade. Vielleicht hatten sie wichtige Verhandlungen. Immerhin nehmen die Socken bedeutend mehr Platz in Anspruch von dem die Slips nur träumen können.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Jumpers]]></title>
<link>http://1mphotog.wordpress.com/?p=6</link>
<pubDate>Thu, 25 Sep 2008 03:41:57 +0000</pubDate>
<dc:creator>1mikephotography</dc:creator>
<guid>http://1mphotog.es.wordpress.com/2008/09/25/6/</guid>
<description><![CDATA[Jumping in PA near Pocono Airport
]]></description>
<content:encoded><![CDATA[[caption id="attachment_7" align="aligncenter" width="497" caption="Jumping in PA near Pocono Airport"]<a href="http://1mphotog.files.wordpress.com/2008/09/img_1571.jpg"><img class="size-large wp-image-7" title="Jumping in Pocono" src="http://1mphotog.wordpress.com/files/2008/09/img_1571.jpg?w=497" alt="Jumping in PA near Pocono Airport" width="497" height="361" /></a>[/caption]
]]></content:encoded>
</item>
<item>
<title><![CDATA[Zend Exam Tips: Strings]]></title>
<link>http://mcloide.wordpress.com/?p=145</link>
<pubDate>Wed, 24 Sep 2008 00:36:45 +0000</pubDate>
<dc:creator>mcloide</dc:creator>
<guid>http://mcloide.es.wordpress.com/2008/09/23/zend-exam-tips-strings/</guid>
<description><![CDATA[When you are taking an exam Strings and Patterns are by far one of the hardest part of the exam. I w]]></description>
<content:encoded><![CDATA[<p><a href="http://farm1.static.flickr.com/"><img class="alignleft" style="border:0 none;margin-left:7px;margin-right:7px;" title="hello_world" src="http://farm1.static.flickr.com/194/472097903_b781a0f4f8.jpg" alt="" width="300" height="225" /></a>When you are taking an exam Strings and Patterns are by far one of the hardest part of the exam. I will take a small overview of the strings section in this category of the exam.</p>
<p>When I first took the exam, the strings section was the section that I got my worst score. It took me days to figure out what went wrong. I don't think that there's any PHP developer that doesn't work with strings at least once a day and I do work with strings and patterns pretty much the whole day long. After you get to know strings manipulation a bit more you will see that it is as powerfull as Arrays.</p>
<p>For a start do you know what's the difference between echo and print? Basically is only the fact that print returns a interger (1 or 1 - true or true always) and prints the string in the document, but you should know how both work, because that is what is going to be asked from you in the exam.</p>
<p>Take a look in the print.</p>
<ul>
<li>Is a language constructor so you don't need the parenthesis</li>
<li>it will work as a function because it will return a value</li>
<li>it does not always work in the same way as echo</li>
</ul>
<p>If you do &#60;?php print 9.9 ?&#62; it will print on the document 9.9, but, if you &#60;?php echo 9.9 ?&#62; it will print on the document 99. This is the first big catch with print and echo.</p>
<p>Now let's take a look in the echo:</p>
<ul>
<li>is a language constructor so you don't need to use the parenthesis (that you knew) but if you want you can use the parenthesis just like print</li>
<li>it does not return a result after printing the string in the document</li>
<li>you can pass more than one string to print with echo using commas (know this by heart)</li>
<li>dot's are used to concatenate strings in an echo</li>
<li>double quotes and single quotes does not work in the same way</li>
</ul>
<p>Using the same example as before would not make much sense, but I have one that will help you understand what kind of question you will see in the exam when working with strings.</p>
<blockquote><p>What is the final result that is going to be printed?</p>
<p>&#60;?php<br />
echo '55' . print('0.4') + 3;<br />
?&#62;</p></blockquote>
<p>To answer correctly this question you must know how both constructors work, so let's "debug" this question.</p>
<p>print('0.4') will print 0.4, but echo print('0.4') will print 0.41. Seems odd, but you got to remember that print will first print it's result and then echo will print the return of the print constructor, so 0.41.</p>
<p>echo '55' . print('0.4') will print then 0.4551. Now things get confusing, but it's not hard. The print constructor will work a bit faster than echo because it only have a single string to print and echo will have 2 arguments to take care of, so print will print first 0.4 then echo will print it's first argument, 55 and finally it will print it's last argument, 1 that is the result of print. In the end we will have 0.4551 as result.</p>
<p>Now comes the third part of the question, adding the value 3 to the string. You must noted by now that the whole string is numeric, so PHP converting the string to float and then adding 3 would not be a problem, but how do you think it would work if we added the string 'ab' with the '55' string and an 'c' inside the print? In this case it would try to convert the result of the print first to a float number, so 'c' would be excluded, and then add the value 3 and then concatenate the string.</p>
<p>This is all and actually all of this are all my notes about strings when studying for the exam. Here are some links that you should take a look at to learn more about strings:</p>
<ul>
<li><a href="http://www.faqts.com/knowledge_base/view.phtml/aid/1" target="_blank">http://www.faqts.com/knowledge_base/view.phtml/aid/1</a></li>
<li><a href="http://us3.php.net/print" target="_blank">http://us3.php.net/print</a></li>
<li><a href="http://us3.php.net/echo" target="_blank">http://us3.php.net/echo</a></li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Strings….]]></title>
<link>http://newmastiminds.wordpress.com/?p=177</link>
<pubDate>Tue, 23 Sep 2008 09:33:05 +0000</pubDate>
<dc:creator>salam19</dc:creator>
<guid>http://newmastiminds.es.wordpress.com/2008/09/23/strings%e2%80%a6/</guid>
<description><![CDATA[
http://www.entertainment.mastiminds.com/Main/Entertainment/Audiosongs.html
]]></description>
<content:encoded><![CDATA[<p><a href="http://www.entertainment.mastiminds.com/Main/Entertainment/Audiosongs.html"><img class="alignnone size-full wp-image-178" title="images44" src="http://newmastiminds.wordpress.com/files/2008/09/images44.jpg" alt="" width="135" height="81" /></a></p>
<p><a href="http://www.entertainment.mastiminds.com/Main/Entertainment/Audiosongs.html">http://www.entertainment.mastiminds.com/Main/Entertainment/Audiosongs.html</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Strings are immutable]]></title>
<link>http://spandey.wordpress.com/?p=30</link>
<pubDate>Mon, 22 Sep 2008 07:29:05 +0000</pubDate>
<dc:creator>sudpan</dc:creator>
<guid>http://spandey.es.wordpress.com/2008/09/22/strings-are-immutable/</guid>
<description><![CDATA[Strings are immutable. Immutable means that—once created—string values cannot be changed. That m]]></description>
<content:encoded><![CDATA[<p>Strings are immutable. Immutable means that—once created—string values cannot be changed. That means, string is reference data type, so each time when we change the value of string, it builds a new object and so the previous object doesn't point to any memory location and thus need to perform garbage collection.</p>
<p>To remove this problem, we have StringBuilder Class which is not immutable. So using this class, we can easily change the value on the same instance. That means it change the value on the same object.</p>
<p>Eg:</p>
<p>string str="Hello ";<br />
str+="World";<br />
// The above example create two instance  --immutable<br />
StringBuilder str=new StringBuilder("Hello ");<br />
str.Append("World");<br />
//The above example create a single instance--not immutable</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Prince Speedport Black Team and Flash]]></title>
<link>http://algorithmist.wordpress.com/?p=357</link>
<pubDate>Fri, 19 Sep 2008 12:08:22 +0000</pubDate>
<dc:creator>algorithmist</dc:creator>
<guid>http://algorithmist.es.wordpress.com/2008/09/19/prince-speedport-black-team-and-flash/</guid>
<description><![CDATA[I&#8217;m really enjoying my new racquet - a Prince 03 Speedport Black Team.  The racket is light a]]></description>
<content:encoded><![CDATA[<p>I'm really enjoying my new racquet - a Prince 03 Speedport Black Team.  The racket is light and very maneuverable.  Still deciding on the right strings and tension.  I like playing Babolat VS Team 17, but you can only play with gut a limited time in the Texas weather (and I like the 17-gauge strings which wear quicker anyway).</p>
<p>I was initially unaware that you could customize the color of the Speedport string inserts, as shown here,</p>
<p><a href="http://www.princetennis.com/tennis/customyzeit/o3speedportblack.aspx" target="_blank">http://www.princetennis.com/tennis/customyzeit/o3speedportblack.aspx</a></p>
<p>As I'm still experimenting with strings, different color combinations makes the racquets easy to distinguish (I currently have two), especially if I have both temporarily strung with the same brand but at different tensions. And, it gives the racquet a more personalized touch (other than colored overgrip).</p>
<p>At least I can order the customized inserts (they're pretty cheap) and have them replaced at the next restringing.</p>
<p>Pretty cool use of Flash on the Prince site :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Musical Instruments, Musicfest SAcc, Fender, Cort, Yamaha, Aria, Phonic, Amplifiers, Marshall, Laney]]></title>
<link>http://musicfestsa.wordpress.com/?p=3</link>
<pubDate>Fri, 19 Sep 2008 10:32:17 +0000</pubDate>
<dc:creator>mortgagewizard</dc:creator>
<guid>http://musicfestsa.es.wordpress.com/2008/09/19/musical-instruments-musicfest-sacc-fender-cort-yamaha-aria-phonic-amplifiers-marshall-laney/</guid>
<description><![CDATA[Musicfest was founded on 15 November 1989. Since its inception 18 years ago, Musicfest set a powerfu]]></description>
<content:encoded><![CDATA[<p><span style="font-size:xx-small;font-family:Verdana;">Musicfest was founded on 15 November 1989. Since its inception 18 years ago, Musicfest set a powerful precedent-, standard and presence in the local Musical Instrument retail industry.Today Musicfest remains a <em><strong>growing</strong></em>, powerful and formidable retail giant providing service excellence of unsurpassing standards!</p>
<p>Musicfests' "no-nonsense" approach to business very quickly ensured that we command the lion's share of at least the guitar market, amongst other products, which depends entirely on quality of service and variety for its success ! This and other affirmative action sees many new customers defecting to the Musicfest stable almost daily !</p>
<p>A large variety (not 30 of the same thing!!), lots of space, FREE PARKING, a warehouse feel and a <em>"try-before-you-buy, crank-it-up"</em> atmosphere is what you'll get here!</p>
<p>THE BEST shopping experience &#38; <strong><span style="text-decoration:underline;">"THE BEST prices always"</span></strong> makes Musicfest and it's methods probably the most copied store in the country. But, like many tried and tested products of note, we might well be copied, but NEVER equalled ! This family owned <span style="text-decoration:underline;"><em><strong>and</strong></em></span> -run stores' recipe is- and will remain a mystery to many...</span></p>
<p><span style="font-size:xx-small;font-family:Verdana;">If you're looking for products and brands not available anywhere else, Musicfest will give you that feeling of exclusivity.<br />
</span></p>
<p><span style="font-size:xx-small;font-family:Verdana, Arial, Helvetica, sans-serif;">Come and see what we have for you <em><strong>this</strong></em> Winter 2007! Again, we have the <strong>LOWEST PRICES, (probably lower than every before !)</strong>...guaranteed ! Just have a look at our selection and you'll see why. Stock is 99% of the time on hand and what we don't have, we can most likely get !<br />
</span></p>
<p><span style="font-size:xx-small;font-family:Verdana, Arial, Helvetica, sans-serif;">There's no need to drive out your petrol, or waste phone calls for quotes from somewhere else anymore! Try it once, and you'll see that everybody else's "Special" price is usually our <span style="text-decoration:underline;"><strong>USUAL</strong></span> price ! We will beat <span style="text-decoration:underline;">any genuine written quote</span>, so bring them to us and save $$$'s on your next purchase ! Click the SPECIALS link on the left navigation bar, or the "HOT DEALS" logo on the left !</span><span style="font-size:x-small;font-family:Verdana, Arial, Helvetica, sans-serif;"></p>
<p><span style="font-size:xx-small;">We look forward to seeing you at the shop !<br />
Web: <a href="http://www.musicfestsa.com">http://www.musicfestsa.com</a> (Disable your pop-up blocker!)</span></span><span style="font-size:x-small;"><span style="font-size:xx-small;"></p>
<p></span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[CokeStudio Sessions]]></title>
<link>http://ukamkhan.wordpress.com/?p=64</link>
<pubDate>Thu, 18 Sep 2008 21:21:56 +0000</pubDate>
<dc:creator>ukamkhan</dc:creator>
<guid>http://ukamkhan.es.wordpress.com/2008/09/18/cokestudio-sessions/</guid>
<description><![CDATA[It feels amazing to write yet again about the great entertainment that is Pakistani music. Although ]]></description>
<content:encoded><![CDATA[<p>It feels amazing to write yet again about the great entertainment that is Pakistani music. Although I am no music expert, and just write from what I feel listening to it as a listener who likes quality and originality. From the classics to the very modern pop and rock music each has its own quality &#38; attractive sound to it. I am from a generation that grew up listening to all our pop starts starting from Nazia, Zohaib, Vital Signs and all the bands who followed and were very successful. Yet, all of us have this ear for our classics.</p>
<p>All the pop singers faced challenges in the beginning. It was as if they were committing blasphemy to music. However, they managed to silence their critics quite quickly and rose to stardom. Its just amazing then, to see the classic gurus and stars of the new generation collaborate and create this musical treat in the experiment called "CokeStudio".</p>
<p>Coke Studio was designed and produced by 'Rohail Hayat' of the legendary Vital Signs. Its an ultimate fusion experience. Its such a lovely enriching experience to listen to familiar beats and young voices of the popular songs blend in with rags, alaaps more traditional voices. Credit should be given to our pop stars to train us and make us listen to the classical tunes through their popular numbers.</p>
<p>My favorites are Balamaan and Garaj Baras by Ali Azmat &#38; Rahat Fateh Ali Khan , Duur by Strings and Ustad H.B Gullo, and Allah Hu by Ali Zafar &#38; Tufail Ahmed. The experience introduces many new singers as backing vocals as well. Saba and Selina are one of them &#38; they sing an impressive rendition of "I am in Love". "Balamaan" puts you in a mystic romantic mood by its rhetoric repetition of words like balamaan &#38; katay nahi by both the singers. Allah Hu is a very strong devotional Sufi song. It's through this song that I have really been able to see the might and capability of Ali Zafar's talent &#38; Tufail Ahmed's voice has given the song a rare kind of deep dimension. Duur by Strings has been a long time personal favorite and it amazing to hear more emphasis put by Ustad Gullo on the key words from every verse by Strings.</p>
<p>Listen for yourself. These beautiful numbers can be found at</p>
<p>Ali Azmat &#38; Rahat Fateh Ali<br />
<a href="http://www.cokestudio.com.pk/episode-01/"> http://www.cokestudio.com.pk/episode-01/</a></p>
<p>Strings, Ustab H.B Gullo and Saba &#38; Selina<br />
<a href="http://www.cokestudio.com.pk/episode-02/"> http://www.cokestudio.com.pk/episode-02/</a></p>
<p>Ali Zafar and Tufail Ahmed<br />
<a href="http://www.cokestudio.com.pk/episode-03/"> http://www.cokestudio.com.pk/episode-03/</a></p>
<p>All Artists<br />
<a href="http://www.cokestudio.com.pk/episode-04/"> http://www.cokestudio.com.pk/episode-04/</a></p>
<p>(c) 2008. Uzma Khan. All Rights Reserved.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Composition for Strings and Piano]]></title>
<link>http://thepinkteddy.wordpress.com/?p=122</link>
<pubDate>Thu, 18 Sep 2008 01:36:38 +0000</pubDate>
<dc:creator>thepinkteddy</dc:creator>
<guid>http://thepinkteddy.es.wordpress.com/2008/09/18/composition-for-strings-and-piano/</guid>
<description><![CDATA[
Sorry about the boring video.
This little piece of music took me about 10 hours to compose. It]]></description>
<content:encoded><![CDATA[<p>[googlevideo=http://video.google.com/videoplay?docid=3070779842522003078&#38;hl=en]</p>
<p>Sorry about the boring video.</p>
<p>This little piece of music took me about 10 hours to compose. It's the best piece of music I've made so far.</p>
<p>I hope you like it ;)</p>
<p>It's made with Music Studio Producer. I used 2 VST instruments: Ricko-Mixdouble and DSK Strings.</p>
<p>They are both free and really great.</p>
<p>Ricko-Mixdouble is a soundfont player, which enables you to use soundfont files for your instruments.</p>
<p>DSK Strings is a VSTi, that has a very realistic string-sound.</p>
<p>Take care</p>
<p>-Daniel</p>
<p>The Pink Teddy</p>
<p>Skype ID: dkaelder</p>
<p><a href="http://www.youtube.com/user/GabeCorso"><img class="alignnone size-thumbnail wp-image-119" src="http://thepinkteddy.wordpress.com/files/2008/09/methumbnail.jpg?w=128" alt="" width="128" height="96" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[My pic of a guitar :)]]></title>
<link>http://cmervos.wordpress.com/?p=333</link>
<pubDate>Thu, 18 Sep 2008 00:03:33 +0000</pubDate>
<dc:creator>cmervos</dc:creator>
<guid>http://cmervos.es.wordpress.com/2008/09/18/my-pic-of-a-guitar/</guid>
<description><![CDATA[Hi. I drew this guitar on paint. SOMEONE (not mentioning names) said this drawing was OK not great, ]]></description>
<content:encoded><![CDATA[<p>Hi. I drew this guitar on paint. SOMEONE (not mentioning names) said this drawing was OK not great, and that its good for a "BEGINNER"! WELL, IM NOT A BEGINNER! MADE ME SO MAD AND UPSET WHEN THAT PERSON SAID THAT TO ME. IM STILL REALLY UPSET! Sigh. here it is, or as that person likes to call it, MY OK NOT SO GREAT OR REALISTIC PICTURE OF A GUITAR:</p>
<p><img style="width:665px;" src="http://i251.photobucket.com/albums/gg294/cmervos/untitled-7.jpg?t=1221696268" alt="untitled-7.jpg picture by cmervos" />   bye. :(</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[red strings]]></title>
<link>http://theccentric.wordpress.com/?p=130</link>
<pubDate>Tue, 16 Sep 2008 05:27:25 +0000</pubDate>
<dc:creator>theccentric</dc:creator>
<guid>http://theccentric.es.wordpress.com/2008/09/16/red-strings/</guid>
<description><![CDATA[
]]></description>
<content:encoded><![CDATA[<p><a href="http://theccentric.files.wordpress.com/2008/09/redstrings.jpg"><img class="alignnone size-full wp-image-131" title="redstrings" src="http://theccentric.wordpress.com/files/2008/09/redstrings.jpg" alt="" width="1024" height="1537" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Explosiv! -- shortage anticipated]]></title>
<link>http://ggtennis.wordpress.com/?p=105</link>
<pubDate>Mon, 15 Sep 2008 16:24:49 +0000</pubDate>
<dc:creator>ggtennis</dc:creator>
<guid>http://ggtennis.es.wordpress.com/2008/09/15/explosiv-shortage-anticipated/</guid>
<description><![CDATA[Due to an overwhelming worldwide demand for the new WeissCANNON Explosiv! supplies are going to be l]]></description>
<content:encoded><![CDATA[<p>Due to an overwhelming worldwide demand for the new WeissCANNON Explosiv! supplies are going to be limited for the next few months in the USA.  Our current stock is selling fast and replacements will not be available from the factory until mid to late November.  We should have enough sets and reels to meet demands through September, but we do not know how long beyond that point our supply will hold out.  When our supply is exhausted we will take names via email and notify those who are interested when the new shipment arrives.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Broken Strings: Conversations]]></title>
<link>http://zxvasdf.wordpress.com/?p=559</link>
<pubDate>Sat, 13 Sep 2008 00:22:48 +0000</pubDate>
<dc:creator>zxvasdf</dc:creator>
<guid>http://zxvasdf.es.wordpress.com/2008/09/12/broken-strings-conversations/</guid>
<description><![CDATA[&#8220;Fuzzy dice?&#8221;
&#8220;Every boy oughta have one for his first car,&#8221; he said slippin]]></description>
<content:encoded><![CDATA[<p>"Fuzzy dice?"<br />
"Every boy oughta have one for his first car," he said slipping it around the rearview mirror.<br />
"All righty-y, I guess. Thanks, paw..."</p>
<p>A door slams open.<br />
"My ass stinks!"<br />
"And that's news?"<br />
"C'mon man! No matter how much I wipe, I can't ever seem to get it clean."<br />
"You should keep going until there's nary a whiff on the toilet paper."<br />
"I'd go through three rolls!"<br />
"You gotta do what you gotta do."<br />
"Sage advice, man. Well, I guess I should be glad its your turn to buy the toilet paper."<br />
A door slams shut. Muffled: "In bulk, please."<br />
"Doh!"</p>
<p>"Marianna..."<br />
"Who?"<br />
"Oh, shit!"</p>
<p>"This likes but that this likes that is that."<br />
"That likes this and this likes that?"<br />
"Yes!...well, no. This likes that and that likes that."<br />
"What's this do then?"<br />
"This is like that, and that, like, is that."<br />
"So that's it."</p>
<p>"I'd sleep with a donut."<br />
"I've seen him do it."<br />
"No, you haven't!"<br />
"Quite frankly, I wouldn't be surprised."<br />
"You should see what he does with the hole."<br />
"All right, that's enough, guys!"</p>
<p>"...uh an de zum uv ul puzbl owums eewals de eevrs wech brees usfulkercle tu owr oreganating archewment."<br />
"Uh wot's dat, chum?"<br />
"Ah shown't tal and chew, huh?"</p>
<p>"Keep your eyes peeled."<br />
"Uh..."<br />
"Wotsmatter?"<br />
"I haven't done this since the army and, uh..."<br />
"The fuck you talking about?"<br />
"Having performed such procedures and witnessing its effects I'm leery of doing it, much less inflicting it on myself."<br />
"At it, pussy! I'm asking nothing more from you but to keep your eyes open."<br />
"B-bu--"<br />
"No buts!"</p>
<p>"Master, bate yourself and attend the cunning lynx to us!!"<br />
"Cor!"</p>
]]></content:encoded>
</item>

</channel>
</rss>
