<?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>songbird &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/songbird/</link>
	<description>Feed of posts on WordPress.com tagged "songbird"</description>
	<pubDate>Mon, 30 Nov 2009 21:02:52 +0000</pubDate>

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

<item>
<title><![CDATA[mpg321]]></title>
<link>http://bleuwinter.wordpress.com/2009/11/28/mpg321/</link>
<pubDate>Sat, 28 Nov 2009 02:10:42 +0000</pubDate>
<dc:creator>Bleuwinter</dc:creator>
<guid>http://bleuwinter.wordpress.com/2009/11/28/mpg321/</guid>
<description><![CDATA[mpg321 is a command-line mp3 player. Why &amp; when to use it? * On old computers * If your GUI stop]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="separator" style="clear:both;text-align:center;">
<a href="http://i633.photobucket.com/albums/uu53/bleuwinter/mpg321.png" target="_blank"><img src="http://i633.photobucket.com/albums/uu53/bleuwinter/th_mpg321.png" border="0" alt="mp3,cli,Ubuntu,Linux"></a>
</div>
<p><span style="font-size:large;"><a href="http://mpg321.sourceforge.net/">mpg321</a></span> is a command-line mp3 player.</p>
<p><em>Why &#38; when to use it?</em><br />
* On old computers<br />
* If your <a href="http://en.wikipedia.org/wiki/Graphical_user_interface">GUI</a> stops working and you need some music while you are solving the problem<br />
* Play music from your server<br />
* Learn command line and practice it<br />
* For fun</p>
<p><em>How to install it on Ubuntu?:</em><br />
Open the Terminal (Applications → Accessories → Terminal) and type the following command: </p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 sudo apt-get install mpg321
</div>
<p>Key in <strong>Y</strong> and press <strong>Enter</strong> when you&#8217;re asked to install other required packages.</p>
<p><strong>How to use?</strong><br />
<em>Access the help menu: </em><br />
Open the Terminal (Applications → Accessories → Terminal) and type the following command:<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 --help</div>
<p></code></p>
<p>You will get a list of codes which you can use with mpg321.<br />
<code><br />
 --verbose or -v          Increase verbosity<br />
   --quiet or -q            Quiet mode (no title or boilerplate)<br />
   --gain N or -g N         Set gain (audio volume) to N (0-100)<br />
   --skip N or -k N         Skip N frames into the file<br />
   --verbose or -v          Be more verbose in playing files<br />
   -o dt                    Set output devicetype to dt<br />
                                [esd,alsa(09),arts,sun,oss]<br />
   --audiodevice N or -a N  Use N for audio-out<br />
   --stdout or -s           Use stdout for audio-out<br />
   --au N                   Use au file N for output<br />
   --cdr N                  Use wave file N for output<br />
   --wav N or -w N          Use wave file N for output<br />
   --test or -t             Test only; do no audio output<br />
   --list N or -@ N         Use playlist N as list of MP3 files<br />
   --random or -Z           Play files randomly until interrupted<br />
   --shuffle or -z          Shuffle list of files before playing<br />
   -R                       Use remote control interface<br />
   --aggressive             Try to get higher priority<br />
   --help or --longhelp     Print this help screen<br />
   --version or -V          Print version information<br />
</code></p>
<p>Example:</p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -q filename</div>
<p>This code allows you to play a song without any details.</p>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -v filename</div>
<p>This code allows you to play a song with information of the file.</p>
<p>Of course it would be <em>ridiculous</em> to play music one by one file so we have to create <strong>playlists</strong>:</p>
<p>Open the Terminal (Applications → Accessories → Terminal) and type the following command:</p>
<p>(Find the location of your mp3 files by the command <strong>dir</strong>,<strong> cd</strong>, and <strong>cd..</strong>.)<br />
<em>dir</em> : Shows a list of all the files available in that directory<br />
<em>cd</em> <strong>folder</strong>: Goes to <strong>folder</strong> directory (Replace <strong>folder</strong> with the name of a folder that you want to access)<br />
<em>cd..</em> Goes to previous directory</p>
<p> Example: Your music is located in <em>/home/yourusername/Music</em> so you should type cd /home/yourusername/Music</p>
<p>Then, create a playlist of all songs in this folder:<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 ls *.mp3 &#62; playlist.txt</div>
<p></code></p>
<p>or create a playlist based on artist(Example <em>abz</em>)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 ls &#124; grep abz &#62; abzplaylist.txt</div>
<p></code><br />
*Tips: Replace <em>abz</em> with the artist name</p>
<p><strong>To play the playlist:</strong><br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 --list playlist.txt</div>
<p></code><br />
<strong>Play it randomly:</strong><br />
*Little shuffle mode (Plays every file once in a random order)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -z --list playlist.txt</div>
<p></code><br />
*Big shuffle mode (Plays a random file and then plays another random file. mpg321 will go on until you stop it.)<br />
<code>
<div style="border:1px dashed grey;height:20px;width:400px;">
 mpg321 -Z *</div>
<p></code></p>
<p>Resources:<br />
<a href="http://commandline.org.uk/command-line/command-line-audio-players-mpg321-and-mpg123/">Command Line Warriors</a><br />
<a href="http://linuxdevcenter.com/pub/a/linux/2001/11/15/learnunixos.html">Linux Dev Center</a></p>
<p><strong>Its alternatives:</strong><br />
1. <a href="http://amarok.kde.org">Amarok </a>(If you&#8217;re using KDE/Kubuntu as it suites the theme and environment)<br />
2. <a href="http://www.getsongbird.com/">Songbird</a> &#8211; My favourite, read the <a href="http://bleuwinter.wordpress.com/2009/05/16/songbird-music-player/">review.</a><br />
3. <a href="http://audacious-media-player.org/">Audacious</a> &#8211; Lightweight and Winamp like, read the <a href="http://bleuwinter.wordpress.com/2009/11/27/audacious/">review.</a><br />
4. <a href="http://projects.gnome.org/rhythmbox/">Rhythmbox</a> &#8211; It comes pre-installed on Ubuntu<br />
5. <a href="http://www.listen-project.org/">Listen Audio Player</a><br />
6. <a href="http://www.exaile.org/">Exaile</a> &#8211; Music Player for GTK+<br />
7. <a href="http://banshee-project.org/">Banshee</a> &#8211; Play music and videos. Sync your ipod and G1.<br />
8. <a href="http://thekonst.net/en/orpheus">orpheus</a> &#8211; another <a href="http://en.wikipedia.org/wiki/Command-line_interface">Command-Line Interface(CLI)</a> audio player</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Songbird Hearing Aid - Innovative Disposable Hearing Aid Offers Sleek Design, Better Sound Quality]]></title>
<link>http://loiter22.wordpress.com/2009/11/26/songbird-hearing-aid-innovative-disposable-hearing-aid-offers-sleek-design-better-sound-quality/</link>
<pubDate>Thu, 26 Nov 2009 04:46:07 +0000</pubDate>
<dc:creator>marjie2</dc:creator>
<guid>http://loiter22.wordpress.com/2009/11/26/songbird-hearing-aid-innovative-disposable-hearing-aid-offers-sleek-design-better-sound-quality/</guid>
<description><![CDATA[Image : http://www.flickr.com The Songbird Hearing Aid has revolutionized the way those with mild to]]></description>
<content:encoded><![CDATA[Image : http://www.flickr.com The Songbird Hearing Aid has revolutionized the way those with mild to]]></content:encoded>
</item>
<item>
<title><![CDATA[songbird stayed over.]]></title>
<link>http://duckduckgoosie.wordpress.com/2009/11/24/songbird-stays-over/</link>
<pubDate>Tue, 24 Nov 2009 18:19:53 +0000</pubDate>
<dc:creator>AshleyGoose</dc:creator>
<guid>http://duckduckgoosie.wordpress.com/2009/11/24/songbird-stays-over/</guid>
<description><![CDATA[he snores. he stops breathing in his sleep. we fell asleep yesterday and it almost felt unreal. i me]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>he snores.</p>
<p>he stops breathing in his sleep.</p>
<p>we fell asleep yesterday</p>
<p>and it almost felt unreal. i mean&#8211;he&#8217;s really nice. he has a cool name. he has his life together. military background. great goals and aspirations. chocolate, just like i like them. but he&#8217;s nothing like HIM. so him being here this late has me SCREAMING floetry in my head like &#8220;whyyy you gotta be here?&#8221;&#8230;not like i wasn&#8217;t having a good time. not that i wasn&#8217;t enjoying his company. we all did. but at the end of the night, my laugh always reminds me of who it belongs to.</p>
<p>never met a man who just wants to be held. doesn&#8217;t want you to leave. always wants you near. and i was taken aback. never have i met a man who embraces you all night long. constantly reached over just to hold my hand. quite amazing.</p>
<p>but still not impressed. because&#8211;you see, i&#8217;m not comfortable with anybody else&#8217;s hands yet, and although your fingers feel so good running down my spine right now, i will never trust you. and i apologize ahead of time. because when you&#8217;re holding me, and i feel your breath on my neck&#8230;i am vividly imagining that you are somebody else. somebody who doesn&#8217;t hold my hand. and he doesn&#8217;t snore unless he&#8217;s really tired and laying on his back. he can&#8217;t sleep with me in his arms, so he would hold me until i fell asleep and let go.</p>
<p>yea. i&#8217;m imagining him the entire time because that&#8217;s who should be here instead of you. but you were such a breath of fresh air. you and your late night humor and our knuckle-cracking. lol. i had a great night of fun yesterday.</p>
<p>i laughed until i cried. and had to convince him that they were tears of joy and laughter on my pillowcase,</p>
<p>right before i cried myself to sleep.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Here We Go.... (Sonic In The Hate Age)]]></title>
<link>http://ailurusfulgens.wordpress.com/2009/11/24/here-we-go-sonic-in-the-hate-age/</link>
<pubDate>Tue, 24 Nov 2009 01:30:56 +0000</pubDate>
<dc:creator>powermadpowersurge</dc:creator>
<guid>http://ailurusfulgens.wordpress.com/2009/11/24/here-we-go-sonic-in-the-hate-age/</guid>
<description><![CDATA[Es geht los&#8230;. demnächst. Wenn auch nicht mit Firefox. It goes loose&#8230;. themnext. If also ]]></description>
<content:encoded><![CDATA[Es geht los&#8230;. demnächst. Wenn auch nicht mit Firefox. It goes loose&#8230;. themnext. If also ]]></content:encoded>
</item>
<item>
<title><![CDATA[{°v°} =3]]></title>
<link>http://schwadegan.wordpress.com/2009/11/23/songbird-mascot-black/</link>
<pubDate>Mon, 23 Nov 2009 21:56:21 +0000</pubDate>
<dc:creator>Schwadegan</dc:creator>
<guid>http://schwadegan.wordpress.com/2009/11/23/songbird-mascot-black/</guid>
<description><![CDATA[Läste precis kommentarerna till en av Antoines skärmdumpar på flickr, det verkar som om Songbird änt]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Läste precis kommentarerna till en av <a href="http://blog.geekshadow.com/">Antoines</a> <img class="alignright" title=" " src="http://s3.amazonaws.com/satisfaction-production/s3_images/75079/goldfishbuster.png" alt="" width="328" height="253" />skärmdumpar på flickr, det verkar som om Songbird äntligen kommer att göra sig av med den fula lilla &#8220;guldfisken&#8221; och återgå till den ursprungliga svarta maskoten!<br />
Jag förstod egentligen aldrig vad den opersonliga gula/orangea ikonen skulle vara bra till, den svarta är så mycket mer originell &#8211; dessutom har den hängt med sedan början av projektet. Enda modifikationen är att vi inte längre kommer att se de välbekanta &#8220;muffinsen&#8221; som brukade dyka upp här och var, ofta misstolkade som någon form av utsläpp.</p>
<p>Välkommen tillbaka, du har varit saknad!</p>
<p><img class="alignleft size-full wp-image-146" title="Lenny" src="http://schwadegan.wordpress.com/files/2009/10/lenny.png" alt="" width="140" height="90" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Liten nettleserguide [Beta]]]></title>
<link>http://dikern.wordpress.com/?p=114</link>
<pubDate>Sun, 22 Nov 2009 21:20:39 +0000</pubDate>
<dc:creator>dikern</dc:creator>
<guid>http://dikern.wordpress.com/?p=114</guid>
<description><![CDATA[En høst objektiv review av nettlesere. Har ikke satt opp alt av lenker osv enda. Denne kommer til å ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>En høst objektiv review av nettlesere. Har ikke satt opp alt av lenker osv enda. Denne kommer til å ha løpende oppdateringer.</p>
<p>Versjon: Beta 0.2 </p>
<p><strong>Firefox</strong> (Mozilla)<br />
Imot: Stort antall unødvendige utvidelser. Treg oppstart med mye extras.<br />
For: Strålende ytelse og stabilitet. Fullskjermvisning med faner.</p>
<p>Sliter med mye unødvendig tredjepartsprogramvare som installerer seg selv. Alle tenkelige programmer installerer egne toolbars og tillegg, og det hele ender med en ubrukelig nettleser. Det som engang gjorde Firefox genialt, har nå tatt litt sjarmen fra den.</p>
<p>Lenker</p>
<div>
<blockquote><p><strong>- Songbird<br />
<span style="font-weight:normal;">Twist på Firefox med musikkbibliotek ala iTunes integrert. Veldig snedig for enkelte brukere, men ikke akkurat noen hovednettleser. Selvsagt masse skins og utvidelser tilgjengelig. </span></strong></p>
<div><strong>- Flock</strong></div>
<div>Denne twisten av Firefox skal vistnok gi deg bedre utnyttelse av sosiale nettsteder. Facebook, Twitter, Flickr etc skal liksom funke bedre. Men veit ikke egentlig om det gjør det. Jeg merka ihvertfall ingen forskjell. Nice skin, og feel. Det er jo egentlig Firefox, bare litt tweaka.</div>
</blockquote>
</div>
<div><strong>Opera</strong> (Opera)</div>
<div>For: Opera Unite og innebygget funksjonalitet. Fullskjermvisning.</div>
<div>Imot: Treg oppstart, utstabil, egner seg dårlig på små skjermer/lave oppløsninger</div>
<div>Opera Unite gir tilgang for mye god funksjonalitet. Og sammen med widgets kan man få en ganske god opplevelse. Desverre blir det litt tungt og treigt. Spesielt for min lille netbook.</div>
<div><strong></strong> </div>
<div><strong>Chrome</strong> (Google)</div>
<div>For: Rask oppstart, svært stabil, &#8220;All-in-one&#8221;-adresse/søkelinje, ytelse på tunge tjenester.</div>
<div>Imot: Lite tilpasningsmuligheter. Savner &#8220;Live Bookmarks&#8221;.</div>
<div>Det har kommet vesentlige funksjonalitetsforbedringer i betaversjonene stadig. Og Chrome er en av nettleserne med raskest utvikling. Google lager også et operativsystem som skal følge samme gata. Men jeg savner virkelig de levende bokmerkene fra Firefox. Googles egen leser funker fint. Men kjedelig å få &#8220;tusenvis&#8221; av uleste, bare for å kunne se overskrifter fort og enkelt&#8230;</div>
<div><strong></strong> </div>
<div><strong>Safari</strong> (Apple)</div>
<div>For: Smooth design, smooth rendering, veldig Apple; enkelt.</div>
<div>Imot: Ustabil i Windows, treg oppstart. Mangler fullskjermvisning, veldig Apple; lite tilpasningsmuligheter.</div>
<div><strong></strong> </div>
<div><strong>Internet Explorer</strong> (Microsoft)</div>
<div>Kommer med mer om denne!</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Purple Rain]]></title>
<link>http://schwadegan.wordpress.com/2009/11/20/purple-rain/</link>
<pubDate>Fri, 20 Nov 2009 20:42:39 +0000</pubDate>
<dc:creator>Schwadegan</dc:creator>
<guid>http://schwadegan.wordpress.com/2009/11/20/purple-rain/</guid>
<description><![CDATA[Tänkte bjuda på en förhandsvisning av Songbirds nya tema, Purple Rain, som är under utveckling. Läs ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone" title=" " src="http://files.songbirdnest.com/wp-content/uploads/2009/11/purple-rain.png" alt="" width="720" /></p>
<p>Tänkte bjuda på en förhandsvisning av Songbirds nya tema, Purple Rain, som är under utveckling. Läs mer om det och den kommande versionen av Songbird med kodnamnet KoЯn <a href="http://blog.songbirdnest.com/2009/11/20/yo-kanye-waddup/">här</a>.</p>
<p><a href="http://schwadegan.wordpress.com/files/2009/10/lenny.png"><img class="alignleft size-full wp-image-146" title="Lenny" src="http://schwadegan.wordpress.com/files/2009/10/lenny.png" alt="" width="140" height="90" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Marvel Alliance Strikes Back!]]></title>
<link>http://charlesryderblog.wordpress.com/2009/11/16/marvel-alliance-strikes-back/</link>
<pubDate>Mon, 16 Nov 2009 22:21:20 +0000</pubDate>
<dc:creator>Charles Ryder</dc:creator>
<guid>http://charlesryderblog.wordpress.com/2009/11/16/marvel-alliance-strikes-back/</guid>
<description><![CDATA[It had been a pretty long while since I started expecting the sequel to Marvel Ultimate Alliance (20]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It had been a pretty long while since I started expecting the sequel to <strong><em>Marvel Ultimate Alliance</em></strong> (2006) sequel and finally, I have got it and finished the game twice. It is a bit odd, because I had really expected much more from this game and at the end, it kinda feels like a dissapointment. Because of my console, the version I will talk about is the Wii version of the game.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-173" title="Marvel Ultimate Alliance 2" src="http://charlesryderblog.wordpress.com/files/2009/11/mua2.jpg" alt="Marvel Ultimate Alliance 2" width="420" height="592" /></p>
<p><strong><em>Marvel Ultimate Alliance 2,</em></strong> previously known also as <strong><em>Fusion, </em></strong>basically follows the same path of the original game in terms of gameplay. Up to four players can join during anytime of the game, choosing 4 characters among 26 playable Marvel heroes and villains and overcoming each obstacle on their way. One of the new aspects of the game is the fact that now, thanks to the <em>fusion power</em> the characters are able to combine their powers, realeasing a powerful blast of mixed abilities. This new feature, apart from the story, are the only new attractions of the game, so we can say there&#8217;s a bit lack of originality.</p>
<p>The characters have improved in a lot of aspects, specially the visual one, but surely fans of the previous game will be struck by the fact of not having really new superpowers. Indeed, almost all the attacks of the first game have come back, with the exception of few that were changed, into something a little bit better, or something even worse. Teamwork is still the same, and the enemy&#8217;s level of intelligence becomesa challenge in some moments of the game, but there&#8217;s nothing really splendorous. Expectations about the new characters like <em>Jean Grey, Penance, Psylocke, etc. </em>fade quickly, as you realize some are the obvious replacement of the ones in the first game that didn&#8217;t enter in this second round (like <em>Psylocke, </em>who is basically <em>Elektra).</em> Some others continue being as good as they were, and pretty few have become really stronger.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-174" title="MUA2 1" src="http://charlesryderblog.wordpress.com/files/2009/11/mua2-1.jpg" alt="MUA2 1" width="450" height="253" /></p>
<p>The game&#8217;s plot follows the Civil War story, on which the heroes have to choose between accepting the Act of Registration from the Government, or not. Depending on what you choose, some characters will be available or not, and missions will change, according to the story you&#8217;re playing. Nevertheless, the way the plot is told becomes sometimes quite boring, and you just skip the info in order to start playing the missions. The S.H.I.E.L.D. blue points, where you save your progress and change your team are now spread in not very useful locations, unlike the previous game, and you can&#8217;t change characters who have died in battle anymore. You have to bring them back to life using the Fusion, and in the Wii version, there are no costumes for the characters. </p>
<p>Bosses have a balanced level, and the locations, although they are not as exotic as in the prequel, are now made with more detail, giving the game a pleasant visual effect. Missions have become shorter in lenght and not very dinamic in some moments. A good improvement from the first Wii version is that the Wii Remote Control is now more enjoyable without being an irritating feature. Attacks are not made by the control&#8217;s movement anymore, and isntead, it is required only in specific actions.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-175" title="MUA2 2" src="http://charlesryderblog.wordpress.com/files/2009/11/mua2-2.jpg" alt="MUA2 2" width="450" height="253" /></p>
<p style="text-align:left;">So, in general, <strong><em>MUA2 </em></strong>it&#8217;s the same game as the first one with some improvements but no really outstanding feature, a story that can be sometimes hateful, and cool characters that still, have something which doesn&#8217;t really fit at all. A good avergae game, but the first one is really missed by the player while he plays this one.</p>
<p style="text-align:left;">So, here&#8217;s a list of all the playable Wii characters, with a brief opinion of mine (based on my playing with them), and more images. Leave your comments as you wish!</p>
<p style="text-align:left;"><strong><em>1.- Captain America</em></strong>: He&#8217;s basically the same as in the first game, and his attacks are overpowered by most of all the other characters. A shield is not very useful, really<em>&#8230; Grade: Useful in some moments.</em></p>
<p style="text-align:left;"><strong><em>2.- Iron Man: </em></strong>With some new improvements, Stark&#8217;s armor is not only a reliable backup, but also quite an offensive fighter. He&#8217;s not only powerful but also resistant. <em>Grade: Essential for victory!</em></p>
<p style="text-align:left;"><strong><em>3.- Thor: </em></strong>The mighty Nordic God might not seem trustful in this game, but hides great power in his hammer. Strong and offensive, clearly a great choice<em>. Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>4.- Hulk</em></strong>: This new ally it&#8217;s powerful by nature. His only &#8220;but&#8221; is that he requires &#8220;rage&#8221; for some of his attacks, but it&#8217;s a good companion in rooms full of enemies<em>&#8230; Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>5.- Spiderman</em></strong>: The web-head neighbour it&#8217;s the master of agility, and along with his spider powers becomes a useful tool whether for running away, or fighting multiple enemies at a time<em>&#8230; Grade: Essential for victory!</em></p>
<p style="text-align:left;"><em><strong>6.- Mr. Fantastic</strong></em>: Thanks to his elastic powers, he can reach enemies that are not close to him, but his physical power from the last game, went from 5 to 2 so think about it&#8230; <em>Grade: Not the best, not the worst.</em></p>
<p style="text-align:left;"><strong><em>7.- Invisible Woman: </em></strong>Susan&#8217;s powers have increased from 5, to extra 5, becoming quite a good heroine to play with. Not only will she protect her mates using big shields, but also her &#8220;fusion&#8221; abilities end up with massive destruction! <em>Grade: Essential for victory!</em></p>
<p style="text-align:left;"><strong><em>8.- Human Torch: </em></strong>Johnny&#8217;s fire power is strong, and used in a proper way, becomes destructive, besides, his combinations with the other heroes always result in total blast, surely, one hell of a flame! <em>Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>9.- The Thing: </em></strong>Ben&#8217;s physical power it&#8217;s the same, but unlike the first game, he&#8217;s a little bit faster. This allows him to act like a big bull enemies can&#8217;t run from!!! <em>Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>10.- Wolverine: </em></strong>The iconic X-Man, remains the same as in the prequel, but his lack of power is far more visible. It&#8217;s not a good idea to use metal claws against metal armors&#8230; <em>Grade: Useful in some moments.</em></p>
<p style="text-align:left;"><em><strong>11.- Storm: </strong></em>Storm&#8217;s lightnings are a good weapon when a lot of enemies surround you, but&#8230; apart from that she has nothing really good to add, except (maybe&#8230;) her fusion compability&#8230; <em>Grade: Useful in some moments.</em></p>
<p style="text-align:left;"><strong><em>12.- Cyclops: </em></strong>This new player seems to have a poor gameplay, but his optical powers ban that statement and make him a good mate rivals can&#8217;t deal with. <em>Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>13.- Jean Grey: </em></strong>She&#8217;s probably one of the best newcomers to the game. Not only can she revive with her powers, but also ask her Phoenix&#8217;s soul for help and play with telekinesis as if she were playing with dolls. <em>Grade: Essential for victory!</em></p>
<p style="text-align:left;"><strong><em>14.- Iceman: </em></strong>Basically the same as always, Iceman icy powers are useful for freezing enemies once and for all, trapping them in what can become a massive punching bag. Fast, agile, and a good shooter&#8230; what else do you ask? <em>Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>15.- Gambit: </em></strong>Another newcomer who impresses with her explosive cards. His shooting ability is stunning, and more when his cards fly everywhere without even aiming at an enemy! <em>Grade: Good choice!</em></p>
<p style="text-align:left;"><strong><em>16.- Psylocke: </em></strong>This lady&#8217;s pink powers are not very realiable and you&#8217;d prefer to take Jean instead of her. Her pink blade is probably a good weapon, along her butteflies, but she&#8217;s not the latest warrior<em>&#8230; Grade: Useful in some moments.</em></p>
<p style="text-align:left;"><em><strong>17.- Deadpool</strong>: </em>This mercenary is everything but rubbish. He shoots as fast as you blink your eyes, teleports, jumps, throws granades and starts the massive attacks as fast as he says: &#8220;Hello!&#8221; His resistance and health powers&#8230; make him the perfect back-up. <em>Grade: Essential for victory.</em></p>
<p style="text-align:left;"><strong><em>18.- Daredevil: </em></strong>Not a very impressive character, Daredevil shows us agile movements and baton-based hits. Nothing really amazing. <em>Grade: Not the best, not the worst.</em></p>
<p style="text-align:left;"><strong><em>19.- Songbird: </em></strong>Another newcomer who seems to offer a lot, but at the end is just another normal mutant. Her sonic powers are only impressive when the fusion is made. A bad point: she can&#8217;t attack while she flies&#8230; <em>Grade: Not the best, not the worst.</em></p>
<p style="text-align:left;"><strong><em>20.- Blade: </em></strong>The old vampire hunter was weak and this new version of him&#8230; is still weak. Surrounded by all the other mutants, he barely even disappears among them. Some attacks have become stronger, and the gunshot is probbaly his best feature. <em>Grade: Useful in some moments.</em></p>
<p style="text-align:left;"><strong><em>21.- Ms. Marvel: </em></strong>We still wonder why did she return. She&#8217;s not amazing and her attacks do a damage level of mediocrity. The only plus is that she&#8217;s strong, but in that case&#8230; better take Hulk or the Thing. <em>Grade: Stay at the base.</em></p>
<p style="text-align:left;"><strong><em>22.- Penance: </em></strong>This mysterious guy doens&#8217;t seem to be strong or physically impressive, although visually, he is. Has energy attacks based in getting pain, but his really strong point is the &#8220;fusion&#8221; move, that ends up sometimes in total destruction. <em>Grade: Not the best, not the worst.</em></p>
<p style="text-align:left;"><strong><em>23.- Luke Cage: </em></strong>This warrior is anything but spectacular. Maybe his fists against the ground are something but aparte from that&#8230; the chain, the punch&#8230; just don&#8217;t really work. <em>Grade: Stay at the base.</em></p>
<p style="text-align:left;"><strong><em>24.- Venom: </em></strong>One of the two villains available, Venom it&#8217;s one of the best newcomers. His slow melee moves are compensed by really good attackas using his symbiotic abilites, which are able to drain enemy&#8217;s life in less that 1 minute! Grotesque, sometimes is the best&#8230; <em>Grade: Essential for victory!</em></p>
<p style="text-align:left;"><strong><em>25.- Green Goblin: </em></strong>The explosive pumpkins he throws make up for his lack of physical damage. Basically that&#8217;s all he does&#8230; oh, did I mention he launches missiles? <em>Grade: Not the best, not the worst.</em></p>
<p style="text-align:left;"><strong><em>26.- Nanyte Nick Fury: </em></strong>This android version of Nick Fury is strong, and has some good attacks&#8230; but he&#8217;s lack of visual compability with the rest of heroes, makes him a little odd. Apart from that&#8230; his sniper rifle deserves some views. <em>Grade: Not the best, not thw worst.</em></p>
<p style="text-align:left;">We do feel sometimes the need of using <strong><em>Dr. Strange, Ghost Rider, Moonknight </em></strong>or <strong><em>Colossus</em></strong> right? Hahaha&#8230; among all the mentioned, who&#8217;s your favorite???</p>
<p style="text-align:center;"><em><img class="aligncenter size-full wp-image-176" title="MUA2 3" src="http://charlesryderblog.wordpress.com/files/2009/11/mua2-3.jpg" alt="MUA2 3" width="450" height="253" />  </em></p>
<p style="text-align:left;"><em>PD: Sorry for writing such a long entrance&#8230;</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Inspiration]]></title>
<link>http://mirrorpalace.wordpress.com/2009/11/15/inspiration/</link>
<pubDate>Sun, 15 Nov 2009 21:21:21 +0000</pubDate>
<dc:creator>Laria</dc:creator>
<guid>http://mirrorpalace.wordpress.com/2009/11/15/inspiration/</guid>
<description><![CDATA[A golden songbird plucks a rose from the Hand of Erato and warms its wings in The hazy red glow of h]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A golden songbird plucks a rose from the<br />
Hand of Erato and warms its wings in<br />
The hazy red glow of her skin. Warmed,<br />
It darts away, and drops the rose into<br />
A poet&#8217;s lap. Smiling, the poet lifts<br />
Her head and lets the words stream from her eyes.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My First Month on Mac]]></title>
<link>http://zachpeterson.net/2009/11/15/my-first-month-on-mac/</link>
<pubDate>Sun, 15 Nov 2009 16:04:02 +0000</pubDate>
<dc:creator>Zach</dc:creator>
<guid>http://zachpeterson.net/2009/11/15/my-first-month-on-mac/</guid>
<description><![CDATA[I&#8217;m currently typing this on my Linux-based netbook, but my home desktop experience is now mos]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;m currently typing this on my Linux-based netbook, but my home desktop experience is now mostly a Mac affair. I&#8217;ve really enjoyed it so far, so I thought I would talk about what programs have really made me happy with the whole experience.</p>
<p>First off, the entire setup process was super easy. With Windows and Linux, I&#8217;m used to at least two days of interface and program installation and tweaking. I simply plugged my mini in, turned it on, did my &#8220;mac dance&#8221; ritual during the opening video, went through the initial setup, and I was done in no more than ten minutes.</p>
<p>It also goes without saying how cool it is that they give you gobs of software for free with iLife. Even though the programs are not anything really special, they&#8217;re very useful and fun to use. I can&#8217;t wait to play with Garageband to eventually make a podcast.</p>
<p>With the money I saved by buying the mini on sale, I also purchased iWork. I haven&#8217;t really played with Numbers, but Keynote and Pages are great. It take a while to get used to the interface, but once you do it&#8217;s a pretty powerful office suite. Still no comparison to Microsoft Office, but still pretty darn good. It&#8217;s also nice that Helvetica is the default font is Pages. Now every paper I write looks like a Target ad.</p>
<p>I&#8217;ve also added some freeware I&#8217;ve always heard about to my Mac. Some good, and some not-so-great. First, I&#8217;ve always heard folks raving about Quicksilver, a application launcher that you use via the keyboard. This was almost my first freeware download on the Mac, and I found it fairly disappointing. I just find it quicker to get to my frequently used programs via the dock. I guess I just think more visually. I&#8217;ve never been really into keyboard shortcuts.</p>
<p>For NaNoWriMo, which I&#8217;m currently failing miseribly at, I tried several different programs. I finally settled on WriteRoom, since it has zero distractions from my writing. All it is is a black screen with green text. You simply type. Really cool. Only thing is that it&#8217;s a 30-day demo, with the full program costing $24.95. I understand paying for software that&#8217;s as good as this, but $24.95? For a black screen with green text? Give me a break. I probably won&#8217;t be purchasing this after the demo is over.</p>
<p>As for music players, it&#8217;s been kind of difficult. I&#8217;ve always hated iTunes, for either Windows or Mac, because of the almost communist nature of how it wants to control every aspect of your library and music player. So, I decided on trying Songbird. Songbird was pretty good for an open source program based off of Firefox, but it&#8217;s tragically lacking in podcasting support, and it also grabbed my entire music library and renamed every last file. Turns out automatic library management is turned on by default. Awesome idea, Songbird team! Good thing I had a backup! I have now switched back to iTunes for the moment, but I hope for something better to come along soon that allows for adding my music library that resides on my Linux server without fucking it up.</p>
<p>Other than those programs, I&#8217;ve also installed Celtx for future screenwriting, and the obligatory Firefox install.</p>
<p>Overall, my experience so far has been great. I feel that once I put more memory in this guy, it&#8217;ll be even better.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Fleetwood Mac - Rumours (2004 Remaster)]]></title>
<link>http://mikedean88.wordpress.com/2009/11/12/fleetwood-mac-rumours-2004-remaster/</link>
<pubDate>Wed, 11 Nov 2009 23:54:09 +0000</pubDate>
<dc:creator>mikedean88</dc:creator>
<guid>http://mikedean88.wordpress.com/2009/11/12/fleetwood-mac-rumours-2004-remaster/</guid>
<description><![CDATA[Classic Album - Rumours Searching for (high quality) remasters of favorite albums of mine has been a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_76" class="wp-caption alignright" style="width: 220px"><img class="size-medium wp-image-76 " title="Fleetwood Mac - Rumours" src="http://mikedean88.wordpress.com/files/2009/11/front1.jpg?w=300" alt="Fleetwood Mac - Rumours" width="210" height="210" /><p class="wp-caption-text">Classic Album - Rumours</p></div>
<p>Searching for (high quality) remasters of favorite albums of mine has been a keen interest for a couple of years now. Notable examples are &#8216;Mother&#8217;s Milk&#8217; and &#8216;Stadium Arcadium&#8217; from the Red Hot Chili Peppers, mastered by <a href="http://mobilefidelity.com/" target="_blank">Mobile Fidelity Sound Lab</a> (MFSL) and <a href="http://stevehffman.tv" target="_blank">Steve Hoffman</a> respectively. I also try and hunt down SACD and DVD-A versions of albums and have found much enjoyment listening to Donald Fagen&#8217;s &#8216;The Nightfly&#8217; and Incubus&#8217; &#8216;A Crow Left Of The Murder&#8217; on these platforms.</p>
<p><span class="currency_converter_text">So, I was very pleased to find that there was a well-respected remaster of Fleetwood Mac&#8217;s classic album &#8216;Rumours&#8217; carried out in </span><span class="currency_converter_text"><span class="currency_converter_text"><span class="currency_converter_text">2004</span></span></span><span class="currency_converter_text">. Now, you have to be careful when selecting remasters of older albums, as many will now follow the trend of &#8216;louder is better&#8217;, sacrificing audio quality and dynamic range for overall loudness through the use of hyper compression. Without going into too much detail, new albums generally follow this rule as well, which could be why I am listening to a lot of older music these days. For a visual and audible example have a look at </span><a href="http://homedir-b.libsyn.com/podcasts/6d8d666401f9ceb1c216c96b502d0de6/4afb4336/psn/images/Loudness_War.mov" target="_blank">this</a> video on <a href="http://turnmeup.org" target="_blank">Turn Me Up</a>.</p>
<p>Anyway, back to Fleetwood Mac. The original master, like many of its time, was fairly quiet and lacked definition in the bass area due to restrictions of mastering to vinyl, in my opinion of course! Having said that the recording quality and engineering skills during the mixing stage gave birth to a beautiful sounding album.</p>
<p><span class="currency_converter_text">The </span><span class="currency_converter_text"><span class="currency_converter_text"><span class="currency_converter_text">2004</span></span></span><span class="currency_converter_text"> remaster addresses the two issues I had with the original without introducing any clipping or sacrificing dynamic range. The kick drum and bass guitar are a lot more prominent in the overall mix, the acoustic guitars sound astonishingly crisp, especially in &#8216;Dreams&#8217; and &#8216;The Chain&#8217; and the vocals have a much more defined, warmer sound. Generally the album is much more pleasing to the ear, that is of course not saying that the original wasn&#8217;t, but improvements have been made.</span></p>
<p>There is also the inclusion of the song &#8216;Silver Springs&#8217; which was left out of the original vinyl master due to time constraints for each playing side. It feels a little odd going from &#8216;Songbird&#8217; to &#8216;Silver Springs&#8217; instead of &#8216;The Chain&#8217; but the song has been well placed and is a great piece of music.</p>
<p>This remaster comes with a second disc containing demo&#8217;s, outtakes and jam sessions from the making of the album. It is a great insight into what the raw tracks started out as, songs left off of the album and the talent each member of the band had. If you are a musician and wish to learn certain parts of these songs, this CD may prove useful as many elements were not recorded, leaving the basic tracks.</p>
<p>I will be listening to this version, instead of the original CD pressing from now on, purely due to the depth, transient accuracy and improved bass; it has earned a well deserved place in my remasters collection!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Song Bird - Tili Music]]></title>
<link>http://tilimusic.wordpress.com/2009/11/10/song-bird-tili-music/</link>
<pubDate>Wed, 11 Nov 2009 06:46:34 +0000</pubDate>
<dc:creator>tilireview</dc:creator>
<guid>http://tilimusic.wordpress.com/2009/11/10/song-bird-tili-music/</guid>
<description><![CDATA[Go to www.tilimusic.com/songbird to download Song Bird’s new single “Get Krunk”]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/jrub2rjSgtE&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=1' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/jrub2rjSgtE&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=1' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span><br />
Go to <a href="http://tilimusic.com/songbird">www.tilimusic.com/songbird</a> to download Song Bird’s new single “Get Krunk”</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Songbird não inicia - Could not initialize GStreamer]]></title>
<link>http://carlrobers.wordpress.com/2009/11/10/songbird-nao-inicia/</link>
<pubDate>Wed, 11 Nov 2009 01:23:50 +0000</pubDate>
<dc:creator>carlrobers</dc:creator>
<guid>http://carlrobers.wordpress.com/2009/11/10/songbird-nao-inicia/</guid>
<description><![CDATA[Se seu player Songbird não inicia e apresenta uma mensagem como esta quando você tenta iniciá-lo pel]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="text-align:justify;">Se seu player Songbird não inicia e apresenta uma mensagem como esta quando você tenta iniciá-lo pelo terminal:</div>
<blockquote><p><span style="font-family:Courier New;">Could not initialize GStreamer: Erro na varredura do registro , child terminated by signal</span></p></blockquote>
<p>A solução está a dois comandos de você; Abra um terminal e faça o seguinte:</p>
<blockquote><p><span style="font-family:Courier New;">robersonfox@ubuntu:~$ sudo apt-get remove libvisual-0.4-plugins</span></p></blockquote>
<div style="text-align:justify;">Lembre-se que &#8220;<span style="font-style:italic;">robersonfox@ubuntu:~$</span>&#8221; é o nome do prompt no meu terminal, você não deve escrevê-lo.<br />
Em seguida localize-o em sua instalação, nos sistemas baseados no Debian ele fica em /usr/share/Songbird, passe o comando abaixo para ir até o subdiretório lib do diretório do Songbird.</div>
<blockquote><p><span style="font-family:Courier New;">robersonfox@ubuntu:~$ cd /usr/share/Songbird/lib</span></p></blockquote>
<div style="text-align:justify;">em seguida você deverá remover todos os arquivos com nome iniciado com libgs, você faz isto com o comando abaixo:</div>
<blockquote><p><span style="font-family:Courier New;">robersonfox@ubuntu:~$ sudo rm libgs*</span></p></blockquote>
<p>Com este comando você estará apagando os arquivos abaixo</p>
<table width="100%">
<tbody>
<tr>
<td style="color:#333333;">libgstaudio-0.10.so<br />
libgstbase-0.10.so<br />
libgstcdda-0.10.so<br />
libgstcontroller-0.10.so<br />
libgstdataprotocol-0.10.so<br />
libgstfft-0.10.so</td>
<td style="color:#333333;">libgstinterfaces-0.10.so<br />
libgstnet-0.10.so<br />
libgstnetbuffer-0.10.so<br />
libgstpbutils-0.10.so<br />
libgstreamer-0.10.so<br />
libgstriff-0.10.so</td>
<td style="color:#333333;">libgstrtp-0.10.so<br />
libgstrtsp-0.10.so<br />
libgstsdp-0.10.so<br />
libgsttag-0.10.so<br />
libgstvideo-0.10.so</td>
</tr>
</tbody>
</table>
<div style="text-align:justify;">Agora, caso você não queira fazer isto usando um terminal, veja abaixo como fazer este mesmo processo usando uma interface gráfica:Pressione a tecla ALT e F2 simultaneamente, um dialogo de execução abrir-se-a, escreva nele: gksu nautilus /usr/share/Songbird/lib<br />
quando um dialogo de autorização surgir, informe sua senha, então o Nautilus será carregado, note que você já está dentro do diretório /usr/share/Songbird/lib, caso o diretório não exista, você terá uma mensagem de erro e cairá dentro do diretório Home do root, por isto, procure antes saber o diretório onde se encontra o Songbird.</p>
</div>
<p style="text-align:center;"><a href="http://carlrobers.files.wordpress.com/2009/11/captura_de_tela.jpg" target="_blank"><img class="aligncenter" style="border:0 none;margin:1px;" src="http://carlrobers.files.wordpress.com/2009/11/captura_de_tela.jpg?w=425" alt="" width="425" /></a></p>
<div style="text-align:justify;">Ainda no Nautilus pressione as teclas CTRL e F para iniciar uma pesquisa, escreva libgs no campo de pesquisa e pressione enter, em seguida selecione os arquivos que surgem e apague-os com a tecla delete do seu teclado após isto feche a janela.</div>
<div style="text-align:center;"><img style="max-width:800px;" src="http://carlrobers.files.wordpress.com/2009/11/captura_de_tela-gerenciador-de-pacotes-synaptic-1.jpg" alt="" /></div>
<div style="text-align:justify;">Agora falta somente uma parte, remover o <span style="font-family:Courier New;">libvisual-0.4-plugins,</span><br />
para isto faça o seguinte: Abra o Synaptic em Sistema &#62;&#62; Administração &#62;&#62; Synaptic, pressione CTRL e F e escreva libvisual-0.4-plugins, este comando pedirá para o Synaptic filtrar os pacotes instalados no seu sistema, escolha o libvisual-0.4-plugins, clique com o botão direito do mouse sobre ele e solicite a remoção, como mostrado na imagem acima, em seguida Clique em aplicar e você verá uma janela intitulada Resumo, nela pressione Aplicar, informe sua senha e após o processo você terá removido a biblioteca conflitante.</p>
<p style="text-align:center;"><a href="http://carlrobers.files.wordpress.com/2009/11/captura_de_tela-gerenciador-de-pacotes-synaptic.jpg" target="_blank"><img class="aligncenter" style="border:0 none;margin:1px;" src="http://carlrobers.files.wordpress.com/2009/11/captura_de_tela-gerenciador-de-pacotes-synaptic.jpg" alt="" width="425" /></a></p>
<p>Abra seu Songbird e enjoy.</p>
<p style="text-align:center;"><a href="http://carlrobers.files.wordpress.com/2009/11/robersonfox-songbird.jpg" target="_blank"><img class="aligncenter" style="border:0 none;margin:1px;" src="http://carlrobers.files.wordpress.com/2009/11/robersonfox-songbird.jpg" alt="" width="425" /></a></p>
</div>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=b396169b-fc39-8f58-bfba-6df930f55478" alt="" /></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Songbird 1.2.0 Installer]]></title>
<link>http://unter-hund.com/2009/11/08/songbird-1-2-0-installer/</link>
<pubDate>Sun, 08 Nov 2009 23:46:52 +0000</pubDate>
<dc:creator>Erich</dc:creator>
<guid>http://unter-hund.com/2009/11/08/songbird-1-2-0-installer/</guid>
<description><![CDATA[GO HERE FOR SONGBIRD INSTALLER (REDIRECT TO SKYZIM.COM)]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-577" title="jukebox-sb" src="http://unterhund.wordpress.com/files/2009/11/jukebox.png" alt="jukebox-sb" width="291" height="309" /></p>
<p style="text-align:center;"><a title="Songbird 1.2.0 Installer" href="http://skyzim.com/?p=576" target="_self">GO HERE FOR SONGBIRD INSTALLER</a> (REDIRECT TO SKYZIM.COM)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Jag vann och Laura slutar]]></title>
<link>http://schwadegan.wordpress.com/2009/11/06/jag-vann-och-laura-slutar/</link>
<pubDate>Fri, 06 Nov 2009 20:46:28 +0000</pubDate>
<dc:creator>Schwadegan</dc:creator>
<guid>http://schwadegan.wordpress.com/2009/11/06/jag-vann-och-laura-slutar/</guid>
<description><![CDATA[Yippie! Min Songbirdvideo vann både First Place och the Fan Favorite Award! Hur gött som helst! Någo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone" title=" " src="http://addons.songbirdnest.com/addon-images/7669/laura_0001_large.png" alt="" width="720" height="448" /></p>
<p>Yippie! Min <a href="http://blog.songbirdnest.com/2009/11/05/weekly-birdbath-23/">Songbirdvideo</a> vann både<em> </em><em>First Place</em> och <em>the Fan Favorite Award</em>! Hur gött som helst!<br />
Något mindre roligt är att community managern Laura har bestämt sig för att börja jobba hos <a href="http://www.yola.com/">Yola.com</a> istället, lite synd eftersom hennes <a href="http://blog.songbirdnest.com/tag/weekly-birdbath/">birdbaths</a> var väldigt underhållande läsning i veckosluten. Men säg det som varar för evigt?</p>
<p>Har länge haft ett halvfärdigt Songbird-tema liggande i en mapp, nu kom tillfället att göra klart det. Då Laura skulle sluta tyckte jag att det passade sig att tillägna dess namn till henne.</p>
<p>Tycker ni att det varit dåligt med inlägg i dagarna två beror det på att jag har haft två prov som behövde pluggas till. Inte för att det hjälpte, men ändå.<br />
<span style="color:#888888;"><br />
Nu sitter jag här och lyssnar på <a href="http://www.lastfm.se/music/Lynyrd+Skynyrd">Lynyrd Skynyrd</a></span><br />
<img class="alignnone size-full wp-image-146" title="Lenny" src="http://schwadegan.wordpress.com/files/2009/10/lenny.png" alt="Lenny" width="140" height="90" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mellow Yellow]]></title>
<link>http://swatchbook.wordpress.com/2009/11/02/mellow-yellow-2/</link>
<pubDate>Mon, 02 Nov 2009 12:00:50 +0000</pubDate>
<dc:creator>moe</dc:creator>
<guid>http://swatchbook.wordpress.com/2009/11/02/mellow-yellow-2/</guid>
<description><![CDATA[Oh, I love this chair. I do have a fondness for out-there upholstery (remember this beauty?), but so]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="size-full wp-image-1129 aligncenter" title="Songbird yellow chair" src="http://swatchbook.wordpress.com/files/2009/11/daily-yellow-chair.jpg" alt="Songbird yellow chair" width="441" height="462" /></p>
<p>Oh, I love this chair. I do have a fondness for out-there upholstery (remember <a href="http://swatchbook.wordpress.com/2009/08/06/tangerine-dreams/" target="_blank">this</a> beauty?), but something about the lemony yellow makes me smile. Plus, I think yellow&#8217;s a great color to transition from summer to fall &#8211; just pair it with those autumn oranges and browns <a href="http://swatchbook.wordpress.com/2009/10/23/fall-for-autumn/" target="_blank">we like</a> and it doesn&#8217;t feel too sunny. <em>(-Moe)</em></p>
<p><a href="http://shop.arhaus.com/carty/?r=0&#38;c=Songbird%20Collection&#38;w=SOFAS_AND_LOVESEATS" target="_blank">Songbird Yellow Chair,</a> $1,599, at Arhaus.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[8 cool Songbird addons you must try today]]></title>
<link>http://sinaisix.wordpress.com/2009/10/30/8-cool-songbird-addons-you-must-try-today/</link>
<pubDate>Fri, 30 Oct 2009 19:08:00 +0000</pubDate>
<dc:creator>Ghabuntu</dc:creator>
<guid>http://sinaisix.wordpress.com/2009/10/30/8-cool-songbird-addons-you-must-try-today/</guid>
<description><![CDATA[Songbird, the cross platform, open source media player, is to multimedia what Firefox is to browsers]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="font-family:Verdana,sans-serif;"><a href="http://getsongbird.com/" target="_&#34;blank&#34;">Songbird,</a> the cross platform, <a href="http://en.wikipedia.org/wiki/Open%20source" id="aptureLink_TdSFFIpfHE">open source</a> media player, is to multimedia what <a href="http://www.youtube.com/watch?v=k5Zbc-Rg6e8" id="aptureLink_vMC1eHBcHk">Firefox</a> is to browsers.&#160; If you already do not have it installed on your system, <a href="http://download.songbirdnest.com/installer/windows/i686-msvc8/Songbird_1.2.0-1146_windows-i686-msvc8.exe" id="aptureLink_GWQucqeHwA">please do so now</a> before you continue reading. Ubuntu users can follow the steps <a href="http://www.ubuntugeek.com/install-songbird-music-player-in-ubuntu.html" id="aptureLink_Korf5ZvFSc">here</a>. Windows users can just do the usual double clicking on the .exe file.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">Songbird is packed with awesome features that makes it a real must have app on your box. There are <a href="http://www.ghabuntu.com/2009/10/10-things-songbird-does-that-itunes.html" id="aptureLink_ay6zC4XNXz">certain things that it can do</a> which the popular iTunes cannot. The best part of <a href="http://www.youtube.com/watch?v=0KJgBkreAuw" id="aptureLink_V2OuGTBdmQ">Songbird</a> is that you can extensively customize it with the hundreds of addons available to you. Lets take a look at 8 of such addons that you really need to try on your Songbird.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/1204" id="aptureLink_l2tMfbPt8F">Livetweeter</a></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><span id="intelliTxt">LiveTweeter for Songbird helps you tweet your tunes. It allows you to post what you are listening on both Twitter and MSN Messenger/Windows Live Messenger. Tweet your tunes with ease with LiveTweeter for Songbird. The&#160; LiveTweeter addon is cross-platform and it works on Mac OS X, Windows and Linux.</span></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/10" id="aptureLink_bmo5OnQk2f">Wikipedia Extension</a><span id="intelliTxt"> </span></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><span id="intelliTxt">Learn more about the artist currently playing from Wikipedia. The information is </span>displayed in the bottom content pane by default. More knowledge of your artist as you enjoy their work.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/12" id="aptureLink_EZ4og9KuAG">iPod Device</a> </div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">This time around you can enjoy your Apple toy on your PC without hassle or iTunes. Play your iPod from Songbird and synchronize it with your Songbird library using the iPod device Songbird extension. This extension will mount your iPod in Songbird, allowing you to play songs from your iPod library and playlists. This extension also allows you to copy songs to your iPod or synchronize your iPod from your Songbird library.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/9" id="aptureLink_fik6seNi8R">iTunes Import</a> </div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">This extension simply imports your iTunes library into Songbird. </div>
<div style="font-family:Verdana,sans-serif;">The iTunes Library Importer functionality is built into Songbird 0.7 and later. You can find it in the preferences under &#8220;iTunes Importer.&#8221; Simply install the iTunes library importer Songbird extension from the Tools/Add-ons menu, and you&#8217;ll be able to import your iTunes music library into Songbird using the &#8220;File/Import a Library&#8230;&#8221; menu item.</div>
<div style="font-family:Verdana,sans-serif;"><span style="color:red;font-size:small;"><b>Caveat</b></span>:</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">The iTunes importer may be used on Linux to import an iTunes library from Mac or Windows. However, the file paths in the iTunes library file must be modified first. For example, a global change such as changing &#8220;D:&#8221; to &#8220;mnt/data&#8221; would allow an import of files that were stored on a Windows &#8220;D:&#8221; drive and mounted on a Linux &#8220;/mnt/data&#8221; drive.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/23" id="aptureLink_kgA9rMB9UE">Quicktime Playback&#160;</a></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">Simple. Playback M4P files you purchased from the iTunes Music Store. Must have.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/118" id="aptureLink_wa3iCCT0it">Customize Google</a></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">This is an addon that works on both Songbird and Firefox. CustomizeGoogle adds links to other search engines and services like social bookmarking websites, removes ads, lets you &#8220;scroll infinitely&#8221; through search results, make Google services more secure with https://, and other additions that make Google services better.</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/1513" id="aptureLink_1aWRwoYIOI">Firetorrent&#160;</a></div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">This addon defines bittorrent made easy. It&#8217;s an extension that allows you to download torrents in Songbird (please check if using bittorrent is legal in your locality before using).</div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;"><a href="http://addons.songbirdnest.com/addon/1230" id="aptureLink_JvcHUHx2dY">LyricMaster</a> </div>
<div style="font-family:Verdana,sans-serif;"></div>
<div style="font-family:Verdana,sans-serif;">Do you like to be reading the lyrics of your song while it&#8217;s playing? Then LyricMaster is your answer. It does among other things</div>
<ul style="font-family:Verdana,sans-serif;">
<li>Displays an icon next to the track in the library if the track has lyrics.</li>
<li>Displays the lyrics a song has embedded through metadata.</li>
<li>Fetch the lyrics if the song contains no lyric metadata.</li>
<li>Allows you to edit the lyrics a song contains.</li>
</ul>
<div style="font-family:Verdana,sans-serif;">These are what I think are some cool addons you should give a try today. There are <a href="http://addons.songbirdnest.com/" id="aptureLink_ZX4oIdnV3O">hundreds available</a> that you can try to find your best fit. I would really appreciate it if you share your own list with me.</p>
<div style="font-family:Verdana,sans-serif;"><a href="http://sinaisix.etvcorp.hop.clickbank.net/" id="aptureLink_yczECH40b6">BTW&#160; did you know you can watch thousands of satellite channels for free on your computer without any subscription or satellite dish?<br /></a></div>
<h1 class="title" style="font-family:Verdana,sans-serif;"></h1>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Our Hearts Are With Taylor's Family and Friends..]]></title>
<link>http://4squirrels.wordpress.com/2009/10/28/our-hearts-are-with-taylors-family-and-friends/</link>
<pubDate>Wed, 28 Oct 2009 18:12:00 +0000</pubDate>
<dc:creator>4squirrels</dc:creator>
<guid>http://4squirrels.wordpress.com/2009/10/28/our-hearts-are-with-taylors-family-and-friends/</guid>
<description><![CDATA[Information has just hit the news that Sunday&#8217;s house concert performer, Taylor Mitchell, has ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Information has just hit the news that Sunday&#8217;s house concert performer, Taylor Mitchell, has died.  She was the victim of a coyote attack while hiking yesterday in the Cape Breton Highlands.</p>
<p>Steve and I are sending every thought and ounce of healing energy we have to her family, management, and friends at this very devastating loss.  Taylor was excited to have two days off after our concert, and was thrilled at the thought of hiking in Cape Breton.</p>
<p>Taylor was in our home fewer than two days, but while here she blended in like she was one of our own.  Steve and I would have had her stay forever, we liked her that well.  We cannot imagine the depth of the loss those who love her are feeling.</p>
<p>The house concert went off without a hitch for those of you who are wondering.  Except for our two year old constantly wanting to get on stage with her &#8211; which she took in stride.  Her poor fingers were blistered from playing guitar so much &#8211; but she weathered on like a trooper, played flawlessly, and sang like the songbird she was.</p>
<p>Her songs are touching and personal, and were delivered with clarity of voice and spirit.  We are so fortunate to have experienced this, and consider it a gift to have had the pleasure of her company.</p>
<p>~Maureen and Steve~</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How did you get away? by Rumi]]></title>
<link>http://dilkibaatein.wordpress.com/2009/10/26/how-did-you-get-away-by-rumi/</link>
<pubDate>Mon, 26 Oct 2009 04:35:28 +0000</pubDate>
<dc:creator>Ariful Haque Bhuiyan</dc:creator>
<guid>http://dilkibaatein.wordpress.com/2009/10/26/how-did-you-get-away-by-rumi/</guid>
<description><![CDATA[How did you get away? You were the pet falcon of an old woman. Did you hear the falcon-drum? You wer]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>How did you get away?<br />
You were the pet falcon of an old woman.<br />
Did you hear the falcon-drum?<br />
You were a drunken songbird put in with owls.<br />
Did you smell the odor of a garden?<br />
You got tired of sour fermenting<br />
and left the tavern.</p>
<p>You went like an arrow to the target<br />
from the bow of time and place.<br />
The man who stays at the cemetery pointed the way,<br />
but you didn&#8217;t go.<br />
You became light and gave up wanting to be famous.<br />
You don&#8217;t worry about what you&#8217;re going to eat,<br />
so why buy an engraved belt?</p>
<p>I&#8217;ve heard of living at the center, but what about<br />
leaving the center of the center?<br />
Flying toward thankfulness, you become<br />
the rare bird with one wing made of fear,<br />
and one of hope. In autumn,<br />
a rose crawling along the ground in the cold wind.<br />
Rain on the roof runs down and out by the spout<br />
as fast as it can.</p>
<p>Talking is pain. Lie down and rest,<br />
now that you&#8217;ve found a friend to be with.</p>
<p><strong>Book: </strong><span style="font-size:x-small;">&#8220;<a href="http://www.amazon.com/exec/obidos/ASIN/0914278509/greecethracemi0e/">These                Branching Moments</a>&#8220;<br />
</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Förhandstitt; SoundBite till Songbird]]></title>
<link>http://schwadegan.wordpress.com/2009/10/23/soundbite-till-songbird/</link>
<pubDate>Fri, 23 Oct 2009 19:05:36 +0000</pubDate>
<dc:creator>Schwadegan</dc:creator>
<guid>http://schwadegan.wordpress.com/2009/10/23/soundbite-till-songbird/</guid>
<description><![CDATA[SoundBite är ett add-on till Songbird under utveckling av Steve Lloyd som använder särskilda algorit]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/BXLAjFA3Vo4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/BXLAjFA3Vo4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>SoundBite är ett add-on till Songbird under utveckling av Steve Lloyd som använder särskilda algoritmer för att avgöra likheten mellan olika spår i biblioteket och på så sätt skapa ett interaktivt sätt att lyssna på musik, skapa spellistor etc. Istället för att begränsa sig till en metatagg med &#8220;genre&#8221; som mediaspelare idag gör kommer kombinationen Songbird/SoundBite hitta rätt genom att faktiskt lyssna sig till om det finns likheter eller inte. Den musik som matchar kommer sedan att visas med ett system som närmast kan beskrivas som ett spindelnät, se videon ovan för en tydligare förklaring.</p>
<p>När SoundBite luskat reda på vilka spår som är snarlika kan du enkelt skapa en spellista eller helt enkelt bara lyssna på resultaten direkt och för varje spår du väljer att inkludera kommer applikationen utöka antalet grannar ytterligare ett steg. Inställningar som att till exempel begränsa endast en artist/spellista är inte heller något problem</p>
<blockquote><p>You might even find songs you didn&#8217;t realize you owned.</p></blockquote>
<p>SoundBite finns ännu inte tillgängligt för nedladdning eftersom det fortfarande är under utveckling och antagligen kommer att vara det ett tag till. Jag har pratat med Steve Lloyd och blivit lovad ett exklusivt förhandstest så snart som han känner sig redo att demonstrera sin skapelse, vilket borde vara någon gång de kommande veckorna.</p>
<p><span style="color:#888888;">De som läst min blogg sedan tidigare vet att Songbird är ett open source projekt vilket närmast kan liknas som en sammanslagning av Firefox och iTunes. Känner du inte till Songbird föreslår jag att du tar dej <a href="http://getsongbird.com/">en sväng inom deras hemsida.</a></span></p>
<p><span style="color:#888888;"><br />
</span></p>
<p><img class="alignnone size-full wp-image-146" title="Lenny" src="http://schwadegan.wordpress.com/files/2009/10/lenny.png" alt="Lenny" width="140" height="90" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Songbird Demo Video Contest]]></title>
<link>http://schwadegan.wordpress.com/2009/10/22/songbird-demo-video-contest/</link>
<pubDate>Thu, 22 Oct 2009 21:14:00 +0000</pubDate>
<dc:creator>Schwadegan</dc:creator>
<guid>http://schwadegan.wordpress.com/2009/10/22/songbird-demo-video-contest/</guid>
<description><![CDATA[Detta är då slutresultatet av dagens arbete i Sony vegas och Photoshop (cs4) till Songbirdtävlingen.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Sl5nsQX2BLA&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/Sl5nsQX2BLA&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Detta är då slutresultatet av dagens arbete i Sony vegas och Photoshop (cs4) till <a href="http://blog.songbirdnest.com/2009/09/08/weekly-birdbath-16/">Songbirdtävlingen</a>. Blev ganska nöjd faktiskt, och dessutom är det bara två andra som lagt upp sina bidrag så för tillfället är jag garanterad <em>minst </em>en Songbird <a href="http://getsongbird.com/store/">t-shirt</a> i min samling. Fast det lär väl komma några till innan slutdatumet. Hoppas att jag står pall för konkurrensen i så fall.</p>
<p><img class="alignnone size-full wp-image-146" title="Lenny" src="http://schwadegan.wordpress.com/files/2009/10/lenny.png" alt="Lenny" width="140" height="90" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Polar Rose, Songbird och en gnutta House]]></title>
<link>http://schwadegan.wordpress.com/2009/10/22/polar-rose-songbird-och-en-gnutta-house/</link>
<pubDate>Thu, 22 Oct 2009 13:53:15 +0000</pubDate>
<dc:creator>Schwadegan</dc:creator>
<guid>http://schwadegan.wordpress.com/2009/10/22/polar-rose-songbird-och-en-gnutta-house/</guid>
<description><![CDATA[Det har varit full rulle de senaste två dagarna så jag har inte hunnit skriva något, det kompenserar]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em><span style="color:#888888;">Det har varit full rulle de senaste två dagarna så jag har inte hunnit skriva något,<br />
det kompenserar jag för nu istället!</span></em></p>
<p><img class="alignnone" title=" " src="http://farm1.static.flickr.com/121/304621185_00fd7f7483_o.jpg" alt="" width="352" height="264" /><img class="alignnone" title=" " src="http://farm3.static.flickr.com/2024/2074150935_daae1e80c8.jpg" alt="" width="353" height="264" /><br />
I tisdags var jag på en föreläsning av Jan Erik Solem om hans projekt/företag <a href="http://www.polarrose.com/">Polar Rose</a> som jobbar med igenkänningsalgoritmer inom två och tredimensionella bilder. Först berättade han lite om sin utbildning och hur han blivit intresserad av att jobba inom ämnet, sedan demonstrerade han de grundläggande principerna var på allting var uppbyggt. Väldigt häftigt att få se hur programmet jobbade med olika färgkoder för att avgöra om två objekt liknade varandra. Hans vision var att istället för att som nu låta söktjänsterna crawla siter efter attribut taggar så ska alla användare själva lägga till sig själva och vänner till databasen där man snabbt ska kunna hitta relevanta träffar. Därifrån ska tekniken utvecklas så att de som vill kan få sin porträtt automatiskt taggade med hjälp av de som redan finns i databasen som utgångspunkt.<br />
Det var inspirerande att höra på vad Jan hade att säga, och att få se att det faktiskt finns företag som Polar Rose i Sverige som faktiskt redan har och vill expandera med nyskapande teknik utanför rikets gränser. Hela konceptet känns väldigt osvenskt (i positiv mening) och jag skulle utan tvekan vara beredd att jobba för ett så visionärt företag som Polar Rose.</p>
<p>Igår hade jag fullt sjå med att göra klart mitt visnings klipp till Songbird (vars ledningsstil till liknar Polar Rose, bortsett från open-source aspekten och den faktiska produkten), Sony vegas har gått på högvarv och medan klippen renderades hann jag till och med att installera CS4 på datorn. Yippie!<br />
Ska ordna med intro/outro bilder i photoshop sen lägga till ljudspåren (Lights &#8211; Lions! och min egen ljuva stämma&#8230;) sen är det klart! Hinner jag idag ska jag börja på <a href="http://addons.songbirdnest.com/search?query=schwadegan">en fjärde fjäder</a> alternativ fixa lite på <a href="http://addons.songbirdnest.com/addon/1231">Sparkle</a>.</p>
<p><span style="color:#888888;">Får ju inte heller glömma nämna att tisdagens avsnitt av House var vansinnigt bra!</span></p>
<p><img class="alignnone size-full wp-image-146" title="Lenny" src="http://schwadegan.wordpress.com/files/2009/10/lenny.png" alt="Lenny" width="140" height="90" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Songbird, muy parecido a iTunes pero de codigo abierto]]></title>
<link>http://mgsanchezs.wordpress.com/2009/10/21/songbird-muy-parecido-a-itunes-pero-de-codigo-abierto/</link>
<pubDate>Thu, 22 Oct 2009 00:44:37 +0000</pubDate>
<dc:creator>MgsanchezS</dc:creator>
<guid>http://mgsanchezs.wordpress.com/2009/10/21/songbird-muy-parecido-a-itunes-pero-de-codigo-abierto/</guid>
<description><![CDATA[Songbird es un reproductor de musica personalizable de &#8220;código abierto&#8221; que está bajo de]]></description>
<content:encoded><![CDATA[Songbird es un reproductor de musica personalizable de &#8220;código abierto&#8221; que está bajo de]]></content:encoded>
</item>
<item>
<title><![CDATA[Giudizi sui player audio in ambito Linux (Ottobe 2009)]]></title>
<link>http://slaykristian.wordpress.com/2009/10/21/giudizi-sui-player-audio-in-ambito-linux-ottobe-2009/</link>
<pubDate>Wed, 21 Oct 2009 14:31:58 +0000</pubDate>
<dc:creator>slaykristian</dc:creator>
<guid>http://slaykristian.wordpress.com/2009/10/21/giudizi-sui-player-audio-in-ambito-linux-ottobe-2009/</guid>
<description><![CDATA[Ascoltare la musica sulla propria distro è una cosa penso condivisa da tutti gli amanti del pinguino]]></description>
<content:encoded><![CDATA[Ascoltare la musica sulla propria distro è una cosa penso condivisa da tutti gli amanti del pinguino]]></content:encoded>
</item>

</channel>
</rss>
