<?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>swing &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/swing/</link>
	<description>Feed of posts on WordPress.com tagged "swing"</description>
	<pubDate>Wed, 08 Oct 2008 08:35:25 +0000</pubDate>

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

<item>
<title><![CDATA[golfswing-tv.com : une bible en videos signée Fabrice Tarnaud]]></title>
<link>http://hole4golf.wordpress.com/?p=406</link>
<pubDate>Tue, 07 Oct 2008 21:27:50 +0000</pubDate>
<dc:creator>admin</dc:creator>
<guid>http://hole4golf.ro.wordpress.com/2008/10/07/golfswing-tvcom-une-bible-en-videos-signee-fabrice-tarnaud/</guid>
<description><![CDATA[Vous en avez acheté et lu des livres de et sur le Golf, le swing idéal, la technique, les secrets]]></description>
<content:encoded><![CDATA[<p><a href="http://www.hole4golf.com/2008/10/07/golfswing-tvcom-une-bible-en-videos-signee-fabrice-tarnaud/"><img class="alignnone size-full wp-image-407" title="golfswingtv" src="http://hole4golf.wordpress.com/files/2008/10/golfswingtv.jpg" alt="" width="154" height="112" /></a>Vous en avez acheté et lu des livres de et sur le Golf, le swing idéal, la technique, les secrets des champions... bref des ouvrages lus et relus pour les plus courageux mais le déclic se fait toujours désirer pour vraiment progresser. Alors faites vite un tour sur le site de <strong>Fabrice Tarnaud</strong>, joueur du circuit européen jusqu'en 2002, consultant Canal+ et coach professionnel. <a href="http://www.hole4golf.com/2008/10/07/golfswing-tvcom-une-bible-en-videos-signee-fabrice-tarnaud/" target="_self">Lire la suite...</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Obtenir la cellule clickée dans une JTable]]></title>
<link>http://jvillage.wordpress.com/?p=156</link>
<pubDate>Tue, 07 Oct 2008 15:20:05 +0000</pubDate>
<dc:creator>Blaise</dc:creator>
<guid>http://jvillage.ro.wordpress.com/2008/10/07/obtenir-la-cellule-clickee-dans-une-jtable/</guid>
<description><![CDATA[Lorsque l&#8217;on fais un click gauche sur un JTable, il est très simple d&#8217;obtenir l&#8217;e]]></description>
<content:encoded><![CDATA[<p>Lorsque l'on fais un click gauche sur un <em>JTable</em>, il est très simple d'obtenir l'elément qui à étét clické mais si l'on veux générer un <em>JPopupMenu </em>sur base de l'élément clické, il est beaucoup plus difficile de le faire car l'élément n'est pas sélectionné par la <em>JTable </em>sur le click droit.</p>
<p>Je propose ici un petit bout de code permettant de récupèrer l'élement se trouvant "en dessous" du curseur lors du click droit.</p>
<p><!--more--></p>
<p>Pour récupèrer la ligne, il nous suffit de faire un petit calcul basé sur la hauteur des cellules et la localisation de la <em>JTable</em> ainsi que du curseur :</p>
<p><strong></strong></p>
<p><span style="color:#ff6600;"><strong>int height = table.getRowHeight();<br />
Point location = table.getLocationOnScreen();<br />
int row = new Double(Math.floor((e.getYOnScreen()-location.getY())/height)).intValue();</strong></span></p>
<p><strong></strong></p>
<p>Pour récupèrer la colonne par contre ça se complique, toutes les colonnes n'ont pas la même taille et il n'existe pas de méthode directe pour obtenir la longueur d'une colonne, il fuat donc utiliser la méthode <em>getCellRect(int row, int col)</em> qui nous permettras de récupèrer la longuer de chaque cellule et de vérifier si location se trouve entre la début et la fin de notre cellule :</p>
<p><span style="color:#ff6600;"><strong>int end = (int) location.getX();<br />
for ( column=0; column&#60;=table.getColumnCount(); column++) {<br />
int start = end;<br />
end = start + table.getCellRect(row, column, true).width;<br />
if ( e.getXOnScreen()&#62;start &#38;&#38; e.getXOnScreen()&#60;=end ) {<br />
return new int[]{row, column};</strong></span></p>
<p><span style="color:#ff6600;"><strong> }<br />
}</strong></span></p>
<p>L'ensemble peut alors être placé dans une méthode qui nous retourne la ligne et l aconne à travers un tableau d'entiers :</p>
<p><span style="color:#ff6600;"><strong>public static int[] getClickedJTableItem(MouseEvent e) throws IllegalArgumentException {</strong></span></p>
<p><span style="color:#ff6600;"><strong> if ( (e.getSource() instanceof JTable) ) {</strong></span></p>
<p><span style="color:#ff6600;"><strong> throw new IllegalArgumentException(</strong></span></p>
<p><span style="color:#ff6600;"><strong> "The event source must be an object of type javax.swing.JTable");</strong></span></p>
<p><span style="color:#ff6600;"><strong> }</strong></span></p>
<p><span style="color:#ff6600;"><strong> JTable table = (JTable) e.getSource();<br />
int row;<br />
int column;</strong></span></p>
<p><span style="color:#ff6600;"><strong> int height = table.getRowHeight();<br />
Point location = table.getLocationOnScreen();<br />
row = new Double(Math.floor((e.getYOnScreen()-location.getY())/height)).intValue();<br />
if ( row&#62;=table.getRowCount() ) {<br />
return null;<br />
}</strong></span></p>
<p><span style="color:#ff6600;"><strong> int end = (int) location.getX();<br />
for ( column=0; column&#60;=table.getColumnCount(); column++) {<br />
int start = end;<br />
end = start + table.getCellRect(row, column, true).width;<br />
if ( e.getXOnScreen()&#62;start &#38;&#38; e.getXOnScreen()&#60;=end ) {<br />
return new int[]{row, column};<br />
}<br />
}</strong></span></p>
<p><span style="color:#ff6600;"><strong> return null;</strong></span></p>
<p><span style="color:#ff6600;"><strong>}</strong></span></p>
<p>Bien sur ceci n'est pas parfait car, bien que ce ne soit pas courant, chaque ligne peut-avoir une hauteur différente. Il suffirais alors d'utiliser le même principe que pour la colonne (avis aux gentils contributeurs..)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Because I do know how to dance to rock &amp; roll]]></title>
<link>http://lesplatines.wordpress.com/?p=75</link>
<pubDate>Tue, 07 Oct 2008 13:47:57 +0000</pubDate>
<dc:creator>Eve</dc:creator>
<guid>http://lesplatines.ro.wordpress.com/2008/10/07/because-i-do-know-how-to-dance-to-rock-roll/</guid>
<description><![CDATA[Parce que :

Sam Roberts est tout un homme. He&#8217;s so hot !
Mes profs de swings sont dans le cli]]></description>
<content:encoded><![CDATA[<p>Parce que :</p>
<ul>
<li>Sam Roberts est tout un homme. He's so hot !</li>
<li>Mes profs de swings sont dans le clip</li>
<li>les Sims ont marqué mon adolescence</li>
<li>ce n'est pas vrai que les enfants ne savent pas danser sur le rock &#38; roll</li>
<li>la période du rock &#38; roll m'a toujours fascinée</li>
<li>le clip est superbe</li>
<li>ça fait une méchant bout que j'ai fait un post sur le blogue</li>
<li>...</li>
</ul>
<p><strong>Sam Roberts : Them kids</strong></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/UopglUDli_k'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/UopglUDli_k&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p><strong>Eve</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Learn the Swing with DanceCrazy Instructional Videos]]></title>
<link>http://learnswing.wordpress.com/?p=3</link>
<pubDate>Tue, 07 Oct 2008 03:40:47 +0000</pubDate>
<dc:creator>imdancecrazy</dc:creator>
<guid>http://learnswing.ro.wordpress.com/2008/10/07/learn-the-swing-with-dancecrazy-instructional-videos/</guid>
<description><![CDATA[Swing  				dancing is one of the most favorite of dance activities. The history of swing dance is pr]]></description>
<content:encoded><![CDATA[<p>Swing  				dancing is one of the most favorite of dance activities. The history of swing dance is probably on the most  				interesting parts of American history along with it is the music that has its roots in  				American history as well as a mix of many different cultures.</p>
<p>Since  				we know you love it and want to know more about it, <a href="http://dancecrazy.com">DanceCrazy</a> is giving  				tons of information! Just check out there page <a href="http://dancecrazy.com">here</a>.</p>
<p>Learn to dance to all your favorite swing music. Each dance step  				is broken down both individually and together. Learn also all the basic and fun swing dance steps and moves. Dancecrazy will explain the differences  				between an East Coast swing step and a West Coast swing step.</p>
<p style="text-align:center;"><strong>So put on your zoot suit, and  				let's get swinging!</strong></p>
<p style="text-align:center;"><a href="http://dancecrazy.com/swing-dance-vol-1.htm"><img class="aligncenter" src="http://dancecrazy.com/assets/i/swing.small.jpg" alt="" width="167" height="240" /></a><a href="http://dancecrazy.com/swing-dancing-vol-2.htm"><br />
<img src="http://dancecrazy.com/assets/i/swing%20small2.JPG" alt="" width="167" height="240" /></a></p>
<p style="text-align:center;"><strong>Be sure to check out DanceCrazy swing music  				section, as well as our great swing dance videos inside our  				<a href="http://dancecrazy.com">learn to swing dance section</a>. </strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Single Life]]></title>
<link>http://asilee.wordpress.com/?p=23</link>
<pubDate>Tue, 07 Oct 2008 03:07:30 +0000</pubDate>
<dc:creator>kiqroqzgraphiqz</dc:creator>
<guid>http://asilee.ro.wordpress.com/2008/10/07/the-single-life/</guid>
<description><![CDATA[I always hear people saying that they&#8217;re tired of the single life and that they want a boyfrie]]></description>
<content:encoded><![CDATA[<p>I always hear people saying that they're tired of the single life and that they want a boyfriend/girlfriend or what not. Well sometimes being single is the best thing for some. Like me, I'm not single but lately I've been wondering would I be going through these life changes, insecurities and this lack of trust I have with someone if I was? I highly doubt that I would. As I sit; think, wonder, observe, and put things together. I'm finding out more from my significant other without me opening my mouth. Most of it is negative but theres no point in me even discussing that. Okay yesterday he leaves, doesn't call, message nothing. Don't let me know he's okay, nothing. I got a call from my grandmother that evening and she needed someone to watch the house while she go to the hospital with the Uncle sense everyone else in the house was out. I couldn't even go cause it was late but if It wasn't I could of walked. He has my bus pass and he couldn't even have the common courtesy to call and tell me anything. He has my number and shit.</p>
<p>He's getting a little to damned comfortable in this relationship. Meaning his true form is showing. Its not like it was that much covered but shit I didn't notice before; I'm catching on to. He got one more time to whatever me and I'm going to snap. He contradicts the fuck out of himself. He ask a question then when he gets an answer he didn't/don't want to hear he says whatever like he shouldn't of asked or didn't want to know in the first damned place. I've never been angry at any of my significant others every other damned day. Like I said in my other blog, this relationship is more stress than its worth. Day after day I'm finding less and less things thats keeping me around. I'm just waiting on that last leaf to make its way to the ground. That last straw, that last drop; that last breath. I don't know if I would snap or just leave. Its come down to the point it wouldn't even be a point in me even getting angry or even saying anything when it doesn't mean squat TO him.</p>
<p>He in a minute is gone have his basketball friends, his best friend, his myspace friends, his CS friends and Y! friends but the girlfriend; is going to be gone. She might go back on her promise and not even be his friend. She might go back on her word and leave him. She just damned well might go back on everything she vowed not to do for the sake of her blood pressure.</p>
<p>Its like he think cause he has the title "boyfriend" he gets special treatments and shit. I mean yea the little shit but some shit he just makes me want to release all my anger out and clothesline the shit out of him. He don't realize I can get angry enough to toss his ass. I don't never remember much or know where the strength come from but someone usually gets hurt when I'm that angry. I hate bottling shit up, I hate repeating myself, I hate going through this shit over and over, I'm almost hate caring cause all it looks like to me is him getting a free ride. Well since he like living in filth; he like the way his home looked before I came around. Well thats how its gone be. I'm not gone pick up after him at all. I'm going to let him be on his daily scheduled routine; like I'm not around or something. I'm going to act invisible most of the time. This living arrangement is only temporary.</p>
<p>SOON as I get me a damn job and a damned good one I WILL be looking for me a place ASAP. &#38; No he can't move in or come dirty up my place either. MAN it ain't even about his capabilities of cleaning or the fact his house if I wasn't there wouldn't get/be cleaned. Its the fact he takes advantage of shit.</p>
<p>You know, I'm very random with my blogs, I jump from one topic to another but still is understood ROYALLY. Anyway, this medicine that I'm taking; causes mood swings. But this is NO mood swing. These are bottled feelings that can't but want to escape, want to be heard, want to be seen, want to be acknowledged. But the man that is the main reason to all the madness is so blind, to the fact that he doesn't realize he's blind. He think its easy talking to him, he think its easy discussing shit to him. Everything is one sided cause he got this facade that he has all the answers. I hate that about him. He don't have all the answers. He don't know half of which he speak. When I cook, he has a problem with that. That irks the FUCK out of me when someone tell me what to do in the damned kitchen. I'm not kitchen illiterate. I know my way around. Let me move around that bitch to the best of my abilities. Don't tell me what to put in a pan. Let me do this. You wasn't in the kitchen when I started don't try to be in there when I damned there finished. When I do eat, he has a problem with that. He says I play around with my food; I've never done that a day in my life. He says I never eat. No you aren't around me every single moment. The 3-day weekend he was gone, I ate at least 50-60 times. I kept going back and back and forth to the store and to the fridge. I couldn't stop eating and I haven't taken my medicine yet. So he thinks he knows me, he thinks he knows my habits. When he only knows what he see's. Nothing that happens repeatedly, just that one time and he knows right away I do it all the time. Get that bullshit out of here Ced. We have NOT ONCE sat down and told each other our dreams, or even told where and how we grew up face to face.</p>
<p>Haven't even told you how I got so talented besides looking and shit and being stuck in the house when I was younger. Yea the shit I wrote you but the things you say and do to be is very obvious that you read it with your mind and eyes closed. Maybe you read it but shit you didn't remember half the shit that was said cause you didn't read it. I hate wasting my time thinking I'm going to get through that person only to be let down in the end. I give my all and that isn't enough. I knew I should of just stay with my girlfriend. We was cool man but we grew a part after high-school and shit. I would love to just turn back the tables and not even deal with the things that come with a penis. Some no MOST of y'all men of today that sit and chat with face-less people on the net day in day out is forgetting that it's going to be a day where someone is going to care and be there for you, but y'all just gone push them away cause you let that e-life rub off on you and thats all the hell you know. Half the time the e-life you're living is fake and you just so happened to start believing the shit and start acting it out in real life. Whether its calling females bitches or just not being themselves all together.</p>
<p>Another thing, I've talked to my ex about all the nudity on this computer I'm using; which is my boyfriends. She told me that even if she was a nigga she would have the respect to make that shit disappear. Thats disgusting and rude as fuck to even have that shit right in your face and its also a sign of cheating and worse things to come/happen. Either that person got a problem or he just don't give a damn about you and think them bitches he'll never fuck is more worthwhile than the one thats actually putting up with his bullshit and being there for him. She told me to let him keep e-fucking them face-less bitches miles and miles away. He gone look up and thats all the hell he gone have.</p>
<p>My ex-girl is just as real as me but unlike her when she speak people actually try to better themselves for good. Not for no damn week like my boyfriend but for life.</p>
<p>He is great to be around don't get me wrong there are some good qualities about him. Or I wouldn't be sticking around. I'm a sucker for love but I ain't no damn fool. Its not even about the sex; its pretty obvious I don't need it in my life. I mean I get the occasional horny-ness but who doesn't? Anyway, if it were more good qualities to out-weigh the bad qualities, I would be back in love with him but sadly, I'm out of it. I just love him. I'm not in love with him no more. That flame blew out a yr ago. Its sad its going to be 3 yrs and I know less about him than I did 2 yrs ago. People say if you fall out of love, you were never in love to begin with. People fall out of love like a chronic depressed person stops doing things they loved the most.</p>
<p>Also its like he hiding something. My gut is always right and my heart, every time I think about it; it starts beating fast. So yea he's hiding something and its bad but he says he not hiding anything but I'm rarely paranoid. I'm rarely not on the money. I be right on the money. &#38; If he don't just come out with it, this relationship won't make it to this November and maybe not even that long. My heart is already telling me to throw in the towel on this relationship. Its not anything major that he's doing thats causing me to want to break up. Its the same little shit that keeps getting to me.</p>
<p>I know what I like in a man when it comes to a relationship. Just not with him, I don't know whats keeping me around, I don't know why I'm bothering myself with him. Not only does my heart tells me about the bad but it has a good side too. I think about down the road I guess. I guess that keeps the relationship going. Plus I can just sit and think about certain things he does or say and I just burst out laughing; damned there in tears.</p>
<p>Its very simple in fact; keeping me happy that is. Just make me laugh and do things with me. Its probably my last relationship, I go so much attention from that abomination. I kind of want that back. The attention my boyfriend gives me half the time isn't something I want. Usually I end up bruised and or in a choke hold from him wrestling with my ass. I guess beggars can't be choosers. I'll get the attention anyway I can I guess.</p>
<p style="text-align:center;"><span style="color:#c0c0c0;"><span style="font-family:Tahoma;"><span style="font-size:x-small;"><span style="color:#777777;"> if i had a dollar for all of the times I thought I'd found the right one<br />
I'dbe a billionaire<br />
i could probably ride out and go and buy me one<br />
i wouldn't mind a dude<br />
that could take my attitude<br />
and take the time to listen<br />
someone that understands when i need a little space<br />
and when i need attention. All you got to do is come around.<br />
</span></span></span></span></p>
<p style="text-align:right;">-N-</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Swing~Swing~Swing~]]></title>
<link>http://aranaran.wordpress.com/?p=120</link>
<pubDate>Mon, 06 Oct 2008 18:31:37 +0000</pubDate>
<dc:creator>aran</dc:creator>
<guid>http://aranaran.ro.wordpress.com/2008/10/06/swingswingswing/</guid>
<description><![CDATA[
portable and lightweight swings. made with free US postal tyvek envelopes by Forays
i wish i have o]]></description>
<content:encoded><![CDATA[<p><a href="http://farm3.static.flickr.com/2108/2260778269_6949b540c9.jpg"><img class="aligncenter" title="swing with forays" src="http://farm3.static.flickr.com/2108/2260778269_6949b540c9.jpg" alt="" width="490" height="367" /></a></p>
<p>portable and lightweight swings. made with free US postal tyvek envelopes by <a title="forays" href="http://forays.org/">Forays</a></p>
<div class="player" style="width:506px;height:380px;">i wish i have one of these.. because it's boring sitting on a train, trying to find some place to stare at til get off.. and here is a fun time with swing.. this vdo has good narrating (by not saying much but it's good that it's more like playing around) and surprised appearance of unexpected girl who joined in just make this vdo fun to watch and also show all the features of the product while doing it..cool..                                                                                                                                                                                            <span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/BUaK4vA4srM'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/BUaK4vA4srM&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span>                                                       By <a href="http://carolinewoolard.blogspot.com/">Caroline Woolard</a></div>
<div class="player" style="width:506px;height:380px;"><a href="http://carolinewoolard.blogspot.com/"></a></div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Понеделници: харесвате ли суинг?]]></title>
<link>http://vilford.wordpress.com/?p=284</link>
<pubDate>Mon, 06 Oct 2008 05:55:08 +0000</pubDate>
<dc:creator>vilford</dc:creator>
<guid>http://vilford.ro.wordpress.com/2008/10/06/swing/</guid>
<description><![CDATA[
Не може намръщени в понеделник! И подтиснати и безразл]]></description>
<content:encoded><![CDATA[<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/lrhGtXCGn6M'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/lrhGtXCGn6M&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
<p>Не може намръщени в понеделник! И подтиснати и безразлични не може! Усмивка!!!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Royal Crown Revue - Mugzy's Move]]></title>
<link>http://madafaca.wordpress.com/?p=261</link>
<pubDate>Mon, 06 Oct 2008 03:58:03 +0000</pubDate>
<dc:creator>gnomosagar</dc:creator>
<guid>http://madafaca.ro.wordpress.com/2008/10/06/royal-crown-revue-mugzys-move/</guid>
<description><![CDATA[
Royal Crown Revue es una banda formada en 1989 en Los Ángeles, California. Tocan música swing mod]]></description>
<content:encoded><![CDATA[<p><a href="http://madafaca.files.wordpress.com/2008/10/frontal7.jpg"><img class="alignnone size-medium wp-image-262" title="frontal7" src="http://madafaca.wordpress.com/files/2008/10/frontal7.jpg?w=300" alt="" width="300" height="300" /></a></p>
<p>Royal Crown Revue es una banda formada en 1989 en Los Ángeles, California. Tocan música swing moderna y son considerados impulsores clave del movimiento neoswing. Han aparecido a menudo en películas, televisión, radio y prensa, incluyendo <span class="mw-redirect">La Máscara</span>, Late Night with Conan O'Brien y <span class="mw-redirect">Buffy Cazavampiros</span>.</p>
<h2>Royal Crown Revue - Mugzy's Move</h2>
<p><span style="color:#ffcc99;">1. Hey Pachuco!<br />
2. Zip Gun Bop<br />
3. Mugzy's Move<br />
4. I Love the Life I Live, I Live the Life I Love<br />
5. Walkin' Blues<br />
6. Beyond the Sea<br />
7. Park's Place<br />
8. Datin' With No Dough<br />
9. Trouble in Tinsel Town<br />
10. Topsy<br />
11. Rise and Fall of the Great Mondello<br />
12. Honey Child<br />
13. Hey Pachuco! (Reprise)<br />
14. Barflies at the Beach</span></p>
<p><strong>Descarga:</strong></p>
<p><a title="Royal Crown Revue" href="http://rapidshare.com/files/150740824/royal_crown_revue_-_mugzy_s_move.rar" target="_blank">http://rapidshare.com/files/150740824/royal_crown_revue_-_mugzy_s_move.rar</a></p>
<div>
<h2><strong>Contraseña:</strong><span style="color:#ff0000;">madafaca.wordpress.com</span></h2>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Melodías Pizarras]]></title>
<link>http://killingmytime.wordpress.com/?p=75</link>
<pubDate>Sun, 05 Oct 2008 18:30:45 +0000</pubDate>
<dc:creator>mightychick</dc:creator>
<guid>http://killingmytime.ro.wordpress.com/2008/10/05/melodias-pizarras/</guid>
<description><![CDATA[Dejando a un lado la actualidad, hoy recomiendo un nuevo programa de Radio 3, Melodías Pizarras. Ha]]></description>
<content:encoded><![CDATA[<p>Dejando a un lado la actualidad, hoy recomiendo un nuevo programa de<strong> Radio 3</strong>, <strong>Melodías Pizarras</strong>. Hace unas semanas que se puso en marcha la nueva parrilla, con algunos cambios un poco inexplicables, que trastocan la rutina radiofónicas de muchos de nosotros. También algún adiós, como al programa de <strong>Americana Music</strong> que tanto me gustaba. Pero también novedades. Y destaca, y muy mucho, <strong>Melodías Pizarras.</strong></p>
<p style="text-align:center;"><img class="aligncenter" src="http://blogs.rtve.es/templates/blogs-rtve/images/melodias-pizarras.jpg" alt="" width="280" height="170" /></p>
<p>Aquí su <a href="http://www.myspace.com/melodiaspizarrasrne3">myspace</a> y aquí su <a href="http://blogs.rtve.es/melodiaspizarras/posts">blog </a>donde se cuenta detalladamente cómo los tres hermanos <strong>Pizarro, Marciano, Longino y Bienvenido,</strong> rescatan lo mejor de los archivos de<strong> RTVE</strong> en discos de pizarra de 78 revoluciones por minuto. Temas de <strong>swing, foxtrot, rumba, son, boogie-boogie</strong> en español o grabados por músicos, intérpretes u orquestas españolas o de América Latina en los años 20, 30 o 40 presentados con mucho humor y cariño. Una auténtica joya y un acierto de las cabezas pensantes (que aveces parecen muy poco operativas) del ente público.</p>
<p>Así que los viernes del 20 a 21 horas no tienes nada que hacer, pon la radio y pégate un baile con los hermanos <strong>Pizarro</strong>. Y si tienes algo que hacer, puedes escuchar el programa durante el resto de la semana en la web de <strong>Radio 3.</strong></p>
<p>Gracias por los buenos ratos, señores <strong>Pizarro</strong>, y mucho ánimo.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[MAKING MONEY ON THE INTERNET]]></title>
<link>http://howtob1com.wordpress.com/?p=3</link>
<pubDate>Sun, 05 Oct 2008 17:39:36 +0000</pubDate>
<dc:creator>howtob1com</dc:creator>
<guid>http://howtob1com.ro.wordpress.com/2008/10/05/making-money-on-the-internet/</guid>
<description><![CDATA[Hi how are you all today.
have you ever had that nagging in the back of your mind saying to you that]]></description>
<content:encoded><![CDATA[<p>Hi how are you all today.</p>
<p>have you ever had that nagging in the back of your mind saying to you that you are meant for bigger and better things. I used to have it all the time, i would look around at people and think i cant be like this for the rest of my life, i cant just do the whole 9 to 5 thing until retirement, there must be something more out there. I started to ask myself whats left to do? what has not already been done to death and what is not already flooded. It took me a long while before i realised that the ONE BIG thing left is the internet, its growing and growing and growing. After more research i decided to join the party and i have now just launched my 3rd website, check it out at howtob1.com    its full of information on many things like golf, cooking, weddings, gambling, gardening, fitness, slimming and the big one MAKING MONEY ON THE INTERNET. I wont lie to you none of it comes for free but its where I started and the information is there for as little as 20 dollars. Take a look, with the advice within you to could start to turn your life around. Again i wont lie to you, the information is there and anyone will understand how to use it however whether you use it and apply it is all under your control. I will also tell you now that the website howtob1.com only costs me 1.99 a month to host and i designed it myself i did not pay hundreds for someone to do it for me, it really is that easy, why dont you jump in and take a chance you never know.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Barrelhouse Jazz Gala continued]]></title>
<link>http://christophersilva.wordpress.com/?p=267</link>
<pubDate>Sun, 05 Oct 2008 08:21:26 +0000</pubDate>
<dc:creator>christophersilva</dc:creator>
<guid>http://christophersilva.ro.wordpress.com/2008/10/05/barrelhouse-jazz-gala-continued/</guid>
<description><![CDATA[


You could probably feel the excitement in my last post, good news, the show was truly wonderful. ]]></description>
<content:encoded><![CDATA[<p><a href="http://christophersilva.files.wordpress.com/2008/10/pressefoto-barrelhouse-06-2_thumb.jpg"><img class="alignright size-full wp-image-284" title="pressefoto-barrelhouse-06-2_thumb" src="http://christophersilva.wordpress.com/files/2008/10/pressefoto-barrelhouse-06-2_thumb.jpg" alt="" width="321" height="211" /></a></p>
<div class="entry">
<div class="snap_preview">
<p>You could probably feel the excitement in my last post, good news, the show was truly wonderful. The Barrelhouse opened with some smooth classic tunes from Jelly Roll Morton and continued to entrance the audience into the night.</p>
<p>The beauty of the Gala is the moderation from Reimer Von Essen. He opens each classic tune with brief history of the song and its composer. He does this with such verve, it immediately sets a nostalgic, almost romantic atmosphere. Most of classic tunes are wonderfully arranged by Horst “Morsch” Schwarz, lead trumpet. In each piece you can hear the patient-care he takes to retain the original piece yet ensure the Barrlehouse flair is there too. Damn good.</p>
<p>The younger members (sadly a couple orig. members have passed away) Jan Luley (piano) and Michael Ehret (percussion) and Roman Kloeker, (Guitar, Banjo) bring a fresh buzz and beat to the cultured talent of the original members. Jan’s pianos solo’s and rolling rag time sound offer much to the Barrelhouse. Technically, Michael’s percussion work was almost flawless. He could <em>come-out</em> a bit more though. (Did I say that?)</p>
<p>The Gala was littered with great guests from the US. One such guest was the amazing 81 year old talent Red Holloway. Red comes from the roots of the American jazz scene in Chicago and has played with Billy HolidayMuddy Waters, Chuck Berry, Redd Foxx, Aretha Franklin,a nd many others. During this same period, he also played road tours with Memphis Slim and Lionel Hampton.</p>
<p><a href="http://www.redholloway.com/">http://www.redholloway.com/</a></p>
<p>Next up was Gene “the mighty flea” Connors, famous for his virtuoso trombone. His subtle swing and warm voice rang the opera and engaged the us all. Gene 78, played with Ray Charles, Tina Turner, Lionel Hampton and Count Basie and is a charming talented musician with air of dignity.</p>
<p><a href="http://fotowelt.chip.de/k/menschen-portraits/prominente/gene_conners/101944/">http://fotowelt.chip.de/k/menschen-portraits/prominente/gene_conners/101944/</a></p>
<p>To be continued:</p></div>
</div>
]]></content:encoded>
</item>
<item>
<title><![CDATA[New weekly gig!]]></title>
<link>http://jonaslunasea.wordpress.com/?p=29</link>
<pubDate>Sun, 05 Oct 2008 00:09:50 +0000</pubDate>
<dc:creator>jonaslunasea</dc:creator>
<guid>http://jonaslunasea.ro.wordpress.com/2008/10/05/new-weekly-gig/</guid>
<description><![CDATA[Hey everyone!  Jonas has a new weekly gig at Dean&#8217;s Vegas Club.  Jonas will be singing every]]></description>
<content:encoded><![CDATA[<p>Hey everyone!  Jonas has a new weekly gig at Dean's Vegas Club.  Jonas will be singing every week at 7PM SLT at Dean's Vegas Club!  So come join us every Wednesday at 7PM!!  Click this link to join the fun!  <a href="http://slurl.com/secondlife/Rolypoly/62/131/52">http://slurl.com/secondlife/Rolypoly/62/131/52</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I've got some friends, some that I hardly know....]]></title>
<link>http://crystalgeek.wordpress.com/?p=266</link>
<pubDate>Sat, 04 Oct 2008 20:01:58 +0000</pubDate>
<dc:creator>Alex Towler</dc:creator>
<guid>http://crystalgeek.ro.wordpress.com/2008/10/04/ive-got-some-friends-some-that-i-hardly-know/</guid>
<description><![CDATA[I don&#8217;t know how many of you know the song - Swing life away, by Rise against. This has to be ]]></description>
<content:encoded><![CDATA[<p>I don't know how many of you know the song - <a title="Swing Life Away" href="http://www.youtube.com/watch?v=Yq0FM-cAVj8">Swing life away, by Rise against</a>. This has to be one of my favourite song's of all times. It's one of those songs that will always make you sad. I have loved this song for so many years, the lyrics are amazing as its simple and let's face it, describes my outlook perfectly. Swing life away. Then there's the sadness, the loss and the good memories. All rolled up into one. There was a time a few months ago when after a bottle of wine I was feeling emotional and listening to this song, I ended up calling the phillipines from a work mobile. Music can do that to me, it evokes those moments when you just need to chat to someone, just need to remember the good times. To make promises you wish you could keep but really, you never know.</p>
<p>It's times like now where I miss so many people, I can't listen to some thing's without wanting to get on a plane or a train. Do something stupid, just to hang - just to feel the freedom, the happiness, the excitement.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Background Panel]]></title>
<link>http://tips4java.wordpress.com/?p=3</link>
<pubDate>Sat, 04 Oct 2008 17:16:37 +0000</pubDate>
<dc:creator>camickr</dc:creator>
<guid>http://tips4java.ro.wordpress.com/2008/10/04/background-panel/</guid>
<description><![CDATA[This is just a test entry for my new blog so it won&#8217;t make much sense if you try to read it.
M]]></description>
<content:encoded><![CDATA[<p>This is just a test entry for my new blog so it won't make much sense if you try to read it.</p>
<p>Many people seem to want to know how to add a backgound image to a frame. Well the answer to this depends on your requirement. Lets start with a simple requirement first.</p>
<p>Lets just add an image to a dialog that is not resizeable and the size of the dialog is determined by the size of the image. The simple solution would be to use a JLabel as the content pane for the dialog. The code would be something like:</p>
<pre>JLabel contentPane = new JLabel();
contentPane.setIcon( backgroundImage );
contentPane.setLayout( new BorderLayout() ); now id meed more gest to wrap here
dialog.setContentPane( contentPane );</pre>
<p>Remember all Swing components extend Container, so once we set the layout manager for the label it will behave just like a JPanel except that the image will be painted before the child components are painted on the label and we have a simple background image.</p>
<p>For a more complicated requirement we need to support the situation where the image isn't the same size as the frame (or dialog). One solution is to create a class (which I called BackgroundPanel) to do custom painting of the image in the panel. This class will support the following background styles:</p>
<ul>
<li>scaled image (the default)</li>
<li>tiled images</li>
<li>actual size - the position of the image is controlled by specifying the horizontal and vertical alignment of the image (center alignment is the default)</li>
</ul>
<p>The panel will use a BorderLayout so it can be used easily as the content pane of your frame.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Abandoned: Project Codename X]]></title>
<link>http://javadocs.wordpress.com/?p=83</link>
<pubDate>Sat, 04 Oct 2008 04:12:14 +0000</pubDate>
<dc:creator>joshjcarrier</dc:creator>
<guid>http://javadocs.ro.wordpress.com/2008/10/03/abandoned-project-codename-x/</guid>
<description><![CDATA[This project started out as a command-line game back in the yesteryears of high school days with my ]]></description>
<content:encoded><![CDATA[<p>This project started out as a command-line game back in the yesteryears of high school days with my friend Dryw.  We decided to raise the bar on our requirements and break out of the terminal. And for the first time, in both of our programming careers, a window, made of Java and javax.swing, was born.</p>
[caption id="attachment_84" align="aligncenter" width="300" caption="Ah, that&#39;s much prettier than before!"]<a href="http://javadocs.files.wordpress.com/2008/10/project-codename-x.jpg"><img class="size-medium wp-image-84" title="project-codename-x" src="http://javadocs.wordpress.com/files/2008/10/project-codename-x.jpg?w=300" alt="" width="300" height="246" /></a>[/caption]
<p>The weekend before the due date, we had decided to push for completion. This ended up being an all-nighter fueled by sushi, pop, and <a href="http://www.nightwish.com/" target="_blank">Nightwish's discography</a>.</p>
<p>Needless to say, our coding rush and lack of software design strategies left this code in ruins, earning it the unfortunate status of "abandoned". Now I really pay attention to package management and code structure, so this wasn't a total loss, and neither of us have pulled an all-nighter coding since.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Carri Bella at West Cafe': Jazz, Bossa Nova, Sultry Torch Songs | October 4]]></title>
<link>http://pdxpipeline.wordpress.com/?p=2296</link>
<pubDate>Fri, 03 Oct 2008 19:56:48 +0000</pubDate>
<dc:creator>PDXPIPELINE</dc:creator>
<guid>http://pdxpipeline.ro.wordpress.com/2008/10/03/carri-bella-at-west-cafe-jazz-bossa-nova-sultry-torch-songs-october-4/</guid>
<description><![CDATA[Our friend, Carri Bella, is performing tomorrow night at West cafe&#8217;. If you are looking for go]]></description>
<content:encoded><![CDATA[<p>Our friend, Carri Bella, is performing tomorrow night at West cafe'. If you are looking for good music ("sultry torch songs", for example) and a "Northwest Casual Chic" environment, go see this show. No cover also...very nice! From Carri:</p>
<p><img class="alignleft" style="margin:4px;" src="http://a472.ac-images.myspacecdn.com/images01/64/l_fe88b8e01d1fd0ba43111da934c12f7f.jpg" alt="Carri Bella at West Cafe, Portland, Oregon" width="238" height="275" /></p>
<blockquote><p><strong>Join me on Saturday, October 4, at West Café in Portland.</strong></p>
<p>As you may know, I've been on a hiatus from gigging. It started when I began working on my CD and continued as I realized how much work I'd need to do at the day job to PAY for it. Producing a CD is no small affair. But it's almost done – I hope to have it finished this fall. You can hear a sampling of those tunes at <a href="http://www.myspace.com/carribellajazz" target="_blank">www.myspace.com/carribellajazz</a></p>
<p><strong>PLEASE come out to support this new venue!</strong></p>
<p>West Café is the perfect blend of <span style="color:#ff0000;">Northwest casual chic</span>. You don't have to be dressed up to come, but you won't feel out of place if you are. It's small and intimate with classy, comfortable decor. They have a great selection of wines by the glass, creative cocktails and amazing food. Their prices are reasonable and there is <strong>NO COVER CHARGE.</strong></p>
<p>I couldn't ask for a better spot, so let's support the owners, Sean and Doug, as they support live jazz.</p>
<p><strong>Details:</strong></p>
<p>Carri Bella – I'll be singing jazz standards, bossa nova faves and sultry torch songs<br />
Steve Blackman – my favorite accompanist will join me on guitar</p>
<p>Saturday, October 4th<br />
7:00 to 10:00 pm</p>
<p>West Café<br />
1201 SW Jefferson Street<br />
Portland, OR 97201<br />
503-227-8189<br />
http://www.westcafepdx.com (see their menus online!)</p></blockquote>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Making Swing Groovy, Part II: Binding]]></title>
<link>http://kousenit.wordpress.com/?p=144</link>
<pubDate>Fri, 03 Oct 2008 18:55:01 +0000</pubDate>
<dc:creator>Ken Kousen</dc:creator>
<guid>http://kousenit.ro.wordpress.com/2008/10/03/making-swing-groovy-part-ii-binding/</guid>
<description><![CDATA[In my previous post in this series, I presented a trivial Echo GUI written in Groovy.  By using Swi]]></description>
<content:encoded><![CDATA[<p>In <a href="http://kousenit.wordpress.com/2008/09/29/making-swing-groovy-part-i/">my previous post in this series</a>, I presented a trivial Echo GUI written in Groovy.  By using <code>SwingBuilder</code> and closures, the code for the GUI was dramatically simplified compared to the Java version.  But Groovy can go beyond that.  In this post, I'll talk about the <code>bind</code> method and the <code>@Bindable</code> annotation, which help transform Swing development into the MVC structure of Griffon.</p>
<p>The code for the Echo GUI currently consists of:</p>
<p>[sourcecode language="java"]<br />
import groovy.swing.SwingBuilder<br />
import javax.swing.WindowConstants as WC</p>
<p>SwingBuilder.build() {<br />
    frame(title:'Echo GUI', size:[300,100],<br />
        visible:true, defaultCloseOperation:WC.EXIT_ON_CLOSE) {<br />
        gridLayout(cols: 2, rows: 0)<br />
        label 'Input text: '<br />
        input = textField(columns:10,<br />
            actionPerformed: { output.text = input.text })<br />
        label 'Echo: '<br />
        output = label()<br />
    }<br />
}[/sourcecode]</p>
<p>The closure assigned to the <code>actionPerformed</code> property transfers the input from the text field to the output label.  In order to make that happen, both the field and the label were given names that could be referenced inside the closure.</p>
<p>Groovy 1.5+ includes a method called <code>bind</code>, which works with bound properties in the ancient JavaBeans specification.  For those whose only exposure to JavaBeans is through POJO's on the server side, the original JavaBeans framework was designed to support GUI builders.  It looked and felt much like building GUIs in VB, in that you dragged these "beans" onto a palette, hooked them together, and set the values of their properties.  It was a way of writing Java user interfaces without writing any Java code, at least until you wanted the various widgets to actually do something.</p>
<p>I remember back around 1998, I convinced my boss at the time to purchase Sun's proposed IDE based on beans.  I think it was called Sun Java WorkBench, or something like that.  It cost about $99, and it came with beans that you could drag and drop, and you could add your own jar files full of beans as well.  While it looked pretty cool, you didn't have the source code for any of the beans, which limited their usefulness.</p>
<p>Java on the client side didn't really take off, and the market for the IDE certainly didn't pan out.  I do remember that the JavaBeans specification -- written largely to support the client-side development model -- brought us many aspects of Java that we take for granted now.  My first encounter with serialization came from there, as well as reflection, though they used the extremely awkward name introspection for it.  In addition to implementing <code>java.io.Serializable</code>, JavaBeans according to the spec were also supposed to have default constructors and the now-infamous naming convention for getters and setters for all the properties.  Actually, providing a getter method was sufficient to define a property of a JavaBean.</p>
<p>The spec also referred to various types of properties, like bound and constrained, and JavaBeans were also supposed to implement the <code>PropertyChangeListener</code> interface.</p>
<p>Very few Java programs were actually written using those JavaBeans, and the expected third-party market in JavaBeans libraries never seemed to develop.  I seem to recall that there were a couple of success stories (wasn't IBM's VisualAge for Java supposed to be written using the original JavaBeans spec?), but mostly the whole technology went away.</p>
<p>It wasn't until a few years later that JavaBeans re-emerged, as the way to get Java code out of JavaServer Pages.  Sun's Model 1 architecture consisted entirely of JSPs and JavaBeans, with no explicit servlets anywhere.  Model 2 changed all that by using servlets for controllers, but that came later.  By then, though, people used what we now call POJO's for model classes, and you were still supposed to make your beans serializable, but all that stuff about property change listeners was largely ignored.</p>
<p>Groovy gives us a chance to use JavaBeans as model classes in an especially easy way.  First, here's an illustration of a simple GUI that uses the <code>bind</code> method in Groovy.</p>
<p>[sourcecode language="java"]<br />
import groovy.swing.SwingBuilder<br />
import javax.swing.WindowConstants as WC<br />
import java.awt.BorderLayout as BL</p>
<p>SwingBuilder.build() {<br />
    frame(title:'Binding to Slider', pack:true, visible:true,<br />
        defaultCloseOperation:WC.EXIT_ON_CLOSE) {<br />
        panel(constraints:BL.CENTER) {<br />
          slider(id:'sl')<br />
        }<br />
        panel(constraints:BL.SOUTH) {<br />
          label 'Slider value: '<br />
          label(text:bind(source:sl, sourceProperty:'value'))<br />
        }<br />
    }<br />
}<br />
[/sourcecode]</p>
<p>Here we're taking advantage of the fact that all Swing widgets extend <code>Component</code>, which means they support property change listeners.  In this case, we have a slider with a property called <code>value</code>.  The <code>bind</code> method assigns the <code>text</code> of the label to the <code>value</code> property of the slider.  Dragging the slider immediately updates the label.</p>
<p>This is seriously cool, and means that the Echo GUI shown above can be made even more responsive by replacing the <code>actionListener</code> by binding the output label directly to the input text field.</p>
<p>[sourcecode language="java"]<br />
import groovy.swing.SwingBuilder<br />
import javax.swing.WindowConstants as WC</p>
<p>SwingBuilder.build {<br />
    frame(title: 'Regular Binding (Groovy)', size: [300,100],<br />
        visible:true, defaultCloseOperation: WC.EXIT_ON_CLOSE ) {<br />
        gridLayout(cols: 2, rows: 0)<br />
        label 'Input text: '<br />
        textField(columns:10, id:'tf')<br />
        label 'Echo: '<br />
        label(text:bind(source:tf, sourceProperty:'text'))<br />
    }<br />
}<br />
[/sourcecode]</p>
<p>The result is that now, any characters typed into the text field are immediately transferred into the label.  Deletes work the same way.  The text in the output label is bound to the value of the input text field.</p>
<p>While this is interesting and even useful, a true model-view-controller architecture wouldn't always  bind widgets to other widgets.  Instead, input values would be transfered to a model class, and then the model values would be sent to the output view.  What we need, therefore, is a way to bind the view elements to an actual Java bean.</p>
<p>If this was Java, we would introduce a class that supported property change capabilities.  Consider such a model class in Java:<br />
[sourcecode language="java"]<br />
import java.beans.PropertyChangeListener;<br />
import java.beans.PropertyChangeSupport;</p>
<p>public class Message {<br />
    private String text;<br />
    private PropertyChangeSupport pcs = new PropertyChangeSupport(this);</p>
<p>    public String getText() {<br />
        return text;<br />
    }</p>
<p>    public void setText(String text) {<br />
        pcs.firePropertyChange("text", this.text, this.text = text);<br />
    }</p>
<p>    public void addPropertyChangeListener(PropertyChangeListener listener) {<br />
        pcs.addPropertyChangeListener(listener);<br />
    }</p>
<p>    public void removePropertyChangeListener(PropertyChangeListener listener) {<br />
        pcs.removePropertyChangeListener(listener);<br />
    }<br />
}<br />
[/sourcecode]<br />
The <code>Message</code> class has a single property, called <code>text</code>.  It also relies on the <code>PropertyChangeSupport</code> class to enable it to add and remove property change listeners.  When the <code>text</code> property is changed, the <code>setText</code> method fires a property change event to all the listeners, where the arguments to the <code>firePropertyChange</code> method are the name of the property, its old value, and the new value.</p>
<p>How does Groovy simplify this?  The key is the <code>@Bindable</code> annotation, which is currently only in Groovy 1.6 beta 2.  Fortunately, that version is included in Griffon, though I did go to the trouble to download and rebuild it myself (a post for another time).</p>
<p>Using Groovy 1.6b2, here's the equivalent Groovy bean:<br />
[sourcecode language="java"]<br />
import groovy.beans.Bindable</p>
<p>class Message {<br />
    @Bindable def text<br />
}<br />
[/sourcecode]<br />
Seems almost unfair, doesn't it?  Add an annotation to the field, and you're done.  It's hard to get much simpler than that.</p>
<p>Now all you need is a listener.  In Java land, the GUI would use something like:<br />
[sourcecode language="java"]<br />
//...<br />
    private Message msg = new Message();<br />
//...<br />
    msg.addPropertyChangeListener(new PropertyChangeListener(){<br />
        @Override<br />
        public void propertyChange(PropertyChangeEvent evt) {<br />
            output.setText((String) evt.getNewValue());<br />
        }<br />
    });<br />
//...<br />
[/sourcecode]<br />
again using an anonymous inner class to respond to the change.  By contrast, here is the Groovy version (where in this case the code is sufficiently succinct that I can include the whole thing):<br />
[sourcecode language="java"]<br />
import groovy.swing.SwingBuilder<br />
import javax.swing.WindowConstants as WC</p>
<p>def model = new Message()</p>
<p>SwingBuilder.build() {<br />
    frame(title:'Echo GUI', size:[300,100],<br />
        visible: true, defaultCloseOperation:WC.EXIT_ON_CLOSE) {<br />
        gridLayout(cols: 2, rows: 0)<br />
        label 'Input text: '<br />
        input = textField(columns:10,<br />
            actionPerformed: { model.text = input.text })<br />
        label 'Echo: '<br />
        label(text: bind { model.text })<br />
    }<br />
}<br />
[/sourcecode]<br />
Once again, this won't work unless you're using Groovy 1.6b2 or above.  The <code>bind</code> method has been modified to take a closure as its last argument, and the closure in question refers to the <code>text</code> property of the model, rather than to another widget.  Note that now I've gone back to implementing <code>actionListener</code>, because I have to get the text value from the view into the model, so it's not quite as clean as before.  That could be changed, but at the moment it seems reasonable to do it that way.</p>
<p>Of course, if we have a model and we have a view, what we need next is a controller.  Griffon shows how to do that, but I'll leave it for another post.</p>
<p>The bottom line is that by using Groovy's <code>bind</code> method and <code>@Bindable</code> annotation, constructing a GUI based on a realistic MVC architecture is now viable, and even easy.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Manual Basico do Swinger]]></title>
<link>http://swingsc.wordpress.com/?p=75</link>
<pubDate>Fri, 03 Oct 2008 17:35:24 +0000</pubDate>
<dc:creator>swingsc</dc:creator>
<guid>http://swingsc.ro.wordpress.com/2008/10/03/manual-basico-do-swinger/</guid>
<description><![CDATA[Você decidiu conhecer um pouco melhor o mundo do swing.  Provavelmente, caso seja sua primeira vez,]]></description>
<content:encoded><![CDATA[<h4 class="positem">Você decidiu conhecer um pouco melhor o mundo do swing.  Provavelmente, caso seja sua primeira vez, você está um pouco nervoso e ansioso.  Relaxe, você está aqui para aproveitar e ousar um pouquinho mais..</h4>
<h4 class="positem">As primeiras dúvidas dos casais iniciantes são:</h4>
<h4 class="positem">O que vestir?</h4>
<p class="positem">Vista-se da maneira mais confortável possível (porém nunca  perca a elegância).<br />
Se você é exibicionista e/ou gosta de roupas bem ousadas  e provocantes, sim, as boates e clubes de swing permitem e incentivam tal  atitude.</p>
<p class="positem">Caso seja de sua conveniência, saia de casa vestida com uma  roupa bem comportada e troque de roupa no local.</p>
<p class="positem">Evite na medida do possível o uso de jóias e bijuterias, pois  por motivo óbvio, a perda destes objetos, pela própria atividade, é muito  freqüente.</p>
<h4 class="positem">Como agir? Existe algum padrão de comportamento?</h4>
<p class="positem">Seja você mesmo.</p>
<p class="positem">Você com certeza encontrará outros casais na mesma situação que  a sua, portanto, tente uma aproximação e apresente-se sem problemas.</p>
<p class="positem">Um simples toque do tipo: "olá, somos novos por aqui e esta é  nossa primeira vez" . Você verá que uma vez conhecendo o primeiro casal as  coisas se tornarão bem mais fáceis.</p>
<p class="positem">Seja sempre gentil, gentileza nunca é demais.</p>
<p class="positem">Lembre-se sempre que a liberdade de escolha é um direito de  todos, portanto, esteja preparado para recusar ou ser recusado, faz parte do  lance. Um simples "não, muito obrigado" será sempre entendido.</p>
<p class="positem">Seja sempre honesto com seus sentimentos e desejos. Não tenha  pressa, o mundo não vai acabar amanhã e esta com certeza não será sua última  vez.</p>
<p class="positem">Um casal que você acabou de conhecer não significa que tem que  rolar alguma coisa, de repente, pode ser simplesmente o início de uma simples  amizade.</p>
<h4 class="positem">Acordos entre casais.</h4>
<p class="positem">Combine sempre com seu parceiro o que pode ou não rolar. Esta  decisão é fundamental e somente vocês podem tomar, porém, esta decisão deverá  ser tomada antes de vocês entrarem numa boate ou clube. Mais cedo ou mais tarde,  pode acontecer com você. Por exemplo, você não está se divertindo, enquanto o  cônjuge está: o que fazer? Parar, ir embora com ele, sair sozinho?</p>
<p class="positem">Não esqueça de conversar longamente com o casal escolhido sobre  suas preferências e sobre o que pode ou não acontecer. Este procedimento com  certeza evitará futuros constrangimentos.</p>
<p class="positem">Nunca tenha pressa e nem faça nada sob pressão. Os melhores  encontros são sempre precedidos de uma boa conversa, na dúvida, se ficou ou não  tudo bem claro, adie o encontro.</p>
<p class="positem">Não são permitidas, em nenhum clube ou boate, discussões e/ou  qualquer tipo de comportamento inadequado.</p>
<p class="positem">Cada casal tem a sua própria fantasia e o astral de cada pessoa  muda constantemente. Além disto, cada noite é diferente da outra em qualquer  clube ou boate de swing do mundo.</p>
<p class="positem">Nem sempre um local com muitos casais significa que a noite  será "inesquecível". Com certeza, uma noite que você achou que tenha sido  péssima, outros vários casais adoraram. Portanto, tenha paciência e lembre-se  que swing é um prazer e não uma obrigação.</p>
<p class="positem">Tenha sempre em mente que swingers são pessoas absolutamente  comuns e que têm os mesmos problemas que qualquer outro ser humano.</p>
<h4 class="positem">No clube ou boate.</h4>
<p class="positem">Cuide sempre de seu clube/boate seja ele qual for.</p>
<p class="positem">O seu cuidado é fundamental para todos.<br />
Evite a qualquer  custo largar copos de vidro, garrafas em qualquer lugar (a vítima poderá ser  você).</p>
<p class="positem">Baixo astral, mau humor, deselegância (um casal alto-astral,  elegante e educado será sempre muito bem recebido por todos).</p>
<p class="positem">Atrapalhar o lance dos outros com conversas longas e sem  sentido; elevação da voz; bebedeira em excesso, formar casal e insistência de  qualquer gênero. O casal chato sempre sobra e nunca será bem vindo.</p>
<p class="positem">Pessoas muito ciumentas, problemáticas, rancorosas, mal  educadas, machistas, baixo astrais e afins devem curtir uma boa televisão EM  CASA.</p>
<h4 class="positem">Recomendação final</h4>
<p class="positem">Respeito ao próximo, educação, elegância, bom humor, paciência  e principalmente gentileza são as prerrogativas básicas para qualquer encontro  de casais.</p>
<p class="positem">Curta sua fantasia, porém, nunca se esqueça que o seu corpo é  um presente de Deus, portanto, cuide dele com muito carinho.</p>
<p class="positem">Camisinha sempre.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hyundai production back in full swing]]></title>
<link>http://allcarnews.wordpress.com/2008/10/03/hyundai-production-back-in-full-swing/</link>
<pubDate>Fri, 03 Oct 2008 17:34:21 +0000</pubDate>
<dc:creator>allcarnews</dc:creator>
<guid>http://allcarnews.ro.wordpress.com/2008/10/03/hyundai-production-back-in-full-swing/</guid>
<description><![CDATA[Those awaiting new offerings from Hyundai can see the light at the end of the tunnel with the cessat]]></description>
<content:encoded><![CDATA[<p>Those awaiting new offerings from Hyundai can see the light at the end of the tunnel with the cessation of industrial action in Korea bringing the export market back to normal.  Hyundai Motor Company Australia has announced a back log of orders will be hitting Australian shores later this month.</p>
<p align="center">
<p><img src="http://www.caradvice.com.au/wp-content/uploads/2008/10/iload0001.thumbnail.jpg" alt="Hyundai production back in full swing" title="Hyundai production back in full swing" /></p>
</p>
<p>The production interruption which has affected several countries including Australia has been ongoing since 40,000 workers at Hyundai Motor Company walked off the job in June as labour unrest escalated in South Korea.  The ships due late October carrying the much-awaited cars will include a shipment of the i30 and iLoad van range.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The Blues and Random Blunderings]]></title>
<link>http://ihearpurple.wordpress.com/?p=238</link>
<pubDate>Fri, 03 Oct 2008 15:40:19 +0000</pubDate>
<dc:creator>Stephanie</dc:creator>
<guid>http://ihearpurple.ro.wordpress.com/2008/10/03/the-blues-and-random-blunderings/</guid>
<description><![CDATA[ 
Excerpts from my review of one of the &#8220;Millennium Stage&#8221; concerts at the Kennedy Cente]]></description>
<content:encoded><![CDATA[<p><!--[if gte mso 9]&#62; Normal   0                             MicrosoftInternetExplorer4 &#60;![endif]--><!--[endif]--><!--  --><!--[if gte mso 10]&#62; &#60;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --> <!--[endif]--></p>
<p><em>Excerpts from my review of one of the "Millennium Stage" concerts at the Kennedy Center featuring Pinetop Perkins &#38; the Nighthawks:</em></p>
<p>On September 15<sup>th</sup>, 2008, Pinetop Perkins ascended the stage of the Kennedy Center Theater Lab in a completely red ensemble from his velvet shoes to his matching fedora. His music, however, was far from monochromatic; his bluesy, rollicking delivery of heartfelt sentiment on the piano evoked colorful, all-American motifs, from mom-and-pop diners to empty expanses of highway, from cowboys loping along the plains to couples dancing the jitterbug.</p>
<p>[...]</p>
<p><!--[if gte mso 9]&#62; Normal   0                             MicrosoftInternetExplorer4 &#60;![endif]--><!--  --><!--[if gte mso 10]&#62; &#60;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --> <!--[endif]-->He incorporated his persona beautifully into the performance, bringing an emotional intensity that made believable his narrative about unrequited love and the beauty of days long gone. Yet, this world is one that may soon fade away. [...] While Pinetop Perkins and the Nighthawks lamented past dreams about a "pretty girl and a Cadillac" and packing "up my clothes in a matchbox" to forget a lover, the audience seemed more likely to lament the questionable judgment of two amateur interpretive dancers who commandeered the space in front of the stage. For the average person, the bluesy "rockabilly" genre suggests swing the jitterbug; the dancing pair's interpretation recalled electroshock victims in cartoons, epileptic penguins, and <span style="text-decoration:underline;">A Chorus Line</span>. <!--[if gte mso 9]&#62; Normal   0                             MicrosoftInternetExplorer4 &#60;![endif]--><!--  --><!--[if gte mso 10]&#62; &#60;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --> <!--[endif]-->Likely a result of too much to drink.<br />
<!--[if gte mso 9]&#62; Normal   0                             MicrosoftInternetExplorer4 &#60;![endif]--><!--  --></p>
<p>[...]</p>
<p><!--[if gte mso 9]&#62; Normal   0                             MicrosoftInternetExplorer4 &#60;![endif]--><!--  --><!--[if gte mso 10]&#62; &#60;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman";} --> <!--[endif]-->Perhaps every element of this performance is quintessentially all-American: blues, swing and jitterbug, and unabashed individuals who exercise their rights to don jazz shoes and blue Crocs and dance however they choose. [...] Still, the misguided stylings of the dancers fueled a deeper appreciation for the unaffected romance and timelessness of Pinetop Perkins' music, where themes in American culture are idealized, and teasing rhythms continue to get people dancing.<br />
<!--[if gte mso 9]&#62; Normal   0                             MicrosoftInternetExplorer4 &#60;![endif]--><!--  --></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Pousada para Casais Liberais ]]></title>
<link>http://swingsc.wordpress.com/?p=72</link>
<pubDate>Fri, 03 Oct 2008 15:02:22 +0000</pubDate>
<dc:creator>swingsc</dc:creator>
<guid>http://swingsc.ro.wordpress.com/2008/10/03/pousada-para-casais-liberais-swing/</guid>
<description><![CDATA[Olá,
Para o pessoal que curte swing ou quer começar, além de boates para casais, em Baneário Cam]]></description>
<content:encoded><![CDATA[<p>Olá,</p>
<p>Para o pessoal que curte swing ou quer começar, além de boates para casais, em Baneário Camboriú, extiste uma Pousada para Casais. A Pousada Liberty.</p>
<p>Vários ambientes para vocês descansarem, e curtirem com outros casais. Quartos com frigobar, sala de jogos, piscina, sala de star, hidro massagem, sauna.</p>
<p>Fotos e informações do local: <a href="http://www.libertyclub.com.br/clube/modules.php?op=modload&#38;name=My_eGallery&#38;file=index&#38;do=showgall&#38;gid=13">http://www.libertyclub.com.br/clube/modules.php?op=modload&#38;name=My_eGallery&#38;file=index&#38;do=showgall&#38;gid=13</a></p>
<p> </p>
<p>Vale a pena aliar o descanso, e um ambiente descontraido e com clima sensual e especializado em casais praticantes de swing.</p>
<p> </p>
<p>Espero que tenham gostado.</p>
<p>Mandem pelo fomulário de contato, dúvidas, sugestões de conteúdo, informações de festas e eventos para casais, que publicamos no site.</p>
<p> </p>
<p>abraços a todos.</p>
<p>Casal Jovem Floripa<br />
C &#38; L</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Your Body's Physical Fitness is Crucial in Improving Your Golf Game]]></title>
<link>http://golftipz.wordpress.com/?p=8</link>
<pubDate>Fri, 03 Oct 2008 12:20:59 +0000</pubDate>
<dc:creator>veeps1</dc:creator>
<guid>http://golftipz.ro.wordpress.com/2008/10/03/your-bodys-physical-fitness-is-crucial-in-improving-your-golf-game/</guid>
<description><![CDATA[
Your body and golf operate together, its crucial to realise your body&#8217;s limitations otherwise]]></description>
<content:encoded><![CDATA[<div id="body">
<p>Your body and golf operate together, its crucial to realise your body's limitations otherwise you will not better your performance. You should workout regularly, remembering to practise on your golf game as well or you will not improve, even though your body will still be able to make a good golf stroke.</p>
<p>Its vital to remember that your body is a golf machine Your body recognises and interprets your golfing ability! You should keep working on your natural ability, only after a while, aging kicks in and you lose strength, flexibility, coordination, stability and a great deal more. When this happens, your game starts to weaken.</p>
<p>One method of stopping this is to maintain your fitness and health and never quit practicing. Practicing in groups is better than practicing on your own so invite a couple of your buddy's to join you.</p>
<p>You must understand the limitations of your body thereafter your game will improve, you will discover you can make a better, more powerful swing, but with more precision and accuracy. The final result is a huge decrease in marks and mix hit, and a huge improvement in distance and accuracy. Also make sure you are comfortable in your golf shoes and with your golf clubs. Also try to use a golf cart if you can get access to one.</p>
<p>You are a golfing pro and all pro's train their body's in alignment with the sport they play You need to follow suite. The more you focus on the physical demands the swing puts on your physical structure, the more you will be able see the importance of golf training like in any other sport. If you are competitive with yourself on the course, you should want to make changes that will quickly improve your game. You must start thinking like a high-level golfing pro.</p>
<p>Exercise often to build up your stamina and you will see and feel the difference in your golf game.</p></div>
<div>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<div id="sig" class="sig">
<p>Check out <a id="link_74" href="http://www.golfstickz.com/" target="_new">http://www.golfstickz.com</a> for more ideas.</p>
<p>Mr Vinesh Teeluckdhari</p>
<p><a id="link_75" href="http://www.golfstickz.com/" target="_new">http://www.golfstickz.com</a></div>
</td>
</tr>
</tbody>
</table>
</div>
<p><a href="http://golftipz.files.wordpress.com/2008/10/18092008206.jpg"><img class="alignleft size-medium wp-image-9" title="18092008206" src="http://golftipz.wordpress.com/files/2008/10/18092008206.jpg?w=300" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
