n/oldblog
n
/
oldblog
Archived
1
0
Fork 0

initial import

This commit is contained in:
n 2023-04-30 21:28:42 +02:00
commit 409f2a224c
Signed by: n
GPG Key ID: 510227DD6C502CE3
3062 changed files with 261368 additions and 0 deletions

40
.htaccess Normal file
View File

@ -0,0 +1,40 @@
RewriteEngine On
# Hint by jdMorgan (http://www.webmasterworld.com/forum92/2100.htm)
#
# If requested resource does not exist as a file
#RewriteCond %{REQUEST_FILENAME} !-f
# and does not end with a period followed by a filetype
#RewriteCond %{REQUEST_URI} !\..+$
# and does not end with a slash
#RewriteCond %{REQUEST_URI} !/$
# then add a trailing slash and redirect
#RewriteRule (.*) http://tourmentine.com/$1/ [R=301,L]
# My own rules...
RewriteRule ^ip$ /ip.php [L]
RewriteRule ^news$ http://tourmentine.com/news/ [R=301,L]
RewriteRule ^webnews$ http://tourmentine.com/news/ [R=301,L]
RewriteRule ^dazibaweb$ http://tourmentine.com/news/ [R=301,L]
RewriteRule ^lechat$ http://tourmentine.com/lechat/ [R=301,L]
RewriteRule ^news/$ ?page=news/index [L]
RewriteRule ^webnews/$ ?page=news/index [L]
RewriteRule ^dazibaweb/$ ?page=news/index [L]
RewriteRule ^lechat/$ ?page=lechat/index [L]
RewriteRule ^theme.(.*).html$ /settheme.php?theme=$1
RewriteRule ^billet\.([0-9]+\.([a-z][a-z])\.html)$ /?modulepage=commentnews&idnews=$1&lang=$2 [L]
RewriteRule ^billet\.([0-9]+)\.html$ /?modulepage=commentnews&idnews=$1 [L]
RewriteRule ^comment\.([0-9]+)\.([0-9]+)\.([a-z][a-z])\.html$ /?modulepage=commentnews&idnews=$1&indexmsg=$2&lang=$3 [L]
RewriteRule ^comment\.([0-9]+)\.([0-9]+)\.html$ /?modulepage=commentnews&idnews=$1&indexmsg=$2 [L]
RewriteRule ^scripts/(.*).js$ modules/$1.js.php
#RewriteRule ^([^/]+)/(.*)\.([a-z][a-z])\.html$ ?page=$1/$2&lang=$3 [L]
#RewriteRule ^(.*)\.[a-z][a-z]\.html ?page=$1&lang=$2 [L]
#RewriteRule ^([^/]+)/(.*)\.([fr|en|es])\.html$ ?page=$1/$2&lang=$3 [L]
#RewriteRule ^(.*)\.[fr|en|es]\.html$ ?page=$1&lang=$2 [L]
RewriteRule ^(.*)\.fr\.html$ ?page=$1&lang=fr [L]
RewriteRule ^(.*)\.en\.html$ ?page=$1&lang=en [L]
RewriteRule ^(.*)\.es\.html$ ?page=$1&lang=es [L]
RewriteRule ^(.*)\.html$ ?page=$1 [C,E=WasHTML:yes]

1
.htpasswd Normal file
View File

@ -0,0 +1 @@
root:QbRVRk5T8P7C2

58
401.php Normal file
View File

@ -0,0 +1,58 @@
<?php
include_once "include/lang.inc.php";
if ($lang == "fr")
{
$error_code = "Erreur 401";
$error_label = "Accès refusé";
$error_message = "Vous n'avez pas l'authorisation d'entrer.";
$return_to_menu = "<br />Cliquez <a href='/'>ici</a> pour revenir à la page d'accueil...";
$titre = "Services";
$FileName = "modules/liens/liensdirects.csv";
}
else
{
$error_code = "401 Error";
$error_label = "Unauthorized access attempt";
$error_message = "You are not allowed to enter.!";
$return_to_menu = "<br />Click <a href='/'>here</a> to go back to homepage...";
$titre = "Local links";
$FileName = "modules/liens/liensdirects.en.csv";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo $error_code; ?></title>
<link rel='stylesheet' href='/css/minimal.css' type='text/css' media="screen" title="minimal" />
</head>
<body>
<table>
<tr>
<td align='left'><img src='/images/tourmentine.gif' alt='' /></td>
<td align='center'>
<h2><font color='red'><?php echo $error_code." - ".$error_label; ?></font></h2>
<br /><?php echo $error_message; ?>
<br /><?php echo $return_to_menu; ?>
</td>
<td align='right'>
<?php
//include "include/head.inc.php";
include "include/theme.inc.php";
include "themes/default/theme.php";
$bodyclass="magicbox";
$module = "liens";
//$titre = "Services";
$headlien = "/";
// $TypeListe = "deroul";
//$FileName = "modules/liens/liensdirects.csv";
include "modules/magicbox.php";
?>
</td>
</tr>
</table>
<?php // include "footer.php" ?>
</body>
</html>

58
403.php Normal file
View File

@ -0,0 +1,58 @@
<?php
include_once "include/lang.inc.php";
if ($lang == "fr")
{
$error_code = "Erreur 403";
$error_label = "Accès refusé";
$error_message = "Vous n'avez pas accès à cette partie du site !";
$return_to_menu = "<br />Cliquez <a href='/'>ici</a> pour revenir à la page d'accueil...";
$titre = "Services";
$FileName = "modules/liens/liensdirects.csv";
}
else
{
$error_code = "403 Error";
$error_label = "Forbidden access";
$error_message = "You don't have permission to access this part of the site!";
$return_to_menu = "<br />Click <a href='/'>here</a> to go back to homepage...";
$titre = "Local links";
$FileName = "modules/liens/liensdirects.en.csv";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo $error_code; ?></title>
<link rel='stylesheet' href='/css/minimal.css' type='text/css' media="screen" title="minimal" />
</head>
<body>
<table>
<tr>
<td align='left'><img src='/images/tourmentine.gif' alt='' /></td>
<td align='center'>
<h2><font color='red'><?php echo $error_code." - ".$error_label; ?></font></h2>
<br /><?php echo $error_message; ?>
<br /><?php echo $return_to_menu; ?>
</td>
<td align='right'>
<?php
//include "include/head.inc.php";
include "include/theme.inc.php";
include "themes/default/theme.php";
$bodyclass="magicbox";
$module = "liens";
//$titre = "Services";
$headlien = "/";
// $TypeListe = "deroul";
//$FileName = "modules/liens/liensdirects.csv";
include "modules/magicbox.php";
?>
</td>
</tr>
</table>
<?php // include "footer.php" ?>
</body>
</html>

36
404.en.php Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>404 Error</title>
<link rel='stylesheet' href='/css/minimal.css' type='text/css' media="screen" title="minimal" />
</head>
<body>
<table>
<tr>
<td align='left'><img src='/images/tourmentine.gif' alt='' /></td>
<td align='center'>
<h2><font color='red'>Erreur 404 - Fichier non trouvé</font></h2>
<br />Le fichier demandé n'à pas été trouvé !
<br />Cliquez <a href="/">ici</a> pour revenir à la page d'accueil...
</td>
<td align='right'>
<?php
include "include/theme.inc.php";
include "themes/default/theme.php";
$bodyclass="magicbox";
$module = "liens";
$titre = "Services";
$headlien = "/";
// $TypeListe = "deroul";
$FileName = "modules/liens/liensdirects.csv";
include "modules/magicbox.php";
?>
</td>
</tr>
</table>
<?php // include "footer.php" ?>
</body>
</html>

58
404.php Normal file
View File

@ -0,0 +1,58 @@
<?php
include_once "include/lang.inc.php";
if ($lang == "fr")
{
$error_404 = "Erreur 404";
$file_not_found = "Fichier non trouvé";
$error_message = "Le fichier demandé n'a pas été trouvé !";
$return_to_menu = "<br />Cliquez <a href='/'>ici</a> pour revenir à la page d'accueil...";
$titre = "Services";
$FileName = "modules/liens/liensdirects.csv";
}
else
{
$error_404 = "404 Error";
$file_not_found = "File not found";
$error_message = "Requested file not found!";
$return_to_menu = "<br />Click <a href='/'>here</a> to go back to homepage...";
$titre = "Local links";
$FileName = "modules/liens/liensdirects.en.csv";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo $error_404; ?></title>
<link rel='stylesheet' href='/css/minimal.css' type='text/css' media="screen" title="minimal" />
<meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1' />
</head>
<body>
<table>
<tr>
<td align='left'><img src='/images/tourmentine.gif' alt='' /></td>
<td align='center'>
<h2><font color='red'><?php echo $error_404." - ".$file_not_found; ?></font></h2>
<br /><?php echo $error_message; ?>
<br /><?php echo $return_to_menu; ?>
</td>
<td align='right'>
<?php
include "include/theme.inc.php";
include "themes/default/theme.php";
$bodyclass="magicbox";
$module = "liens";
//$titre = "Services";
$headlien = "/";
// $TypeListe = "deroul";
//$FileName = "modules/liens/liensdirects.csv";
include "modules/magicbox.php";
?>
</td>
</tr>
</table>
<?php // include "footer.php" ?>
</body>
</html>

36
404.php.en Normal file
View File

@ -0,0 +1,36 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>404 Error</title>
<link rel='stylesheet' href='/css/minimal.css' type='text/css' media="screen" title="minimal" />
</head>
<body>
<table>
<tr>
<td align='left'><img src='/images/tourmentine.gif' alt='' /></td>
<td align='center'>
<h2><font color='red'>Erreur 404 - Fichier non trouvé</font></h2>
<br />Le fichier demandé n'à pas été trouvé !
<br />Cliquez <a href="/">ici</a> pour revenir à la page d'accueil...
</td>
<td align='right'>
<?php
include "include/theme.inc.php";
include "themes/default/theme.php";
$bodyclass="magicbox";
$module = "liens";
$titre = "Services";
$headlien = "/";
// $TypeListe = "deroul";
$FileName = "modules/liens/liensdirects.csv";
include "modules/magicbox.php";
?>
</td>
</tr>
</table>
<?php // include "footer.php" ?>
</body>
</html>

60
500.php Normal file
View File

@ -0,0 +1,60 @@
<?php
include_once "include/lang.inc.php";
if ($lang == "fr")
{
$error_code = "Erreur 500";
$error_label = "Erreur interne";
$error_message = "oops...y'a comme un bug là !";
$write_me = "Écrivez <a href='mailto:n@tourmentine.com'>ici</a> pour m'insulter, ou";
$return_to_menu = "<br />Cliquez <a href='/'>ici</a> pour revenir à la page d'accueil...";
$titre = "Services";
$FileName = "modules/liens/liensdirects.csv";
}
else
{
$error_code = "500 Error";
$error_label = "Internal server error";
$error_message = "oops...sounds like a bug!";
$write_me = "Write <a href='mailto:n@tourmentine.com'>here</a> to flame me, or";
$return_to_menu = "<br />Click <a href='/'>here</a> to go back to homepage...";
$titre = "Local links";
$FileName = "modules/liens/liensdirects.en.csv";
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title><?php echo $error_code; ?></title>
<link rel='stylesheet' href='/css/minimal.css' type='text/css' media="screen" title="minimal" />
</head>
<body>
<table>
<tr>
<td align='left'><img src='/images/tourmentine.gif' alt='' /></td>
<td align='center'>
<h2><font color='red'><?php echo $error_code." - ".$error_label;?></font></h2>
<br /><?php echo $error_message; ?>
<br /><?php echo $write_me; ?>
<br /><?php echo $return_to_menu; ?>
</td>
<td align='right'>
<?php
include "include/theme.inc.php";
include "themes/default/theme.php";
$bodyclass="magicbox";
$module = "liens";
//$titre = "Services";
$headlien = "/";
// $TypeListe = "deroul";
//$FileName = "modules/liens/liensdirects.csv";
include "modules/magicbox.php";
?>
</td>
</tr>
</table>
<?php // include "footer.php" ?>
</body>
</html>

13
LICENSE Normal file
View File

@ -0,0 +1,13 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

3
README.md Normal file
View File

@ -0,0 +1,3 @@
My homegrown blog, based on my own framework named PIP (2002-2009)
This stuff is provided as is, without any garantees it will work with modern PHP.

7
backends/.htaccess Normal file
View File

@ -0,0 +1,7 @@
RewriteEngine off
Options Indexes +Includes FollowSymLinks
IndexOptions FancyIndexing
IndexOptions FoldersFirst
IndexOptions SuppressHTMLPreamble
IndexOptions SuppressDescription
#HeaderName ../include/head.html

View File

@ -0,0 +1,253 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Akihabaranews.com</title>
<link>http://www.akihabaranews.com</link>
<description>Akihabara News : Your Leading News provider on Gadgets and Hi-Tech stuff from Akihabara in Tokyo Japan and in other Asian Countries</description>
<language>en</language>
<pubDate>Mon, 25 Feb 2008 07:02:49 GMT</pubDate>
<lastBuildDate>Mon, 25 Feb 2008 07:02:49 GMT</lastBuildDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>Akihabaranews RSS Feed</generator>
<managingEditor>info@akihabaranews.com</managingEditor>
<webMaster>webmaster@akihabaranews.com</webMaster>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Akihabaranews_en" type="application/rss+xml" /><feedburner:emailServiceId>234204</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>Colorful Penryn Based Mouse Computer.</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/240723731/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15567-Colorful+Penryn+Based+Mouse+Computer..html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15567/b.jpg" width="128" height="83" border="0" alt="Colorful+Penryn+Based+Mouse+Computer." title="Colorful+Penryn+Based+Mouse+Computer." align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mouse Computer Japan just unleash 3 new Penryn 12.1” m-Book powered by a Core 2 Duo T8100 CPU, with 2GB of RAM, 80GB of SATA HDD, Wifi ABGN, X3100 Chipset, DVD DL Multi, HDMI output, a 1.3Mpix Web Camera, available in 3 different colors with an Olive Green (Uguisu), Light Blue (Shizuku) and Light Pink (Sakura) for just 817€....&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15567-Colorful+Penryn+Based+Mouse+Computer..html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=KPXLNk"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=KPXLNk" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=q0kUEME"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=q0kUEME" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=c3X1quE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=c3X1quE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=bHwrD9e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=bHwrD9e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=jShokbe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=jShokbe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=xmZbF3e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=xmZbF3e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=S5bjYqE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=S5bjYqE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=PIS61wE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=PIS61wE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/240723731" height="1" width="1"/&gt;</description>
<pubDate>Mon, 25 Feb 2008 06:58:14 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15567</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15567</feedburner:origLink></item>
<item>
<title>Toshiba Satellite A300 and P300 in the wild</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/240713685/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15566-Toshiba+Satellite+A300+and+P300+in+the+wild.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15566/b.jpg" width="128" height="83" border="0" alt="Toshiba+Satellite+A300+and+P300+in+the+wild" title="Toshiba+Satellite+A300+and+P300+in+the+wild" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Not yet announced by Toshiba, the Italian Website Notebook Italia uncovered two new Penryn Based Notebook from Toshiba the A300 (15”) and P300 (17”). While there are little information yet available on the P300, the A300 will feature a Core 2 Duo T5500 or a Penryn based Core 2 Duo T8100, 2GB or RAM, a 1.3Mpix Web camera, 160GB of HDD. Apparently you should expect a price to be around 1000€.&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15566-Toshiba+Satellite+A300+and+P300+in+the+wild.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=iB1ygt"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=iB1ygt" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=MWCODfE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=MWCODfE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=4Wv6EzE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=4Wv6EzE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=dpCM80e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=dpCM80e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=GDvObIe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=GDvObIe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=RLJpvIe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=RLJpvIe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=1KePZDE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=1KePZDE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ubRkOeE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ubRkOeE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/240713685" height="1" width="1"/&gt;</description>
<pubDate>Mon, 25 Feb 2008 06:32:23 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15566</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15566</feedburner:origLink></item>
<item>
<title>The New SATA 2.5” 500GB HDD from Fujitsu</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/240702852/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15565-The+New+SATA+2.5%E2%80%9D+500GB+HDD+from+Fujitsu.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15565/b.jpg" width="128" height="83" border="0" alt="The+New+SATA+2.5%E2%80%9D+500GB+HDD+from+Fujitsu" title="The+New+SATA+2.5%E2%80%9D+500GB+HDD+from+Fujitsu" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Last week we had the 500GB external HDD enclosure from Buffalo, Today we have the 500GB SATA 2.5” HDD from Fujitsu (the very same HDD found in the Buffalo case). Our MHZ2 BT drive has a consumption of only 1.8W, with a theoretical speed of 3.0GB/s, a speed of 4200rpm and 8MB of cache....&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15565-The+New+SATA+2.5%E2%80%9D+500GB+HDD+from+Fujitsu.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=BtLavd"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=BtLavd" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=vH8097E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=vH8097E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=DKJ9x8E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=DKJ9x8E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BjArNQe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BjArNQe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ZGuMCae"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ZGuMCae" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=VO0C5Ne"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=VO0C5Ne" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=MwC8pQE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=MwC8pQE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ii1yTYE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ii1yTYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/240702852" height="1" width="1"/&gt;</description>
<pubDate>Mon, 25 Feb 2008 05:38:10 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15565</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15565</feedburner:origLink></item>
<item>
<title>Sport USB Flash by Green-House</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/240691347/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15564-Sport+USB+Flash+by+Green-House.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15564/b.jpg" width="128" height="83" border="0" alt="Sport+USB+Flash+by+Green-House" title="Sport+USB+Flash+by+Green-House" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Fed-up with all these Sushi or Donuts, Pizza… USB key? Want to get some more “healthy” memory keys? Well here you are the Sport USB Flash from Green-House which are 1GB USB 2.0 Key with a shape of Soccer ball, Golf Ball, Rugby Ball… Not amazingly funky but if you are a sport addict, these USB key may make your day....&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15564-Sport+USB+Flash+by+Green-House.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=y2CMsd"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=y2CMsd" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=yN1pvVE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=yN1pvVE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=iyRgNZE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=iyRgNZE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=nzluIwe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=nzluIwe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=rPzC8fe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=rPzC8fe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=s1UEjHe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=s1UEjHe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=p56XP4E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=p56XP4E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=k4PczzE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=k4PczzE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/240691347" height="1" width="1"/&gt;</description>
<pubDate>Mon, 25 Feb 2008 05:24:55 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15564</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15564</feedburner:origLink></item>
<item>
<title>Liteon DX-20A4PU with effort less disc dubbing.</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/240679288/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15563-Liteon+DX-20A4PU+with+effort+less+disc+dubbing..html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15563/b.jpg" width="128" height="83" border="0" alt="Liteon+DX-20A4PU+with+effort+less+disc+dubbing." title="Liteon+DX-20A4PU+with+effort+less+disc+dubbing." align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lets imagine for 1sec that you have no ideas on how to operate a PC, but you have an urgent need to duplicate a CD/DVD, or even worst to backup data from your computer to a CD/DVD. Well if you “were” my mother you would call immediately begging for help, while I was on my way to bed (time difference) and I would have to explain for at least 1h how to click on the “Start” button of her PC, and then 2 more hours to start Nero Xpress… And it seems that some engineers from LiteOn had ...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15563-Liteon+DX-20A4PU+with+effort+less+disc+dubbing..html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=gSm6NC"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=gSm6NC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=temeWIE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=temeWIE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=JEoQC8E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=JEoQC8E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Xradcxe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Xradcxe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NpRlDge"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NpRlDge" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=X47czJe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=X47czJe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=D7Fp5RE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=D7Fp5RE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=YgDAaVE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=YgDAaVE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/240679288" height="1" width="1"/&gt;</description>
<pubDate>Mon, 25 Feb 2008 04:59:48 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15563</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15563</feedburner:origLink></item>
<item>
<title>Participate in this Survey and You Have a Chance of Winning One of Our Three Prizes (Panasonic R7, Nintendo DS Lite, or PSP Lite) !</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239929539/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15562-Participate+in+this+Survey+and+You+Have+a+Chance+of+Winning+One+of+Our+Three+Prizes+%28Panasonic+R7%2C+Nintendo+DS+Lite%2C+or+PSP+Lite%29+%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15562/b.jpg" width="128" height="83" border="0" alt="Participate+in+this+Survey+and+You+Have+a+Chance+of+Winning+One+of+Our+Three+Prizes+%28Panasonic+R7%2C+Nintendo+DS+Lite%2C+or+PSP+Lite%29+%21" title="Participate+in+this+Survey+and+You+Have+a+Chance+of+Winning+One+of+Our+Three+Prizes+%28Panasonic+R7%2C+Nintendo+DS+Lite%2C+or+PSP+Lite%29+%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Hi folks, we have three contests for you coming ! One with &lt;strong&gt;&lt;a href="http://www.nihoncar.com" class="lngrn2" target="_blank"&gt;NihonCar.com&lt;/a&gt;&lt;/strong&gt; as well as on &lt;strong&gt;&lt;a href="http://www.manualgear.com" class="lngrn2" target="_blank"&gt;ManualGear.com&lt;/a&gt;&lt;/strong&gt; (coming Monday) and starting today on &lt;strong&gt;&lt;a href="http://www.akihabaranews.com" class="lngrn2" target="_blank"&gt;Akihabara News&lt;/a&gt;&lt;/strong&gt; !&lt;br /&gt;
&lt;br /&gt;
This is pretty simple, just fill the survey and cross your fingers...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15562-Participate+in+this+Survey+and+You+Have+a+Chance+of+Winning+One+of+Our+Three+Prizes+%28Panasonic+R7%2C+Nintendo+DS+Lite%2C+or+PSP+Lite%29+%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=XC3e25"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=XC3e25" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=aLbWyqE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=aLbWyqE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Iq1YqIE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Iq1YqIE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=srRerLe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=srRerLe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=5UNdo9e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=5UNdo9e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6SkQBTe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6SkQBTe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=TjYvf7E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=TjYvf7E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=R2OX0RE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=R2OX0RE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239929539" height="1" width="1"/&gt;</description>
<pubDate>Sat, 23 Feb 2008 13:02:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15562</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15562</feedburner:origLink></item>
<item>
<title>XiaoClef2: A New USB Key from Princeton, with Embedded Fingerprint Reader</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239273849/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15561-XiaoClef2%3A++A+New+USB+Key+from+Princeton%2C+with+Embedded+Fingerprint+Reader.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15561/b.jpg" width="128" height="83" border="0" alt="XiaoClef2%3A++A+New+USB+Key+from+Princeton%2C+with+Embedded+Fingerprint+Reader" title="XiaoClef2%3A++A+New+USB+Key+from+Princeton%2C+with+Embedded+Fingerprint+Reader" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
One of the best ways to protect data is to lock it in a certain way that nobody except you has access to it. Even if a password protected USB key is doing its job very well, owning a USB card with a fingerprint reader is by far the quickest and safest way to prevent others from stealing your info. &lt;br /&gt;
&lt;br /&gt;
Princeton in Japan has just released a new USB key with a fingerprint reader, the XiaoClef2. Available in 512MB, 1GB, 2GB and 4GB....&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15561-XiaoClef2%3A++A+New+USB+Key+from+Princeton%2C+with+Embedded+Fingerprint+Reader.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=S0FUvs"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=S0FUvs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=7vmO81E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=7vmO81E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=la9b9pE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=la9b9pE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=SdsN8te"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=SdsN8te" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=niaYz0e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=niaYz0e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=TE4GQte"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=TE4GQte" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=dmHthUE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=dmHthUE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=lLOnngE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=lLOnngE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239273849" height="1" width="1"/&gt;</description>
<pubDate>Fri, 22 Feb 2008 08:05:19 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15561</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15561</feedburner:origLink></item>
<item>
<title>AOU 2008: Konamis Last Wonder, The Jubeat</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239263523/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15560-AOU+2008%3A+Konami%E2%80%99s+Last+Wonder%2C+The+Jubeat.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15560/b.jpg" width="128" height="83" border="0" alt="AOU+2008%3A+Konami%E2%80%99s+Last+Wonder%2C+The+Jubeat" title="AOU+2008%3A+Konami%E2%80%99s+Last+Wonder%2C+The+Jubeat" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We still have some video footage of the AOU 2008, and we'd like to share with you today the latest arcade game from Konami, The Jubeat. You have in front of you a cube with 16 panels, and you have to push one panel at a time to play some tunes… Pretty nice game design and a very fun game to play.&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15560-AOU+2008%3A+Konami%E2%80%99s+Last+Wonder%2C+The+Jubeat.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=FY31Ix"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=FY31Ix" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NOT4VJE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NOT4VJE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=bdBdYYE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=bdBdYYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Zsd63Oe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Zsd63Oe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=nKGcwMe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=nKGcwMe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=h0s6y9e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=h0s6y9e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=sZ9TEmE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=sZ9TEmE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=yiYiYnE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=yiYiYnE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239263523" height="1" width="1"/&gt;</description>
<pubDate>Fri, 22 Feb 2008 07:34:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15560</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15560</feedburner:origLink></item>
<item>
<title>The Master Cooler « OROCHI » from Scythe</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239246642/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15559-The+Master+Cooler+%C2%AB+OROCHI+%C2%BB+from+Scythe.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15559/b.jpg" width="128" height="83" border="0" alt="The+Master+Cooler+%C2%AB+OROCHI+%C2%BB+from+Scythe" title="The+Master+Cooler+%C2%AB+OROCHI+%C2%BB+from+Scythe" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
As you may know, heat is the worst enemy to anyone who desires to “overclock” his CPU and cooling is his best friend. Now there are two majors different camps/ways to cool down a CPU with a regular fan, heat sink, or water-cooling system. &lt;br /&gt;
&lt;br /&gt;
Difficult to install and somehow dangerous for your computer, the water-cooling option is often the last choice that many make. While fans and heat sinks are definitely the most popular methods, these are also the noisiest and bulk...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15559-The+Master+Cooler+%C2%AB+OROCHI+%C2%BB+from+Scythe.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=mdCujD"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=mdCujD" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=oaNtN7E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=oaNtN7E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=QbynGzE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=QbynGzE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=1JNghle"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=1JNghle" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=MHB7DTe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=MHB7DTe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=cdIupXe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=cdIupXe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=V1e9inE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=V1e9inE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=9P1p5fE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=9P1p5fE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239246642" height="1" width="1"/&gt;</description>
<pubDate>Fri, 22 Feb 2008 06:54:03 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15559</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15559</feedburner:origLink></item>
<item>
<title>R-K1: The Ultra Limited Hi-Fi from Kenwood</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239241562/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15558-R-K1%3A++The+Ultra+Limited+Hi-Fi+from+Kenwood.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15558/b.jpg" width="128" height="83" border="0" alt="R-K1%3A++The+Ultra+Limited+Hi-Fi+from+Kenwood" title="R-K1%3A++The+Ultra+Limited+Hi-Fi+from+Kenwood" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Kenwood will only produce 50 of these high-end compact stereo systems, the R-K1 K Series Silver Limited, which is state of the art for pure sound quality. &lt;br /&gt;
&lt;br /&gt;
The main points on this R-K1 are:&lt;br /&gt;
&lt;br /&gt;
- Supreme EX tone quality technology.&lt;br /&gt;
- Wolfson D/A conversion unit WM8740.&lt;br /&gt;
- Separate Power supplies for key audio elements.&lt;br /&gt;
- Aluminum body at 11mm thick.&lt;br /&gt;
&lt;br /&gt;
Specifications are as follow, 38Wx2ch (6Ω) or 45Wx2(4Ω), 48Hz-45kHz, 85dB. It will...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15558-R-K1%3A++The+Ultra+Limited+Hi-Fi+from+Kenwood.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=V4Pt9h"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=V4Pt9h" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=8c3CsFE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=8c3CsFE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=dU1AzPE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=dU1AzPE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=o75ig6e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=o75ig6e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=IAsMuLe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=IAsMuLe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=c1lhRse"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=c1lhRse" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=bZKt3BE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=bZKt3BE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=tpf6JcE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=tpf6JcE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239241562" height="1" width="1"/&gt;</description>
<pubDate>Fri, 22 Feb 2008 06:43:40 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15558</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15558</feedburner:origLink></item>
<item>
<title>Hands-On with the Latest Bravia TV Line-up</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239230143/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15557-Hands-On+with+the+Latest+Bravia+TV+Line-up.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15557/b.jpg" width="128" height="83" border="0" alt="Hands-On+with+the+Latest+Bravia+TV+Line-up" title="Hands-On+with+the+Latest+Bravia+TV+Line-up" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yesterday we introduced you to eleven new Bravia LCD TVs from Sony, and strangely Sony held its press conference on these new LCDs only this morning at the “Bravia Museum”… So between one or two “Petit-Fours” we had the pleasure to discover each new model in a different room or situation.&lt;br /&gt;
&lt;br /&gt;
More info on these eleven new TVs are here &lt;a href="http://www.akihabaranews.com/news-15549-X.html" class="lngrn2" target="_blank"&gt;11 New HD and HD-Reay Bravia TVs from Sony&lt;/a&gt;&lt;br /...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15557-Hands-On+with+the+Latest+Bravia+TV+Line-up.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=YPSvZ9"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=YPSvZ9" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=OiZRNUE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=OiZRNUE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=HqNBzGE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=HqNBzGE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=IGzgIPe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=IGzgIPe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=jOgjpce"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=jOgjpce" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=pPoFGte"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=pPoFGte" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Gvn0pNE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Gvn0pNE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=DP3YS4E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=DP3YS4E" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239230143" height="1" width="1"/&gt;</description>
<pubDate>Fri, 22 Feb 2008 06:11:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15557</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15557</feedburner:origLink></item>
<item>
<title>"The MacBookAir is Badly Designed and Too Expensive to Produce" said Japanese Engineers</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/239161431/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15556-%22The+MacBookAir+is+Badly+Designed+and+Too+Expensive+to+Produce%22+said+Japanese+Engineers.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15556/b.jpg" width="128" height="83" border="0" alt="%22The+MacBookAir+is+Badly+Designed+and+Too+Expensive+to+Produce%22+said+Japanese+Engineers" title="%22The+MacBookAir+is+Badly+Designed+and+Too+Expensive+to+Produce%22+said+Japanese+Engineers" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here's a very interesting bit of news from Tech-On, an English Website of the giant Nikkei. Apparently the magazine gathered some “engineers” from different manufacturers and striped down a MacBook Air in order to study it.&lt;br /&gt;
&lt;br /&gt;
The engineers all came to the same conclusion; the MacBook Air is badly designed and would cost too much to produce (meaning that there are better ways to do the job cheaper).&lt;br /&gt;
&lt;br /&gt;
I'm a bit surprised by the arrogance of some of these so ca...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15556-%22The+MacBookAir+is+Badly+Designed+and+Too+Expensive+to+Produce%22+said+Japanese+Engineers.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=0xwI0n"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=0xwI0n" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=aU9mYwE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=aU9mYwE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=4fuqiVE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=4fuqiVE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BMRoRle"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BMRoRle" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=RQalFbe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=RQalFbe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=nCvqsVe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=nCvqsVe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XfFxAzE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XfFxAzE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=JgfkerE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=JgfkerE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/239161431" height="1" width="1"/&gt;</description>
<pubDate>Fri, 22 Feb 2008 03:10:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15556</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15556</feedburner:origLink></item>
<item>
<title>New LG phone with AMOLED in Korea</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/238704752/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15553-New+LG+phone+with+AMOLED+in+Korea.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15553/b.jpg" width="128" height="83" border="0" alt="New+LG+phone+with+AMOLED+in+Korea" title="New+LG+phone+with+AMOLED+in+Korea" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
The SH150A, unveiled today in Korea, is LG's latest HSDPA Phone at 7.2MBps. One of its main features has got to be the AMOLED screen, exact dimensions are not stated. &lt;br /&gt;
&lt;br /&gt;
Other stuff includes: DMB, multimedia player, 2 MPx digicam and much more... &lt;br /&gt;
&lt;br /&gt;
So far available only in Korea at 440000Won (~318Euros).&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15553-New+LG+phone+with+AMOLED+in+Korea.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=KXPK2n"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=KXPK2n" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=4o1fodE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=4o1fodE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=qMOBWDE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=qMOBWDE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ig4sEee"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ig4sEee" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=t0c2SXe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=t0c2SXe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=G8TGU2e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=G8TGU2e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=xJVH6PE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=xJVH6PE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=xtXyoDE"

View File

@ -0,0 +1,292 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss1full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns="http://purl.org/rss/1.0/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
<channel rdf:about="http://blogmanucorp.free.fr/index.php">
<title>Manu et son blog</title>
<description />
<link>http://blogmanucorp.free.fr/index.php</link>
<dc:language>fr</dc:language>
<dc:creator />
<dc:rights />
<dc:date>2007-07-14T13:45:43+02:00</dc:date>
<admin:generatorAgent rdf:resource="http://www.dotclear.net/" />
<sy:updatePeriod>daily</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2007-07-14T13:45:43+02:00</sy:updateBase>
<items>
<rdf:Seq>
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/07/14/38-pliage-d-un-fond-laslolite" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/05/13/37-eurovision-ou-comment-je-suis-devenu-voyant" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/02/25/36-un-maximum-de-cafe" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/02/10/35-concert-swan" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/11/17/34-vinvin-est-de-retour-dans-bonjour-america-season-2" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/10/06/33-nouveau-site-pour-les-coureurs-et-autres-sportifs" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/10/05/32-me-voila-popartise-par-magali" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/09/29/31-rap-de-la-campagne" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/09/22/30-garmin-forerunner-305-la-decouverte" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/08/14/29-dernier-jour-oslo-paris" />
</rdf:Seq>
</items>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ManuEtSonBlog" type="application/rss+xml" /></channel>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/07/14/38-pliage-d-un-fond-laslolite">
<title>Pliage d'un fond Laslolite</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/133688677/index.php</link>
<dc:date>2007-07-14T13:45:43+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Photographie</dc:subject>
<description>Vous avez peut etre été confronté au problème du pliage d'un fond de photographe Laslolite
Voila la solution en vidéo !
Pliage Laslolite FondUploaded by faivre_e...</description>
<content:encoded><![CDATA[ Vous avez peut etre été confronté au problème du pliage d'un fond de photographe Laslolite<br />
Voila la solution en vidéo !<br />
<br />
<div><object width="425" height="356"><param name="movie" value="http://www.dailymotion.com/swf/2pRjDbKQ7M55chRM4"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/2pRjDbKQ7M55chRM4" type="application/x-shockwave-flash" width="425" height="356" allowfullscreen="true"></embed></object><br /><b><a href="http://www.dailymotion.com/video/x2j9ps_pliage-laslolite-fond">Pliage Laslolite Fond</a></b><br /><i>Uploaded by <a href="http://www.dailymotion.com/faivre_e">faivre_e</a></i></div><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/133688677" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/07/14/38-pliage-d-un-fond-laslolite</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/05/13/37-eurovision-ou-comment-je-suis-devenu-voyant">
<title>Eurovision, ou comment je suis devenu voyant !</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352514/index.php</link>
<dc:date>2007-05-13T10:27:04+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humeur</dc:subject>
<description>En ce 12 mai 2007, je ne pensais pas que ma vie allait prendre une nouveau tournant après un zapping effréné, je me retrouve machinalement sur France 3 a regarder la fin de l'émission Eurovision et je me sens l'humeur de jouer au devinette et les bons résultats s'enchaîne. La norvège donne 12 points...</description>
<content:encoded><![CDATA[ <p>En ce 12 mai 2007, je ne pensais pas que ma vie allait prendre une nouveau tournant après un zapping effréné, je me retrouve machinalement sur France 3 a regarder la fin de l'émission Eurovision et je me sens l'humeur de jouer au devinette et les bons résultats s'enchaîne. La norvège donne 12 points a la suède alors que la suède est presque bon dernier, La macédoine donne 12 points a la serbie, le montenegro donne 12 points à la serbie...et j'en passe..la bélarussie donne 12 points à l'ukraine...mon don de voyance perce.....Et bingo victoire de la Serbie, nouvelle nation, nouvelle entrant dans la grande course à l'eurovision...
</p>
<p>
Je me vois déjà créer mon propre cabinet de voyance....projection / calcul du budget...et je redescends sur Terre....c'est vrai les votes de l'eurovision ne sont que le reflet de la géographie avec une petite dose d'histoire des nations...
</p>
<p>
Je propose d'arrêter de participer a ce concours, ringard et sans aucun sens... Les fatals picards ne méritaient pas ça mais au moins ça les a fait connaître un peu plus en France
</p>
<p>
Une idée de chanteur pour l'an prochain : Michael Youn avec les bratislaboys (ça nous permettra de récupérer les votes des pays de l'ex-URSS)
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352514" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/05/13/37-eurovision-ou-comment-je-suis-devenu-voyant</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/02/25/36-un-maximum-de-cafe">
<title>Un maximum de café</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352515/index.php</link>
<dc:date>2007-02-25T20:46:26+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humeur</dc:subject>
<description>Aujourd'hui je vous présente un site de vente un peu original....au programme, Café mais aussi Thé, Infusions, smoothies...et du bon matériel (Blender, machine a café originales...)
Et grande surprise pour les fans d'Oreo (assez difficile à trouver en France), Vous pouvez acheter vos Oreos en...</description>
<content:encoded><![CDATA[ <p>Aujourd'hui je vous présente un site de vente un peu original....au programme, Café mais aussi Thé, Infusions, smoothies...et du bon matériel (Blender, machine a café originales...)</p>
<p>
Et grande surprise pour les fans d'Oreo (assez difficile à trouver en France), Vous pouvez acheter vos Oreos en ligne !!!!!!!!!!
En plus, de tout ca des recettes faciles à réaliser et trés appétissantes ! Vous pouvez vous laisser aller à la GOURMANDISE.
</p>
<p>
<a href="http://www.maxicoffee.com/">Maxi Coffee</a><br />
<a href="http://www.maxicoffee.com/oreo-classic-boite-packs-p-191-49_52.html">Oreo</a><br />
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352515" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/02/25/36-un-maximum-de-cafe</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/02/10/35-concert-swan">
<title>Concert Swan</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352516/index.php</link>
<dc:date>2007-02-10T09:59:34+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Musique</dc:subject>
<description>Je reviens de mon premier concert de Swan, un groupe de musique parisien plein d'énérgie. J'étais pour l'occasion le photographe officiel (accés aux loges, moment privilégié avec les musiciens, partage de leurs impressions lors des entractes,...)
Mes morceaux préférés :
On Good Tracks
Wig in a...</description>
<content:encoded><![CDATA[ <p>Je reviens de mon premier concert de Swan, un groupe de musique parisien plein d'énérgie. J'étais pour l'occasion le photographe officiel (accés aux loges, moment privilégié avec les musiciens, partage de leurs impressions lors des entractes,...)</p>
<p>Mes morceaux préférés :
<ul>
<li>On Good Tracks</li>
<li>Wig in a Box</li>
<li>Stop the Fear</li>
</ul>
</p>
<img src="http://blogmanucorp.free.fr/images/swan_joel.jpg" alt="Swan Joel" />
<img src="http://blogmanucorp.free.fr/images/swan_frank.jpg" alt="Swan Franck" />
<img src="http://blogmanucorp.free.fr/images/swan_lionel.jpg" alt="Swan Lionel" />
<img src="http://blogmanucorp.free.fr/images/swan_stephane.jpg" alt="Swan Stephane" />
<img src="http://blogmanucorp.free.fr/images/swan_vincent.jpg" alt="Swan Vincent" />
<p>
N'hésitez pas à acheter l'album, il est vraiment excellent !
</p>
<p>
<a href="http://swangroupe.free.fr/">Site de Swan</a><br />
<a href="http://www.myspace.com/swanlegroupe">Profil MySpace</a><br />
<a href="http://picasaweb.google.com/manucorp/ConcertSwan">Quelques photos du concert</a><br /><br />
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352516" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/02/10/35-concert-swan</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/11/17/34-vinvin-est-de-retour-dans-bonjour-america-season-2">
<title>Vinvin est de retour dans Bonjour America Season 2</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352517/index.php</link>
<dc:date>2006-11-17T07:57:05+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humour</dc:subject>
<description>Aprés le retour de toutes les series sur les ecrans (Lost saison 3, Desperate housewives saison 3, Prison Break saison 2,....). Tout le monde attendait avec impatience le retour de Vinvin dans la mythique série "Bonjour America". Il manque juste le mythique "Previously on ..." pour faire encore plus...</description>
<content:encoded><![CDATA[ <p>Aprés le retour de toutes les series sur les ecrans (Lost saison 3, Desperate housewives saison 3, Prison Break saison 2,....). Tout le monde attendait avec impatience le retour de Vinvin dans la mythique série "Bonjour America". Il manque juste le mythique "Previously on ..." pour faire encore plus Américain</p>
<p>Je vous laisse décrouvrir l'introduction de la saison 2</p>
<p>
<a href="http://www.bonjour-america.com/archives/000.html">Introduction saison 2</a><br />
<a href="http://season1.bonjour-america.com/">Revoir la saison 1</a><br /><br />
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352517" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/11/17/34-vinvin-est-de-retour-dans-bonjour-america-season-2</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/10/06/33-nouveau-site-pour-les-coureurs-et-autres-sportifs">
<title>Nouveau site pour les coureurs et autres sportifs</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352518/index.php</link>
<dc:date>2006-10-06T07:12:06+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Sport</dc:subject>
<description>Ca fait un petit moment que je travaille sur mon nouveau site. L'idée n'est pas toute neuve puisque ca fait plus de 2 ans que j'en parle. j'avais fait des essais avec d'autres technologies mais la sortie de la google Map API a changé complétement la donne (il faudrait aussi que cela marche avec...</description>
<content:encoded><![CDATA[ <p>
Ca fait un petit moment que je travaille sur mon nouveau site. L'idée n'est pas toute neuve puisque ca fait plus de 2 ans que j'en parle. j'avais fait des essais avec d'autres technologies mais la sortie de la google Map API a changé complétement la donne (il faudrait aussi que cela marche avec Yahoo Maps pour avoir un backup....il faut que j'y pense). C'est un site tout a fait web 2.0 meme si ce n'etait pas le but au départ. Au programme :
<ul>
<li>Interface Ajax (librairie prototype) et quelques trucs maisons </li>
<li>Google Map API</li>
<li>Le tout sur un serveur LAMP</li>
</ul>
L'idée est de pouvoir partager ses parcours de course &agrave; pied dans toute la France. Bien sur, le site n'est pas fini, on pourra bientot noter / commenter les parcours, gérer des courses, peut etre importer des fichiers Garmin ou autres,...et toutes vos idées...il y a plein de choses à faire et vous pouvez y participer !
<p>
<a href="http://www.wanarun.net">Wanarun : Tu veux courir ou ?</a><br />
<a href="http://www.wanarun.net/blog/index.php?2006/10/04/2-lancement-de-la-beta">Billet sur le lancement de la beta</a><br /><br /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352518" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/10/06/33-nouveau-site-pour-les-coureurs-et-autres-sportifs</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/10/05/32-me-voila-popartise-par-magali">
<title>Me voila popartisé par Magali</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352519/index.php</link>
<dc:date>2006-10-05T07:11:34+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humeur</dc:subject>
<description>En passant sur le blog de Magali et en en shootant avec Blogger Snap, j'ai eu l'honneur de me faire popartiser. Voila ce que ca donne :
Le blog de Magali
Projet communautaire : Le Pop Art s'empare des webcams
Billet sur ma popartisation...</description>
<content:encoded><![CDATA[ <p>En passant sur le blog de Magali et en en shootant avec Blogger Snap, j'ai eu l'honneur de me faire popartiser. Voila ce que ca donne :<br /><br />
<img src="/images/manucorp.jpg" alt="manu version pop art" /><br />
</p>
<a href="http://www.magaliday.com/blog/">Le blog de Magali</a><br />
<a href="http://www.magaliday.com/blog/index.php/2006/10/02/71-le-pop-art-s-empare-des-webcams">Projet communautaire : Le Pop Art s'empare des webcams</a><br />
<a href="http://www.magaliday.com/blog/index.php/2006/10/05/81-pop-art-n-6-x-corp">Billet sur ma popartisation</a><br /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352519" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/10/05/32-me-voila-popartise-par-magali</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/09/29/31-rap-de-la-campagne">
<title>Rap de la campagne</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352520/index.php</link>
<dc:date>2006-09-29T07:09:20+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Musique</dc:subject>
<description>Une chanson et un petit clip sympa.
Apres New York et le 9-3, maintenant le rap vient de Marly Gomont. Kamini n'habite pas Paname mais Marly Gomont.
Le site de Kamini
Son profil MySpace...</description>
<content:encoded><![CDATA[ Une chanson et un petit clip sympa.<br />
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/wPJ-xRaw2l8"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/wPJ-xRaw2l8" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object><br />
<br />Apres New York et le 9-3, maintenant le rap vient de Marly Gomont. Kamini n'habite pas Paname mais Marly Gomont.
<br />
<br />
<a href="http://www.kamini.fr">Le site de Kamini</a><br />
<a href="http://www.myspace.com/kaminimarlygomont">Son profil MySpace</a><br /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352520" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/09/29/31-rap-de-la-campagne</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/09/22/30-garmin-forerunner-305-la-decouverte">
<title>Garmin Forerunner 305 : La découverte</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352521/index.php</link>
<dc:date>2006-09-22T07:33:39+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Sport</dc:subject>
<description>Voila maintenant 3 ans que je cours plus ou moins regulièrement (entre 0 et 40 km par semaine). j'ai fait plusieurs semi marathon et mon objectif est de faire un jour un marathon. mais pour cela j'aimerais etre plus rapide sur semi avant de doubler la mise.
Depuis 3 ans, je cours avec un Polar pour...</description>
<content:encoded><![CDATA[ Voila maintenant 3 ans que je cours plus ou moins regulièrement (entre 0 et 40 km par semaine). j'ai fait plusieurs semi marathon et mon objectif est de faire un jour un marathon. mais pour cela j'aimerais etre plus rapide sur semi avant de doubler la mise.<br />
Depuis 3 ans, je cours avec un Polar pour suivre mon rythme cardiaque et mes performances, depuis quelques temps, la pile commence a faiblir et je me disais que c'etait l'occasion de changer mais je n'y avais pas encore refléchit et je parle de ca avec un ami et il me montre le Garmin Forerunner 305<br />
Le Garmin Forerunner 305 est une merveille de technologie c'est le mix entre un Garmin de randonnées et le Polar. c'est un veritable ordinateur de télémétrie qui enregistre et retranscrit sur l'ecran tous les parametres du coureur.<br />
On a l'impression d'être une vraie Formule 1. Tout s'affiche sur l'écran :
<ul>
<li>Vitesse </li>
<li>Temps au kilomètre</li>
<li>Alitude</li>
<li>Pente</li>
<li>Rythme cardiaque</li>
<li>Calorie consommée</li>
<li>Position GPS</li>
<li>....</li>
</ul>
Et en plus il enregistre tout il a suffisament de mémoire pour conserver pendant 3h30 l'ensemble des données toutes les secondes.
Aprés il est possible de visionner, analyser le tout dans le logiciel fourni (Garmin Training Center) et meme d'uploader ses fichiers sur
<a href="http://www.motionbased.com">Motion Based</a>.
<br /><br />
<a href="http://www.garmin.com/products/forerunner305/" >Présentation du Garmin Forerunner 305</a><br />
<a href="http://manucorp.motionbased.com/" >Mes parcours sur MotionBased</a><br />
<a href="http://manucorp.motionbased.com/rss/" >Fil Rss pour suivre mes parcours</a><br />
<br /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352521" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/09/22/30-garmin-forerunner-305-la-decouverte</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/08/14/29-dernier-jour-oslo-paris">
<title>Dernier jour : Oslo -&gt; Paris</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352522/index.php</link>
<dc:date>2006-08-14T23:54:56+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Norvège</dc:subject>
<description>Dernier jour, aprés avoir déjeuner nous allons a l'ouest de la ville
pour visiter Vigeland park. Un parc immense agrementé par les oeuvres
du sculpteur August Vigeland sur plusieurs hectares l'artiste
a évoqué par son oeuvre les émotions humaines. La visite est agréable
malgré le temps gris et...</description>
<content:encoded><![CDATA[ Dernier jour, aprés avoir déjeuner nous allons a l'ouest de la ville
pour visiter Vigeland park. Un parc immense agrementé par les oeuvres
du sculpteur August Vigeland sur plusieurs hectares l'artiste
a évoqué par son oeuvre les émotions humaines. La visite est agréable
malgré le temps gris et la foule de touriste. La visite de la norvège
s'acheve et nous devons rejoindre l'aéroport...<br /><br />
<table cellspacing="2" cellpadding="2" border="0">
<tr>
<td align="center">
<img src="http://blogmanucorp.free.fr/images/14_aout_1.jpg" alt="Sculpture Vigeland" />
</td>
<td align="center">
<img src="http://blogmanucorp.free.fr/images/14_aout_2.jpg" alt="Sculpture Vigeland" />
</td>
</tr>
<tr>
<td align="center">
<b>Sculpture Vigeland</b>
</td>
<td align="center">
<b>Sculpture Vigeland</b>
</td>
</tr>
<tr>
<td align="center">
<img src="http://blogmanucorp.free.fr/images/14_aout_3.jpg" alt="Sculpture Vigeland" />
</td>
<td align="center">
<img src="http://blogmanucorp.free.fr/images/14_aout_4.jpg" alt="Vue sur Holmenkollen" />
</td>
</tr>
<tr>
<td align="center">
<b>Sculpture Vigeland</b>
</td>
<td align="center">
<b>Vue sur Holmenkollen</b>
</td>
</tr>
</table>
<br /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352522" height="1" width="1"/>]]></

View File

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Actus ciné : Célébrités</title>
<link>http://www.allocine.fr/article/rubarticle_gen_crubrique=23004.html</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Thu, 23 Oct 2008 03:31:00 GMT</lastBuildDate>
<pubDate>Thu, 23 Oct 2008 03:31:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine/celebrites" type="application/rss+xml" /><item>
<category />
<title>Ben Stiller et Will Ferrell s'attaquent à Broadway !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/427679417/fichearticle_gen_carticle=18434744.html</link>
<description>&lt;p&gt;Ben Stiller et Elton John vont travailler ensemble à la mise en chantier d'une comédie musicale sur le sida. Quant à Will Ferrell, il devrait interpréter George W. Bush dans une pièce à Broadway !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18434744.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 21 Octobre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/427679417" height="1" width="1"/&gt;</description>
<pubDate>Tue, 21 Oct 2008 15:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18434744</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/17/94/18757870.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18434744.html</feedburner:origLink></item>
<item>
<category />
<title>Le clip : le nouveau terrain de jeu des acteurs&#xD;
</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/427382474/fichearticle_gen_carticle=18434767.html</link>
<description>&lt;p&gt;De plus en plus, les acteurs français se prêtent au jeu du clip, qu'il s'agisse d'une simple apparition ou d'un véritable rôle. Trois exemples récents.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18434767.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 21 Octobre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/427382474" height="1" width="1"/&gt;</description>
<pubDate>Tue, 21 Oct 2008 13:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18434767</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/62/48/40/18645995.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18434767.html</feedburner:origLink></item>
<item>
<category />
<title>Clap de fin pour Guy Ritchie et Madonna&#xD;
</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/421622886/fichearticle_gen_carticle=18434234.html</link>
<description>&lt;p&gt;Après des mois de rumeurs et de supputations en tous genres, la chanteuse Madonna et le réalisateur Guy Ritchie viennent d'annoncer leur divorce, après huit ans d'union. &#xD;
&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18434234.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 15 Octobre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/421622886" height="1" width="1"/&gt;</description>
<pubDate>Wed, 15 Oct 2008 16:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18434234</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/39/51/18931228.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18434234.html</feedburner:origLink></item>
<item>
<category />
<title>Benoît Poelvoorde a un double !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/420426900/fichearticle_gen_carticle=18434058.html</link>
<description>&lt;p&gt;L'acteur belge Benoît Poelvoorde a inauguré ce lundi 13 octobre une statue de cire à son effigie dans l'enceinte du célèbre musée Grévin, à Paris.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18434058.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 14 Octobre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/420426900" height="1" width="1"/&gt;</description>
<pubDate>Tue, 14 Oct 2008 12:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18434058</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/79/89/18997912.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18434058.html</feedburner:origLink></item>
<item>
<category />
<title>Décès de l'acteur Guillaume Depardieu</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/419698293/fichearticle_gen_carticle=18434026.html</link>
<description>&lt;p&gt;Fils de Gérard Depardieu, l'acteur français Guillaume Depardieu, vu chez Corneau, Salvadori, Carax ou Rivette, est décédé ce lundi 13 octobre d'une pneumonie foudroyante. Il était âgé de 37 ans.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18434026.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 13 Octobre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/419698293" height="1" width="1"/&gt;</description>
<pubDate>Mon, 13 Oct 2008 18:50:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18434026</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/79/35/18997673.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18434026.html</feedburner:origLink></item>
<item>
<category />
<title>Décès de l'acteur japonais Ken Ogata</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/416876747/fichearticle_gen_carticle=18433797.html</link>
<description>&lt;p&gt;L'acteur japonais Ken Ogata, célèbre pour sa performance dans le film "Mishima" de Paul Schrader et qui tourna sous la direction de Shohei Imamura, Kinji Fukasaku, ou encore Peter Greenaway, est décédé dimanche dernier des suites d'un cancer. Il avait 71 ans.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18433797.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 10 Octobre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/416876747" height="1" width="1"/&gt;</description>
<pubDate>Fri, 10 Oct 2008 16:22:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18433797</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/77/19/18996620.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18433797.html</feedburner:origLink></item>
<item>
<category />
<title>Scarlett Johansson s'est mariée !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/406101570/fichearticle_gen_carticle=18432640.html</link>
<description>&lt;p&gt;C'est officiel : l'actrice Scarlett Johansson a épousé Ryan Reynolds ce week-end, lors d'une cérémonie très privée.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432640.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 29 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/406101570" height="1" width="1"/&gt;</description>
<pubDate>Mon, 29 Sep 2008 11:15:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18432640</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/70/66/18798888.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432640.html</feedburner:origLink></item>
<item>
<category />
<title>Décès de Paul Newman</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/404749103/fichearticle_gen_carticle=18432598.html</link>
<description>&lt;p&gt;L'acteur américain Paul Newman est décédé ce vendredi 26 septembre. Le héros de "Butch Cassidy et le Kid" et de "Luke la main froide" avait 83 ans.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432598.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Samedi 27 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/404749103" height="1" width="1"/&gt;</description>
<pubDate>Sat, 27 Sep 2008 16:37:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18432598</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/65/04/18990855.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432598.html</feedburner:origLink></item>
<item>
<category />
<title>Jean-Paul Belmondo a divorcé</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/386575123/fichearticle_gen_carticle=18430958.html</link>
<description>&lt;p&gt;Jean-Paul Belmondo a confirmé son divorce d'avec son épouse Natty Tardivel après 19 ans de vie commune.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18430958.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 8 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/386575123" height="1" width="1"/&gt;</description>
<pubDate>Mon, 8 Sep 2008 12:06:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18430958</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/47/50/18982962.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18430958.html</feedburner:origLink></item>
<item>
<category />
<title>Décès de LA voix du cinéma américain</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/381411905/fichearticle_gen_carticle=18430242.html</link>
<description>&lt;p&gt;Don Lafontaine, la voix off la plus célèbre du cinéma américain, est décédé ce lundi 1er septembre à l'âge de 68 ans. Véritable légende, il avait travaillé sur plus de 5000 bandes-annonces.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18430242.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 2 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~4/381411905" height="1" width="1"/&gt;</description>
<pubDate>Tue, 2 Sep 2008 12:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecelebrites18430242</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/28/96/18843539.gif" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18430242.html</feedburner:origLink></item>
<item>
<category />
<title>Emmanuelle Béart (re)mariée</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/celebrites/~3/375407223/fichearticle_gen_carticle=18429513.html</link>
<description>&lt;p&gt;Emmanuelle Béart a épousé son compagnon

View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2titles.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemtitles.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>the::unwired</title>
<link>http://www.theunwired.net/</link>
<description>where mobility meets wireless</description>
<language>en</language>
<generator>BLOG:CMS 4.2.0</generator>
<copyright>webmaster@theunwired.net</copyright>
<category>blog</category>
<docs>http://backend.userland.com/rss</docs>
<image>
<url>http://www.theunwired.net/skins/base/logo_rss.gif</url>
<title>the::unwired</title>
<link>http://www.theunwired.net/</link>
</image>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.theunwired.net/xml/" type="application/rss+xml" /><feedburner:emailServiceId>65199</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.rojo.com/add-subscription?resource=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://blog.rojo.com/RojoWideRed.gif">Subscribe with Rojo</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://www.theunwired.net/xml/" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><feedburner:feedFlare href="http://www.plusmo.com/add?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://plusmo.com/res/graphics/fbplusmo.gif">Subscribe with Plusmo</feedburner:feedFlare><feedburner:feedFlare href="http://my.feedlounge.com/external/subscribe?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://static.feedlounge.com/buttons/subscribe_0.gif">Subscribe with FeedLounge</feedburner:feedFlare><feedburner:feedFlare href="http://www.thefreedictionary.com/_/hp/AddRSS.aspx?http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://img.tfd.com/hp/addToTheFreeDictionary.gif">Subscribe with The Free Dictionary</feedburner:feedFlare><feedburner:feedFlare href="http://www.bitty.com/manual/?contenttype=rssfeed&amp;contentvalue=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.bitty.com/img/bittychicklet_91x17.gif">Subscribe with Bitty Browser</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsalloy.com/?rss=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.newsalloy.com/subrss3.gif">Subscribe with NewsAlloy</feedburner:feedFlare><feedburner:feedFlare href="http://www.live.com/?add=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw">Subscribe with Live.com</feedburner:feedFlare><feedburner:feedFlare href="http://mix.excite.eu/add?feedurl=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://image.excite.co.uk/mix/addtomix.gif">Subscribe with Excite MIX</feedburner:feedFlare><feedburner:feedFlare href="http://www.yourminis.com/subscribe.aspx?u=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.yourminis.com/images/addtoyourminisbadge.gif">Subscribe with Yourminis.com</feedburner:feedFlare><feedburner:feedFlare href="http://download.attensa.com/app/get_attensa.html?feedurl=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.attensa.com/blogs/attensa/WindowsLiveWriter/BadgeredintoBadges_10C02/attensa_feed_button5.gif">Subscribe with Attensa for Outlook</feedburner:feedFlare><feedburner:feedFlare href="http://www.webwag.com/wwgthis.php?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.webwag.com/images/wwgthis.gif">Subscribe with Webwag</feedburner:feedFlare><feedburner:feedFlare href="http://hub.netomat.net/account/account.autoSubscribe.jspa?urls=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.netomat.net/blogger/images/icon_netomat_feedbutton.gif">Subscribe with netomat Hub</feedburner:feedFlare><feedburner:feedFlare href="http://www.flurry.com/pushRssFeed.do?r=fb&amp;url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.flurry.com/images/flurry_rss_logo2.gif">Subscribe with Flurry</feedburner:feedFlare><item>
<title><![CDATA[RUMOR: Is the Samsung SGH-i780 coming to the U.S. as the SGH-i788?]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/264556478/</link>
<description>Engadget
Mobile found a new Samsung phone, listed by the FCC which is called the Samsung
SGH-i788. Unfortunately not too much is known yet but remember, Samsung uses
&amp;amp;#34;SGH&amp;amp;#34; for GSM and UMTS smartphones while &amp;amp;#34;i&amp;amp;#34; is used for its Windows Mobile and
Symbian S60 smartphones. And if you compare FCC's drawing of the SGH-i788 with
the SGH-i780, it
looks quite similar. Furthermore, while Samsung tried to hide details of the
drawing, if you scroll the FFC PDF quite fast, you can see a square camera
whole, centered on the top with a speaker right to it (on the left the SGH-i780,
on the right the unmasked SGH-i788):
&lt;p&gt;&lt;p&gt;[&lt;a href="http://www.theunwired.net/forum/viewtopic.php?id=7347"&gt;&lt;b&gt;3 Comments&lt;/b&gt;&lt;/a&gt;] [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=rumor-is-the-samsung-sgh-i780-coming-to-the-u-s-as-the-sgh-i788"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=4khsog"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=4khsog" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=MsGwxmg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=MsGwxmg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=Dgf4lcg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=Dgf4lcg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=qilSO9G"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=qilSO9G" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/264556478" height="1" width="1"/&gt;</description>
<category>FCC</category><category>Samsung</category><category>SGH-i788</category><category>SGH-i780</category><category>Windows_Mobile_6.1_Professional</category>
<category>02 - Pocket PC News</category>
<pubDate>Sat, 05 Apr 2008 14:33:57 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=rumor-is-the-samsung-sgh-i780-coming-to-the-u-s-as-the-sgh-i788</feedburner:origLink></item><item>
<title><![CDATA[SERVICE: CommonTime launches new Lotus Notes mobility solution for Windows Mobile]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/264235368/</link>
<description>Global
Lotus Notes mobility expert
CommonTime has
teamed with Microsoft to provide a mobility solution offer exclusively targeted
at businesses looking to utilize Lotus Notes Domino and
System Center Mobile Device Manager 2008 solutions.
Providing real-time mobile E-Mail, messaging and line of business applications,
the combined solution offer will feature Microsoft's System Center Mobile Device
Manager 2008 solution for security and device management with CommonTime's
industry-leading mobile messaging and Notes database access products, mNotes and
mForms.
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=service-commontime-launches-new-lotus-notes-mobility-solution-for-windows-mobile"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=hr1ZDK"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=hr1ZDK" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=s68T0ng"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=s68T0ng" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=OqCMVGg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=OqCMVGg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=Z3ywJqG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=Z3ywJqG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/264235368" height="1" width="1"/&gt;</description>
<category>CommonTime</category><category>mNotes</category><category>mForms</category><category>Lotus_Notes</category><category>Microsoft</category><category>System_Center_Mobile_Device_Manager</category><category>Windows_Mobile</category>
<category>01 - General News</category>
<pubDate>Fri, 04 Apr 2008 23:58:00 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=service-commontime-launches-new-lotus-notes-mobility-solution-for-windows-mobile</feedburner:origLink></item><item>
<title><![CDATA[VIDEOVIEW: Unboxing the HTC Shift Windows Vista / Windows Mobile UMPC]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/263470967/</link>
<description>Finally,
after HTC's first UMPC, the
HTC Shift was
delayed several times, two days ago I've finally received my German Shift
with the much appreciated German QWERTZ keyboard.
Running on Windows Vista Business and a kind of locked Windows Mobile 6
Professional, the HTC Shift supports quadband GSM/GPRS/EDGE and triband
UMTS/HSDPA up to 3.6 Mbps, as well as WiFi b/g and Bluetooth 2.0+EDR.
Powered by a Intel CPU at 800 MHz and backed-up by 1 GB or RAM, the HTC Shift is
able to run Windows Vista Professional. If not needed, there's a second OS
installed, which is a locked Windows Mobile 6 Professional HTC calls SnapVUE,
which runs on a Qualcomm MSM 7200 CPU at 400 MHz.
&lt;p&gt;&lt;p&gt;[&lt;a href="http://www.theunwired.net/forum/viewtopic.php?id=7343"&gt;&lt;b&gt;1 Comment&lt;/b&gt;&lt;/a&gt;] [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=videoview-unboxing-the-htc-shift-windows-vista-windows-mobile-umpc"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=4ek7yn"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=4ek7yn" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=cItGbig"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=cItGbig" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=wS2gezg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=wS2gezg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=H5WKpIG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=H5WKpIG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/263470967" height="1" width="1"/&gt;</description>
<category>Videoview</category><category>Unboxing</category><category>HTC</category><category>HTC_Shift</category><category>UMPC</category><category>Windows_Vista</category><category>Windows_Mobile_6_Professional</category>
<category>07 - Reviews</category>
<pubDate>Thu, 03 Apr 2008 19:52:18 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=videoview-unboxing-the-htc-shift-windows-vista-windows-mobile-umpc</feedburner:origLink></item><item>
<title><![CDATA[SERVICE: Google releases Picasa Web Albums for Windows Mobile]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/262884607/</link>
<description>Following
Google's shiny AJAX-featured Picasa Web Albums for the Apple iPhone, Zak Cohen,
Software Engineer at the Google mobile team, started thinking if they can make
an AJAX interface work on new Windows Mobile devices too? After all, Internet
Explorer Mobile supports many of the advanced browser features that were used to
build the iPhone version. The team wanted to give it a try and started to work
on a Windows Mobile compatible version which the Google Mobile team is pleased
to launch today. So far available for Windows Mobile 6 Classic and Professional
devices (touchscreen) only, you can now enjoy a much faster and slicker way of
browsing Picasa Web Albums on your device:
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=service-google-releases-picasa-web-albums-for-windows-mobile"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=grfXsR"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=grfXsR" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=mFpboMg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=mFpboMg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=D7D3nTg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=D7D3nTg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=Rcn1GaG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=Rcn1GaG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/262884607" height="1" width="1"/&gt;</description>
<category>Google</category><category>Picasa</category><category>Picasa_Web_Albums</category><category>AJAX</category><category>Microsoft</category><category>Windows_Mobile_6_Classic</category><category>Windows_Mobile_6_Professional</category>
<category>02 - Pocket PC News</category>
<pubDate>Wed, 02 Apr 2008 22:22:40 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=service-google-releases-picasa-web-albums-for-windows-mobile</feedburner:origLink></item><item>
<title><![CDATA[VIDEO: What's new in Microsoft's Windows Mobile 6.1?]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/262806419/</link>
<description>And
another video demonstration, this time of Windows Mobile 6.1. This time, the
Windows Mobile team sat together and recorded a video, demoing most of the new
features in Windows Mobile 6.1.
While this is quite a long video (40 minutes, so prepare some Popcorn first
before you press the play button), this video shows several features in great
detail that you may have not seen elsewhere. Also note, there are other
improvements in Windows Mobile 6.1 that weren't covered in this video, including
Internet Explorer Mobile's new Zoom feature and integration with SCMDM 2008:
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=video-what-s-new-in-microsoft-s-windows-mobile-6-1"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=XGbhvA"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=XGbhvA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=KlS8Zlg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=KlS8Zlg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=AKiLzVg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=AKiLzVg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=mNEMieG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=mNEMieG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/262806419" height="1" width="1"/&gt;</description>
<category>Microsoft</category><category>Microsoft</category><category>Windows_Mobile_6.1</category>
<category>01 - General News</category>
<pubDate>Wed, 02 Apr 2008 19:50:19 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=video-what-s-new-in-microsoft-s-windows-mobile-6-1</feedburner:origLink></item><item>
<title><![CDATA[LINK: How does Internet Explorer Mobile 6 will looks like?]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/262800605/</link>
<description>During
CTIA, Ed Hard

View File

View File

@ -0,0 +1,181 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Akihabaranews.com</title>
<link>http://www.akihabaranews.com</link>
<description>Akihabara News : Your Leading News provider on Gadgets and Hi-Tech stuff from Akihabara in Tokyo Japan and in other Asian Countries</description>
<language>en</language>
<pubDate>Sat, 09 Feb 2008 21:23:59 GMT</pubDate>
<lastBuildDate>Sat, 09 Feb 2008 21:23:59 GMT</lastBuildDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>Akihabaranews RSS Feed</generator>
<managingEditor>info@akihabaranews.com</managingEditor>
<webMaster>webmaster@akihabaranews.com</webMaster>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Akihabaranews_en" type="application/rss+xml" /><feedburner:emailServiceId>234204</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>A new lappy from MCJ</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541636/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15492-A+new+lappy+from+MCJ.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15492/b.jpg" width="128" height="83" border="0" alt="A+new+lappy+from+MCJ" title="A+new+lappy+from+MCJ" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Here comes a new 15" laptop from Mouse computer Japan: the LuvBook PL300X, Penryn powered. Under the "bonnet" you will obviously find a Core 2 Duo CPU, but in our case a T8100, as well as 1GB of ram and 80GB of SATA HDD as well as a Multi DVD recorder. Also expect to spend a little bit more than 895€, here in Japan to get the right to own of these LuvBook&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15492-A+new+lappy+from+MCJ.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=fhpDdP"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=fhpDdP" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=h2M6EkE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=h2M6EkE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=GbPwSwE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=GbPwSwE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NuFl17e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NuFl17e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=QYwXLue"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=QYwXLue" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=CsJt4Qe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=CsJt4Qe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=hDyzlbE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=hDyzlbE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=dHJLBHE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=dHJLBHE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541636" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:24:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15492</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15492</feedburner:origLink></item>
<item>
<title>Hello Kitty 5Mpx Digital Camera</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541633/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15493-Hello+Kitty+5Mpx+Digital+Camera.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15493/b.jpg" width="128" height="83" border="0" alt="Hello+Kitty+5Mpx+Digital+Camera" title="Hello+Kitty+5Mpx+Digital+Camera" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
It's probably not the first time that you've seen an Hello Kitty digital Camera and it's probably not the last time either. This one, made by Exemode, features a 5MPx sensor with a blimpish lens cover. Elegant, maybe not, Cute for some surely but as far as I am concerned I will pass on this one !&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15493-Hello+Kitty+5Mpx+Digital+Camera.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=TDGxcZ"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=TDGxcZ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=1WRimpE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=1WRimpE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=kUXKNCE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=kUXKNCE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=72MmVSe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=72MmVSe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=CHPtUee"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=CHPtUee" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NvuolEe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NvuolEe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=eaYplpE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=eaYplpE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=MqwYehE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=MqwYehE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541633" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:24:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15493</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15493</feedburner:origLink></item>
<item>
<title>Evergreen's mini trackball for your laptop</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541638/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15491-Evergreen%27s+mini+trackball+for+your+laptop.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15491/b.jpg" width="128" height="83" border="0" alt="Evergreen%27s+mini+trackball+for+your+laptop" title="Evergreen%27s+mini+trackball+for+your+laptop" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
If you can't live without a TrackBall, you can't live without "Evergreen's Traveler 350", 77 grams, 65×75×22mm for just 2999 yen (28 EUR)...Windows 2000/XP/Vista compatible of course.&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15491-Evergreen%27s+mini+trackball+for+your+laptop.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=0Zy2N7"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=0Zy2N7" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=sYf8LLE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=sYf8LLE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=T3Su34E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=T3Su34E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=aHDvXFe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=aHDvXFe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=1n04qAe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=1n04qAe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=7LxjHwe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=7LxjHwe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6KM78lE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6KM78lE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=cGM3JTE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=cGM3JTE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541638" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:17:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15491</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15491</feedburner:origLink></item>
<item>
<title>31Mbps for Sony's latest USB memory sticks</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541640/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15490-31Mbps+for+Sony%27s+latest+USB+memory+sticks.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15490/b.jpg" width="128" height="83" border="0" alt="31Mbps+for+Sony%27s+latest+USB+memory+sticks" title="31Mbps+for+Sony%27s+latest+USB+memory+sticks" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
A Quick news from Sony, which just release this morning in Japan a newPocketBit USB offering a reading speed of 31Mb per second as well as a new case with a LED light. Storage capacities start at 1GB up to 16. our USMGLX memory key are of course Mac and PC compatible as well as being ReadyBoost approved. Expect a little bit more than 212€ to purchase one of these 16GB key in Japan.&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15490-31Mbps+for+Sony%27s+latest+USB+memory+sticks.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=lmJRD2"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=lmJRD2" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XpcRrGE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XpcRrGE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=TzPJLhE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=TzPJLhE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=PyBFcDe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=PyBFcDe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=0B9GcWe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=0B9GcWe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=d8qRWQe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=d8qRWQe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=GxOg13E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=GxOg13E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=hia5ATE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=hia5ATE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541640" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:14:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15490</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15490</feedburner:origLink></item>
<item>
<title>We love Dailymotion !</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541647/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15487-We+love+Dailymotion+%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15487/b.jpg" width="128" height="83" border="0" alt="We+love+Dailymotion+%21" title="We+love+Dailymotion+%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Great surprise for us to see some of our latest videos on the homepage of Dailymotion US in their respective categories (Gaming and Auto) with Akiba Darts game and the Audi R8 test drive for ManualGear.com!&lt;br /&gt;
Also, we would like to praise Dailymotion for heading in the right direction (compared to Youtube) with the beta tests of a new category for HD content and its support of HD video! Still in Beta test some video may appear a little bit laggy time to time, some make sure to first watch th...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15487-We+love+Dailymotion+%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=4sYPVR"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=4sYPVR" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=UIbEyQE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=UIbEyQE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=JzUQYBE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=JzUQYBE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=yRcv4Ge"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=yRcv4Ge" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=RpIbIae"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=RpIbIae" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=myXJELe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=myXJELe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=fSFJrIE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=fSFJrIE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=WdrPn7E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=WdrPn7E" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541647" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:14:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15487</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15487</feedburner:origLink></item>
<item>
<title>You better wake up in time with the Danger Bomb Clock !</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541643/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15488-You+better+wake+up+in+time+with+the+Danger+Bomb+Clock+%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15488/b.jpg" width="128" height="83" border="0" alt="You+better+wake+up+in+time+with+the+Danger+Bomb+Clock+%21" title="You+better+wake+up+in+time+with+the+Danger+Bomb+Clock+%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Here comes a new "Bomb Clock" with all the necessary features to feel like Jack Bauer every morning, an excellent way to start your days and boost your confidence, saving the human race on a daily basis.&lt;br /&gt;
&lt;br /&gt;
A little bit different from the previous version we talked about, this new danger bomb clock is in fact just a regular alarm clock, which will let you whenever you feel the need to virtually blow-up things once you push the correct button.&lt;br /&gt;
&lt;br /&gt;
Don't forget to turn it off in...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15488-You+better+wake+up+in+time+with+the+Danger+Bomb+Clock+%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=nIZ4aP"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=nIZ4aP" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=9FYolQE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=9FYolQE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=pNLBlIE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=pNLBlIE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=hqEcDXe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=hqEcDXe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=gAXmO2e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=gAXmO2e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=pVEWj3e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=pVEWj3e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=0BAu8ME"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=0BAu8ME" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=zYdxFmE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=zYdxFmE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541643" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:14:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15488</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15488</feedburner:origLink></item>
<item>
<title>April deal from to all Japanese Nintendo Club members, the Super Famicom Classic Controller.</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541651/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15486-April+deal+from+to+all+Japanese+Nintendo+Club+members%2C+the+Super+Famicom+Classic+Controller..html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15486/b.jpg" width="128" height="83" border="0" alt="April+deal+from+to+all+Japanese+Nintendo+Club+members%2C+the+Super+Famicom+Classic+Controller." title="April+deal+from+to+all+Japanese+Nintendo+Club+members%2C+the+Super+Famicom+Classic+Controller." align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
During April, members of Club Nintendo of Japan will have the chance to acquire a mythical object, the Super Famicom Classic Controller. This follows the 2008 calendar Nintendo and the Original Soundtrack Mario Galaxy available since the beginning of the year in the clubs catalogue. And of course this controller will be compatible with all VCs games.&lt;br /&gt;
&lt;br /&gt;
Like most of the good news never comes alone, Nintendo Japan will start selling another mythical accessory, the arcade NeoGeo Stick ...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15486-April+deal+from+to+all+Japanese+Nintendo+Club+members%2C+the+Super+Famicom+Classic+Controller..html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=5t5afZ"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=5t5afZ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=fHmyiSE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=fHmyiSE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=gIq01jE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=gIq01jE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=zAiMYxe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=zAiMYxe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uHnEfIe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uHnEfIe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=kp563Ye"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=kp563Ye" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=EoaIKSE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=EoaIKSE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=GwQbCNE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=GwQbCNE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541651" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:14:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15486</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15486</feedburner:origLink></item>
<item>
<title>The USB Mouse Pad by Evergreen !!</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231541645/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15489-The+USB+Mouse+Pad+by+Evergreen+%21%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15489/b.jpg" width="128" height="83" border="0" alt="The+USB+Mouse+Pad+by+Evergreen+%21%21" title="The+USB+Mouse+Pad+by+Evergreen+%21%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Evergreen does it again and presents a new USB mouse which secretly hides a tiny gamepad, dimensions and weight are 50×85×23mm and 67g, 1600dpi, Windows 2000/XP/Vista compatible and 3499 yen, that is 22.50€.&lt;br /&gt;
&lt;br /&gt;
Now you will have the ultimate weapon to hide your video game addiction from your Boss at the office...&lt;br /&gt;
Note : This product is made by Genius, a famous Taiwanese manufacturer...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15489-The+USB+Mouse+Pad+by+Evergreen+%21%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=530ifW"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=530ifW" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=gqx8uSE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=gqx8uSE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=gR0nTLE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=gR0nTLE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6Uo9Eze"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6Uo9Eze" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Bd4BoAe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Bd4BoAe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=qvTsXbe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=qvTsXbe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=mEv1tgE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=mEv1tgE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BQWKKkE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BQWKKkE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231541645" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 11:14:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15489</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15489</feedburner:origLink></item>
<item>
<title>Samsung Gives You Soul : The Ultimate Essence of Mobile</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/231470039/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15494-Samsung+Gives+You+Soul+%3A+The+Ultimate+Essence+of+Mobile.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15494/b.jpg" width="128" height="83" border="0" alt="Samsung+Gives+You+Soul+%3A+The+Ultimate+Essence+of+Mobile" title="Samsung+Gives+You+Soul+%3A+The+Ultimate+Essence+of+Mobile" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Seoul, Korea, Feb 8, 2008 - Samsung Electronics Co. Ltd., a leading mobile phone and telecommunication equipment provider, today announced the launch of Soul, Samsungs new flagship product for 2008. Soul will officially make its debut during next week's Mobile World Congress in Barcelona, Spain.&lt;br /&gt;
&lt;br /&gt;
Samsung named Soul to honor the completion of its exclusive Ultra Edition series of handsets which offer this perfect balance of design and features.&lt;br /&gt;
&lt;br /&gt;
Soul,...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15494-Samsung+Gives+You+Soul+%3A+The+Ultimate+Essence+of+Mobile.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=lIfaaa"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=lIfaaa" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=dcdqDzE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=dcdqDzE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=7nCIVzE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=7nCIVzE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=xp6Quce"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=xp6Quce" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XWATWee"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XWATWee" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BUvQjKe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BUvQjKe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=RWBoJPE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=RWBoJPE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=2vzMXtE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=2vzMXtE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/231470039" height="1" width="1"/&gt;</description>
<pubDate>Fri, 08 Feb 2008 08:45:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15494</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15494</feedburner:origLink></item>
<item>
<title>Mario World Slippers for Geeky Men</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/230851126/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15485-Mario+World+Slippers+for+Geeky+Men.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15485/b.jpg" width="128" height="83" border="0" alt="Mario+World+Slippers+for+Geeky+Men" title="Mario+World+Slippers+for+Geeky+Men" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Are you are a fan of Mario and his imaginary world? Well treat yourself nicely with these great Mario World flavored slippers... &lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.co

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -0,0 +1,187 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.macbidouille.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.macbidouille.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>MacBidouille.com</title>
<link>http://www.macbidouille.com/</link>
<description>Bidouille Hardware sur Mac</description>
<language>fr</language>
<copyright>Copyright 2001-2002, Macbidouille.com</copyright>
<managingEditor>lionel@macbidouille.com (Lionel)</managingEditor>
<webMaster>w00kie@macbidouille.com (w00kie)</webMaster>
<pubDate>Wed, 30 Apr 2008 18:24:50 +0200</pubDate>
<lastBuildDate>Thu, 01 May 2008 16:46:15 +0200</lastBuildDate>
<generator>Custom RSS Generator by w00kie</generator>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.macbidouille.com/macbidouille.rss" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>Une Radeon HD 3870 bi-plateforme</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280894018/</link>
<pubDate>Wed, 30 Apr 2008 18:24:50 +0200</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>Nous vous &lt;a href="http://www.macbidouille.com/news/2008-04-09/#16155" target="_blank"&gt;annoncions il y a 3 semaines&lt;/a&gt; le retour potentiel de l'ATI Radeon HD 3870 en BTO pour MacPro. L'information semble se confirmer d'après XLR8 et d'autres sources.&lt;br /&gt;
&lt;br /&gt;
Cette carte graphique, compatible PCIe 2.0 et 1.0, offrira 512 Mo de DDR4 VRAM, sera supportée par tous les MacPro, bootera indifféremment sous MacOS ou Windows XP, et annoncée comme ayant des performances similaires à la Geforce 8800GT (à confirmer).&lt;br /&gt;
&lt;br /&gt;
Toutefois une ombre au tableau. Tandis que le hardware serait apte à supporter le CrossFire (pour jumeler deux cartes), cette fonctionalité est compatible Windows uniquement.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=KSpHkX"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=KSpHkX" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280894018" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265749&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16265</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-30%2F%2316265</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-30/#16265</feedburner:origLink></item>
<item>
<title>Article NAS - QNAP, Synology et LaCie au banc d'essai</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280681601/</link>
<pubDate>Wed, 30 Apr 2008 11:43:53 +0200</pubDate>
<author>linathael@macbidouille.com (Eric)</author>
<description>Voici la &lt;a href="http://www.macbidouille.com/articles/246/" target=_blank&gt;seconde partie&lt;/a&gt; de notre série d'articles consacrés aux NAS après &lt;a href="http://www.macbidouille.com/articles/235/" target=_blank&gt;une première&lt;/a&gt; revue d'effectif. &lt;br /&gt;
La nouvelle génération de NAS est bien là, apportant de réels gains de performance tout en restant simple d'accès autant pour le paramètrage que l'utilisation. Nous avons étendu notre sélection de modèles à deux constructeurs majeurs Synology et LaCie, afin de mieux comparer les produits grand public de QNAP.&lt;br /&gt;
Une fois encore, nous nous sommes limités à l'installation, au paramètrage, et à l'évaluation des performances des différents NAS, avec à la clé quelques surprises. &lt;br /&gt;
Pour en savoir plus : &lt;a href="http://www.macbidouille.com/articles/246/" target=_blank&gt;c'est ici&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Dans le prochain volet de notre série d'articles, nous testerons l'utilisation d'un NAS comme serveur web (html et PHP) et FTP.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=9hAdAz"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=9hAdAz" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280681601" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265696&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16264</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-30%2F%2316264</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-30/#16264</feedburner:origLink></item>
<item>
<title>iTunes turns five</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280644886/</link>
<pubDate>Wed, 30 Apr 2008 10:23:47 +0200</pubDate>
<author>kalomir@macbidouille.com (Kalomir)</author>
<description>Si vous l'avez vu, peut-être vous êtes-vous, vous aussi, demandés un instant ce que voulait donc dire ce slogan, "iTunes turns five" ?&lt;br /&gt;
Bien sûr, il ne s'agit pas d'une cinquième version du logiciel iTunes (on a depuis longtemps dépassé ce millésime) : ce slogan nous rappele que ce qui s'appelait alors "iTunes music store", deuxième étage de la fusée iPod (lancée dans un scepticisme quasi-général en 2001), ouvrait ses portes il y a cinq ans aux Etats-Unis. &lt;br /&gt;
On pourrait presque passer à côté de l'info tant l'iTunes Store aujourd'hui s'est imposé comme une évidence. Mais rien que cela vaut bien une brève d'ordre, disons, "historique".&lt;br /&gt;
Chacun sait qu'Apple computers (devenu depuis lors Apple, inc.), a réussi une mue historique du monde informatique vers l'univers des loisirs numériques, grâce à la musique en ligne. Négociateur avisé, Steve Jobs a su imposer aux majors un mode de distribution et de rémunération qui a durablement installé son juke-box en ligne en tête de sa catégorie. La concurrence cherche encore la parade, tandis que l'ITS s'est aujourd'hui orienté vers la vidéo, avant d'évoluer demain vers des formules illimitées ? Qui sait.&lt;br /&gt;
En 2003, donc, alors que le web ne bruissait que du futur G5, promis à reléguer le G4 au rang "d'ordinateur de secrétaire" (Lionel dixit), ce n'est finalement pas cet ultime avatar du PowerPC qui aura permis la renaissance puis l'essor des parts de marché d'Apple. &lt;br /&gt;
Plus discret, peut-être, c'est le pari de l'IT(M)S qui s'est avéré décisif sur le long terme. Pour faciliter son entrée en douceur dans l'univers "d'en face", iTunes a été un remarquable cheval de Troie pour Apple. Pour lui apporter la trésorerie nécessaire à la transition vers Intel, les revenus de la musique en ligne ont été capitaux. Pour conférer à Apple, alors en déclin, la place d'outsider perpétuellement innovant qui est la sienne aujourd'hui, l'ITMS a marqué un tournant proprement historique — un terme qu'on n'emploie pas facilement dans le monde des nouvelles technologies.&lt;br /&gt;
Quel succès souhaiter désormais à la société qui a réussi ce beau come back à l'américaine ? Tout business mis à part, ce serait sans doute de savoir recréer un peu du lien spécial qui l'attachait par le passé à ses fans, une magie que la croissance du chiffre d'affaires, au-delà du cercle des actionnaires, n'a pas su remplacer...
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=qF7P6D"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=qF7P6D" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280644886" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265681&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16263</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-30%2F%2316263</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-30/#16263</feedburner:origLink></item>
<item>
<title>Microsoft : Messenger 7 et XP SP 3 [Maj]</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280576250/</link>
<pubDate>Wed, 30 Apr 2008 08:00:20 +0200</pubDate>
<author>yoac@macbidouille.com (Yoc)</author>
<description>Deux mises à jour hier sont sorties des serveurs de Microsoft.&lt;br /&gt;
La première concerne les utilisateurs de Windows et de Boot Camp puisqu'il s'agit de du dernier &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=68c48dad-bc34-40be-8d85-6bb4f56f5110&amp;displaylang=en" target=_blank&gt;Service Pack de Windows XP&lt;/a&gt;. Pas de nouvelles fonctionnalités flagrantes pour l'utilisateur, mais elle a le mérite de rassembler l'ensemble des mises à jour sécurité que Microsoft a réalisé depuis la sortie du Service Pack 2. L'installation sur un disque formaté d'un Windows XP à jour devient maintenant beaucoup plus rapide.&lt;br /&gt;
Attention si vous utilisez Boot Camp, Apple recommande de mettre à jour ce dernier avec &lt;a href="http://www.macbidouille.com/news/2008-04-25/#16241 "&gt;la version 2.1 des drivers&lt;/a&gt; avant d'installer ce Service Pack.&lt;br /&gt;
&lt;br /&gt;
L'autre mise à jour, plus attendue pour les utilisateurs de Mac, est &lt;a href="http://www.microsoft.com/mac/products/messenger/default.mspx" target=_blank&gt;Microsoft Messenger 7&lt;/a&gt;. Mais là encore, vous risquez d'être déçu puisque l'expérience utilisateur n'est pas vraiment changée. La seule grosse nouveauté est le support de la vidéo... pour les comptes entreprises sur un Microsoft Office Communications Server.&lt;br /&gt;
&lt;br /&gt;
[Maj]&lt;br /&gt;
Windows XP SP3 au dernier moment a été retardé par la découverte d'un bug affectant Dynamics Retail Management System (RMS), un progiciel développé par Microsoft. Seul problème, cette mise à jour a fait l'objet de nombreuses news hier avec des liens directs de téléchargement sur les serveurs de Microsoft, qui ne sont toujours pas désactivés à l'heure où nous écrivons.&lt;br /&gt;
Chose amusante, ce bug est aussi présent dans le Service Pack 1 de Vista qui n'a pas été retiré des mises à jour automatiques. Cela prouverait-il que Vista a décidément bien du mal à s'imposer en entreprise, à tel point que 100% des utilisateurs du progiciel RMS utilisent encore Windows XP ?
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=dHy9wg"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=dHy9wg" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280576250" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265669&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16262</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-30%2F%2316262</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-30/#16262</feedburner:origLink></item>
<item>
<title>Paragon Rescue Kit en beta-test [MàJ]</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280562279/</link>
<pubDate>Wed, 30 Apr 2008 07:24:04 +0200</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>&lt;center&gt;&lt;img src="http://files.macbidouille.com/news/200804/rk-mac_blue.png"&gt;&lt;/center&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.paragon-software.com" target="_blank"&gt;Paragon&lt;/a&gt; a travaillé ces derniers temps sur un nouveau logiciel de récupération des données. &lt;a href="http://www.paragon-software.com/fr/home/rk-mac/" target="_blank"&gt;&lt;i&gt;Paragon Rescue Kit for Mac OS X Lite&lt;/i&gt;&lt;/a&gt; sera proposé gratuitement et aura pour objectif de recopier les données crititques sur un volume externe ou réseau. Il intègre également des capacités de sauvegarde et de restauration. Notons également qu'il fonctionne avec les volumes en NTFS.&lt;br /&gt;
&lt;br /&gt;
Nous proposons à nos lecteurs d'être beta testeur de ce produit, et de participer à un sujet sur les forums pour rapporter:&lt;br /&gt;
&lt;br /&gt;
- &lt;b&gt;Bug&lt;/b&gt; (espérons qu'il y en ait peu !)&lt;br /&gt;
Merci de détailler au maximum les circonstances et votre config.&lt;br /&gt;
&lt;br /&gt;
- &lt;b&gt;Ergonomie&lt;/b&gt;: écrivez vos suggestions.&lt;br /&gt;
&lt;br /&gt;
- &lt;b&gt;Nouvelles fonctionnalités&lt;/b&gt;&lt;br /&gt;
Le temps est compté entre la beta et la GA (general availability). Aussi, Paragon n'aura probablement pas le temps de changer de direction dans la première mouture, mais si vous êtes unanimes sur un point, ils feront des efforts.&lt;br /&gt;
&lt;br /&gt;
Pour &lt;b&gt;télécharger&lt;/b&gt; la beta, cliquez &lt;a href="http://www.paragon-software.com/fr/home/rk-mac/beta-test.html" target="_blank"&gt;ICI&lt;/a&gt;&lt;br /&gt;
Page produit: &lt;a href="http://www.paragon-software.com/fr/home/rk-mac/" target="_blank"&gt;ICI&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Pour &lt;b&gt;installer&lt;/b&gt; le logiciel:&lt;br /&gt;
- Montez l'image disque téléchargée.&lt;br /&gt;
- Gravez l'image &lt;i&gt;Rescue Kit for Mac OS X - Lite Beta1.iso&lt;/i&gt; avec Utilitaire Disque Dur&lt;br /&gt;
- Redémarrez à partir du CD&lt;br /&gt;
&lt;br /&gt;
Pour &lt;b&gt;réagir&lt;/b&gt;: &lt;a href="http://forum.macbidouille.com/index.php?showtopic=265667&amp;view=getnewpost" target="_blank"&gt;&lt;u&gt;sur les forums&lt;/u&gt;&lt;/a&gt; (inscription aux forums requise).&lt;br /&gt;
&lt;br /&gt;
Paragon suivra le fil de discussion, c'est le point d'entrée pour toutes vos remarques et vos échanges avec eux. Merci de rester concentré sur le sujet.&lt;br /&gt;
&lt;br /&gt;
[MàJ] L'image disque à graver contient un système Linux bootable. Compatible Mac-Intel uniquement.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=wFRw3q"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=wFRw3q" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280562279" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265667&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16261</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-30%2F%2316261</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-30/#16261</feedburner:origLink></item>
<item>
<title>Mise à jour de Java pour Mac OS X 10.5</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280392732/</link>
<pubDate>Wed, 30 Apr 2008 01:08:02 +0200</pubDate>
<author>bad_duck@macbidouille.com (bad_duck)</author>
<description>Une mise à jour de Java pour Leopard est disponible via le panneau de mise à jour de logiciel (58 Mo), au programme :&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Cette Mise à jour 1 de Java pour Mac OS X 10.5 installe Java SE 6 version 1.6.0_05 sur votre Mac. Cette mise à jour ne remplace pas l’installation existante de J2SE 5.0 et ne modifie pas la version par défaut de Java.&lt;br /&gt;
&lt;br /&gt;
Pour plus d’informations sur cette mise à jour, visitez le site web suivant : http://docs.info.apple.com/article.html?artnum=307403-fr.&lt;/blockquote&gt;&lt;a href="http://docs.info.apple.com/article.html?artnum=307403-fr" target="_blank"&gt;@ Plus d'informations&lt;/a&gt;
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=roOrCE"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=roOrCE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280392732" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265658&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16260</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-30%2F%2316260</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-30/#16260</feedburner:origLink></item>
<item>
<title>L'iPhone au Canada en 2008</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280102634/</link>
<pubDate>Tue, 29 Apr 2008 15:45:58 +0200</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>L'iPhone sera proposé cette année au Canada selon &lt;a href="http://www.thestar.com/Business/article/419503" target="_blank"&gt;The Star&lt;/a&gt; qui a interviewé Ted Rogers, CEO de Rogers Communications. C'était le seul espoir pour les Canadiens d'avoir l'iPhone, Rogers étant le seul opérateur mobile fonctionnant avec la norme GSM sur ce territoire, depuis le rachat de Microcell Telecommunications en 2004.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=XPUGAf"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=XPUGAf" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280102634" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265586&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16259</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-29%2F%2316259</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-29/#16259</feedburner:origLink></item>
<item>
<title>Le flou sur Montevina</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280084639/</link>
<pubDate>Tue, 29 Apr 2008 15:19:17 +0200</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>Suite à l'annonce du nouvel &lt;a href="http://tracker.tradedoubler.com/pan/TrackerServlet?p=2701&amp;a=403273&amp;g=0&amp;url=http://store.apple.com/Apple/WebObjects/francestore?family=iMac&amp;aosid=p204" target="_blank"&gt;iMac&lt;/a&gt; et ses spécifications étonnantes, un bruit s'est très vite répandu sur son architecture technique. De nombreux sites ont confondu nom de plateforme hardware et nom de génération de CPU. Toujours est-il que les entrailles de l'iMac haut de gamme semblent exotiques.&lt;br /&gt;
&lt;br /&gt;
Selon plusieurs sources web, le CPU de l'iMac est un version particulière du Penryn 45-nm, mais non présente dans le catalogue Intel. Ce processeur offre des cadences de 2,4 à 2,66 GHz et de 2,8 à 3,06 GHz, 6 MB de cache niveau 2, et un FSB à 1066 MHz. Or l'architecture de plateforme Santa Rosa (utilisée pour les précédents iMac) offre une cadence de FSB maximale de 800 MHz. Pour cela, deux possibilités:&lt;br /&gt;
- Le CPU supporte effectivement une FSB à 1066 MHz, mais tourne sur une architecture à 800 MHz.&lt;br /&gt;
- L'architecture Santa Rosa a été overclockée à 1066 MHz.&lt;br /&gt;
&lt;br /&gt;
Autant le voile semble levé sur le CPU utilisé, le Penryn pouvant tourner sur plateforme Santa Rosa et Montevina, autant un mystère subsiste sur les chipsets l'accompagnant. Apple semblait utiliser Montevina, en s'appuyant sur un bus à 1066 MHz. Mais avec un CPU non référencé chez Intel il se pourrait également que Cupertino ait eu l'opportunité d'utiliser Santa Rosa overclockée, offrant une mise à jour iMac en attendant l'arrivée et le déploiement de Montevina.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=c0Od3b"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=c0Od3b" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280084639" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265582&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16258</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-29%2F%2316258</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-29/#16258</feedburner:origLink></item>
<item>
<title>Livraison d'Open Computers</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/280068261/</link>
<pubDate>Tue, 29 Apr 2008 14:40:00 +0200</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>Alors que nous mettions en doute la crédibilité de Psystar, la livraison des Open Computers - ces ordinateurs assemblés faisant tourner MacOS X - a débuté. Petit rappel des faits &lt;a href="http://www.macbidouille.com/news/2008-04-14/#16181" target="_blank"&gt;ICI&lt;/a&gt; et &lt;a href="http://www.macbidouille.com/news/2008-04-16/#16195" target="_blank"&gt;LA&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Gizmodo propose une vidéo (&lt;a href="http://gizmodo.com/384526/exclusive-video-psystar-in-the-wild?autoplay=true" target="_blank"&gt;ICI&lt;/a&gt;) et une galerie photo (&lt;a href="http://gizmodo.com/384854/exclusive-photos-psystars-case-shipping-contents" target="_blank"&gt;ICI&lt;/a&gt;) d'une machine reconnue par ISA comme un MacPro.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Merci Mac Zangdar&lt;/i&gt;
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=QqduN8"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=QqduN8" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/280068261" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265576&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16257</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2008-04-29%2F%2316257</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2008-04-29/#16257</feedburner:origLink></item>
<item>
<title>Nouvel iMac, Montevina Inside</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/279869283/</link>
<pubDate>Tue, 29 Apr 2008 07:42:57 +0200</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>Avec le nouvel iMac sorti hier, Apple lance sa première machine équipée de la dernière plateforme mobile Intel, Montevina, qui succède à Santa Rosa. Cette nouvelle génération devait être dévoilée au Computex Tapei 2008, qui a lieu du 3 au 7 Juin. Apple semble avoir un partenariat privilégié avec Intel et est le premier à proposer un équipement intégrant Montevina.&lt;br /&gt;
&lt;br /&gt;
Montevina supporte le Penryn 45 nm Core 2 Duo qui est actuellement utilisé dans les dernières versions de plateforme Santa Rosa (sur MacBook et précédent iMac). Et elle ouvre les portes vers le Core 2 Duo supportant :&lt;br /&gt;
- un FSB -Front Side Bus- à 1066 MHz&lt;br /&gt;
- une cadence CPU jusqu'à 3.06 GHz&lt;br /&gt;
- le set d'instructions &lt;a href="http://en.wikipedia.org/wiki/SSE4" target="_blank"&gt;SSE4&lt;/a&gt;&lt;br /&gt;
- une consommation plus basse.&lt;br /&gt;
Le CPU "Montevina" haut de gamme ne devrait néanmoins pas être présent dans les prochain MacBook Pro Montevina.&lt;br /&gt;
&lt;br /&gt;
La puce Intel Mobile 45 Express, aka Cantiga, faisant partie de la plateforme Montevina, offrira un GPU Intel GMA X4500 prometeur. Il fontionnera toujours avec mémoire partagée, avec une cadence entre 533 et 640 MHz.&lt;br /&gt;
&lt;br /&gt;
La plateforme Montevina apporte également le support de la RAM DDR2 et DDR3. Les modules DDR2-667, DDR2-800, DDR3-800 et DDR3-1066 format SO-DIMM seront compatibles. La norme d'affichage &lt;a href="http://en.wikipedia.org/wiki/DisplayPort" target="_blank"&gt;DisplayPort&lt;/a&gt; étant également supportée il faudra vérifier si le nouvel iMac la supporte d'ores et déjà.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=BIS34G"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=BIS34G" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/279869283" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=265549&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#16256</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%

View File

@ -0,0 +1,168 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Akihabaranews.com</title>
<link>http://www.akihabaranews.com</link>
<description>Akihabara News : Your Leading News provider on Gadgets and Hi-Tech stuff from Akihabara in Tokyo Japan and in other Asian Countries</description>
<language>en</language>
<pubDate>Wed, 05 Dec 2007 01:16:53 GMT</pubDate>
<lastBuildDate>Wed, 05 Dec 2007 01:16:53 GMT</lastBuildDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>Akihabaranews RSS Feed</generator>
<managingEditor>info@akihabaranews.com</managingEditor>
<webMaster>webmaster@akihabaranews.com</webMaster>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Akihabaranews_en" type="application/rss+xml" /><feedburner:emailServiceId>234204</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>XNOTE P300, the new 13.3” LED-backlight Notebook from LG</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194824813/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15201-XNOTE+P300%2C+the+new+13.3%E2%80%9D+LED-backlight+Notebook+from+LG.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15201/b.jpg" width="128" height="83" border="0" alt="XNOTE+P300%2C+the+new+13.3%E2%80%9D+LED-backlight+Notebook+from+LG" title="XNOTE+P300%2C+the+new+13.3%E2%80%9D+LED-backlight+Notebook+from+LG" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
WOW, that's what I call a nice notebook, elegantly dressed in an orange dress... Ok, back to reality; here you are, the XNOTE P300, a 13.3” notebook with a LED-backlight (1280x800), powered by a Core 2 Duo CPU (2.4GHz) T7500, 2GB of RAM, a GeForce 8600M video card (256MB of VRAM), a 1.3Mpix camera, WWAN, HDMI and for just 1.6kg and for just 1900 EUR! Very cheap if the cute girl in the orange dress is included !&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15201-XNOTE+P300%2C+the+new+13.3%E2%80%9D+LED-backlight+Notebook+from+LG.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=8jodtJ"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=8jodtJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Hg6NzPC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Hg6NzPC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=5pFpZ0C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=5pFpZ0C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=L7n0pYc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=L7n0pYc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Cx6Bzgc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Cx6Bzgc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=fDNIwNc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=fDNIwNc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=kEd6SsC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=kEd6SsC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=LMiDMRC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=LMiDMRC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194824813" height="1" width="1"/&gt;</description>
<pubDate>Tue, 04 Dec 2007 08:22:32 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15201</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15201</feedburner:origLink></item>
<item>
<title>Nec Launches the Lui Branded Personal Solution in Japan! Hi-res Picture - Scoop.</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194807956/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15200-Nec+Launches+the+Lui+Branded+Personal+Solution+in+Japan%21+Hi-res+Picture+-+Scoop..html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15200/b.jpg" width="128" height="83" border="0" alt="Nec+Launches+the+Lui+Branded+Personal+Solution+in+Japan%21+Hi-res+Picture+-+Scoop." title="Nec+Launches+the+Lui+Branded+Personal+Solution+in+Japan%21+Hi-res+Picture+-+Scoop." align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Stunning, Amazing ! Yes, these are the words I will use to describe this new 'On Demand' system from NEC, which will be displayed tomorrow at the iEXPO in Japan.&lt;br /&gt;
&lt;br /&gt;
Simply put, NEC will release a full 'On Demand' System for personal/home usage with a central server and different clients, which have the shape of a Notebook (a Vaio UX like shape). All clients will not have any OS installed on them, they will remotely access to the server in order to give you access to your Vista OS (Micr...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15200-Nec+Launches+the+Lui+Branded+Personal+Solution+in+Japan%21+Hi-res+Picture+-+Scoop..html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=M7Gb1q"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=M7Gb1q" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wPrgW4C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wPrgW4C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NN67qvC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NN67qvC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6VDzCLc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6VDzCLc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=7Ope0Ic"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=7Ope0Ic" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=jRe4n9c"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=jRe4n9c" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=hGEDiJC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=hGEDiJC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=TflwcNC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=TflwcNC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194807956" height="1" width="1"/&gt;</description>
<pubDate>Tue, 04 Dec 2007 07:27:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15200</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15200</feedburner:origLink></item>
<item>
<title>Just for the the fun of it. The0123 Japanese Moving Company Doraemon Campaign.</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194797145/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15199-Just+for+the+the+fun+of+it.+The0123+Japanese+Moving+Company+Doraemon+Campaign..html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15199/b.jpg" width="128" height="83" border="0" alt="Just+for+the+the+fun+of+it.+The0123+Japanese+Moving+Company+Doraemon+Campaign." title="Just+for+the+the+fun+of+it.+The0123+Japanese+Moving+Company+Doraemon+Campaign." align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
The Japanese Moving Company The0123 is becoming very famous in Japan (was already famous anyway) for its lord so dasai (Old fashioned) style advertisements, and their usage of the Doraemon character as free gifts, in the shape of different products like a portable fridge, or like today, a Steamer. &lt;br /&gt;
&lt;br /&gt;
Special note to the “KAWAIIIIIIII” in the video... priceless ! &lt;br /&gt;
&lt;br /&gt;
The 0123 Moving Company Doraemon Campaign in JapanUploaded by AkihabaraNews&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15199-Just+for+the+the+fun+of+it.+The0123+Japanese+Moving+Company+Doraemon+Campaign..html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=tk2BMa"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=tk2BMa" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=GJPLtnC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=GJPLtnC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=zo5joYC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=zo5joYC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=K9igVqc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=K9igVqc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=IHNv14c"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=IHNv14c" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wVaSz2c"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wVaSz2c" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wqgbLlC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wqgbLlC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uCWAyZC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uCWAyZC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194797145" height="1" width="1"/&gt;</description>
<pubDate>Tue, 04 Dec 2007 06:59:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15199</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15199</feedburner:origLink></item>
<item>
<title>Looking for a crappy 5Mpix camera under 62 EUR ?</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194774081/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15198-Looking+for+a+crappy+5Mpix+camera+under+62+EUR+%3F.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15198/b.jpg" width="128" height="83" border="0" alt="Looking+for+a+crappy+5Mpix+camera+under+62+EUR+%3F" title="Looking+for+a+crappy+5Mpix+camera+under+62+EUR+%3F" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Think DC539 from Exemode ! With a compact size of 86x57x26.5mm and only 83g, you will have a point and shoot camera with 5.1Mpix (CMOS), a 2.4 TFT screen, supporting SD cards up to 1GB, and able to record video in Motion Jpeg at 30fps in VGA... Any doubt on the quality of this product ? Just look at the lens in order to confirm your scariest thoughts.&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15198-Looking+for+a+crappy+5Mpix+camera+under+62+EUR+%3F.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=n2eVXB"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=n2eVXB" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=AslYX9C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=AslYX9C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=P2jAYTC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=P2jAYTC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ZcJAuAc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ZcJAuAc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uSnywXc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uSnywXc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=CbQ127c"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=CbQ127c" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=42W2GFC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=42W2GFC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=WvVW0KC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=WvVW0KC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194774081" height="1" width="1"/&gt;</description>
<pubDate>Tue, 04 Dec 2007 05:48:15 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15198</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15198</feedburner:origLink></item>
<item>
<title>ASP-S750, a new Stylish set of speakers for your PC or DAP from Elecom</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194768091/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15197-ASP-S750%2C+a+new+Stylish+set+of+speakers+for+your+PC+or+DAP+from+Elecom.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15197/b.jpg" width="128" height="83" border="0" alt="ASP-S750%2C+a+new+Stylish+set+of+speakers+for+your+PC+or+DAP+from+Elecom" title="ASP-S750%2C+a+new+Stylish+set+of+speakers+for+your+PC+or+DAP+from+Elecom" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Surfing on the iPOD/Apple fame, Elecom will start selling in Japan a new set of Stereo Speakers, the ASP-S750 series, which tries as much as possible to give a sense of elegance to such products in order to be used either with a DAP (an iPOD) or a PC (a MacBook Pro). Our speakers offer an output of 2x2.5W for a size of 60x133x84mm.&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15197-ASP-S750%2C+a+new+Stylish+set+of+speakers+for+your+PC+or+DAP+from+Elecom.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=0N5pEn"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=0N5pEn" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=7azrV6C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=7azrV6C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=9lfTQmC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=9lfTQmC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wBFcsIc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wBFcsIc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=bphMhUc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=bphMhUc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=fFqgwic"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=fFqgwic" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wCgJO2C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wCgJO2C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=b2isp0C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=b2isp0C" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194768091" height="1" width="1"/&gt;</description>
<pubDate>Tue, 04 Dec 2007 05:27:49 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15197</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15197</feedburner:origLink></item>
<item>
<title>Creative Zen 32GB in 2 weeks in Japan</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194756091/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15196-Creative+Zen+32GB+in+2+weeks+in+Japan.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15196/b.jpg" width="128" height="83" border="0" alt="Creative+Zen+32GB+in+2+weeks+in+Japan" title="Creative+Zen+32GB+in+2+weeks+in+Japan" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Creative Japan announced that they will start selling the Creative Zen ZN-Z32G-BK in a 32GB version from the middle of December for a little bit more than 250 EUR. So basically, nothing really new here, just a memory boost to 32GB.&lt;br /&gt;
Specs are still the same with a 2.5” QVGA LCD, supporting MP3/WMA/AAC/WAV, WMV/MPEG-SP/DivX/XviD/Motion-JPEG, and JPEG, with a SD card slot (SDHC), Tuner FM, all of this in a compact and light body (83x55x11.3 and 65g).&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15196-Creative+Zen+32GB+in+2+weeks+in+Japan.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=Jma90O"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=Jma90O" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=j9CJXhC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=j9CJXhC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=vphSmyC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=vphSmyC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=QR7mWqc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=QR7mWqc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=fyTRcqc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=fyTRcqc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=D1LmJWc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=D1LmJWc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=vQLRBiC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=vQLRBiC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NFUGJXC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NFUGJXC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194756091" height="1" width="1"/&gt;</description>
<pubDate>Tue, 04 Dec 2007 05:07:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15196</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15196</feedburner:origLink></item>
<item>
<title>Hands on the Canon EOS 40D!</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194311253/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15191-Hands+on+the+Canon+EOS+40D%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15191/b.jpg" width="128" height="83" border="0" alt="Hands+on+the+Canon+EOS+40D%21" title="Hands+on+the+Canon+EOS+40D%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
No need to introduce Canon, and no need to introduce the EOS range either; only one question remains... is it even better than before?&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/review-87-X.html" class="lngrn2" target="_blank"&gt;Click here to access the review of the Canon EOS 40D!&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15191-Hands+on+the+Canon+EOS+40D%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=Lgk7EJ"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=Lgk7EJ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=KaqSN6C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=KaqSN6C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=YCdovXC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=YCdovXC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Qjm24ic"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Qjm24ic" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=vtizVTc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=vtizVTc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=eB2wkBc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=eB2wkBc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=8GXHq7C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=8GXHq7C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=crbjX9C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=crbjX9C" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194311253" height="1" width="1"/&gt;</description>
<pubDate>Mon, 03 Dec 2007 11:11:45 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15191</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15191</feedburner:origLink></item>
<item>
<title>Tekbright, the Digital Photo Frame by Toshiba</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194272606/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15190-Tekbright%2C+the+Digital+Photo+Frame+by+Toshiba.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15190/b.jpg" width="128" height="83" border="0" alt="Tekbright%2C+the+Digital+Photo+Frame+by+Toshiba" title="Tekbright%2C+the+Digital+Photo+Frame+by+Toshiba" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
In case you haven't got a Digital Photo Frame yet, this might be a chance to finally make it happen.&lt;br /&gt;
So far, many products of this kind were lacking on one end or the other, not compatible with the most common memory cards, ridiculous resolutions, and expensive price tag... all this may not chance from one day to the other (unless the Koreans come up with a solution of their own), but things tend to get better, as this Toshiba Tekbright shows.&lt;br /&gt;
&lt;br /&gt;
Featuring a built-in flash memory...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15190-Tekbright%2C+the+Digital+Photo+Frame+by+Toshiba.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=to6ZtW"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=to6ZtW" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BN1YM9C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BN1YM9C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=KvEEJ2C"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=KvEEJ2C" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XAj9agc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XAj9agc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wGv36Ec"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wGv36Ec" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ufEB0Wc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ufEB0Wc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=elSAuxC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=elSAuxC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=sRqg0TC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=sRqg0TC" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/194272606" height="1" width="1"/&gt;</description>
<pubDate>Mon, 03 Dec 2007 09:19:54 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15190</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15190</feedburner:origLink></item>
<item>
<title>iSTATION U43: In-depth review; feast your EYES !</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/194236031/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15195-iSTATION+U43%3A+In-depth+review%3B+feast+your+EYES+%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15195/b.jpg" width="128" height="83" border="0" alt="iSTATION+U43%3A+In-depth+review%3B+feast+your+EYES+%21" title="iSTATION+U43%3A+In-depth+review%3B+feast+your+EYES+%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
If you are big fan of PMP's, well you are now surely aware that Korea is the leading country in this matter, no doubt about this. And the latest marvel from this world is the the new iSTATION U43. While this device has yet to reach the USA or EUROPE, the Korean website PCBee, came out today with a stunning review with gorgeous images and one video (see below) of this latest wonder from iSTATION.&lt;br /&gt;
&lt;br /&gt;
Even if most of you guys may not be able to read Korean, go and feast your eyes with th...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15195-iSTATION+U43%3A+In-depth+review%3B+feast+your+EYES+%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=zO2qt9"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=zO2qt9" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=eXpNaLC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=eXpNaLC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=rrfo9SC"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=rrfo9SC" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=8s9vuRc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=8s9vuRc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=y9scNfc"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=y9scNfc" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://fe

View File

@ -0,0 +1,174 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Actus ciné : Interviews</title>
<link>http://www.allocine.fr/article/rubarticle_gen_crubrique=23005.html</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Thu, 25 Sep 2008 18:30:00 GMT</lastBuildDate>
<pubDate>Thu, 25 Sep 2008 18:30:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine/interviews" type="application/rss+xml" /><item>
<category />
<title>Retour à la prison d'Abuh Graib...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/401445613/fichearticle_gen_carticle=18432334.html</link>
<description>&lt;p&gt;Errol Morris s'est entretenu avec les militaires impliqués dans les tristes photographies de la prison d'Abuh Graib, en Irak. Il en a tiré un documentaire édifiant... AlloCiné l'a rencontré.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432334.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 24 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/401445613" height="1" width="1"/&gt;</description>
<pubDate>Wed, 24 Sep 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18432334</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/62/00/18988911.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432334.html</feedburner:origLink></item>
<item>
<category />
<title>"Wackness" par son réalisateur Jonathan Levine</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/401445614/fichearticle_gen_carticle=18432336.html</link>
<description>&lt;p&gt;L'adolescence, New York, l'émergence du Hip-hop... Autant de sujets qui ont inspiré le très prometteur Jonathan Levine pour son film "Wackness". Rencontre...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432336.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 24 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/401445614" height="1" width="1"/&gt;</description>
<pubDate>Wed, 24 Sep 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18432336</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/62/02/18988908.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432336.html</feedburner:origLink></item>
<item>
<category />
<title>"Le Royaume Interdit" : rencontres musclées</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/401017974/fichearticle_gen_carticle=18424550.html</link>
<description>&lt;p&gt;A l'occasion de la sortie en salles du "Royaume interdit", rencontres avec la star asiatique Jackie Chan et le réalisateur Rob Minkoff. Ce dernier, qui est aussi le papa du "Roi Lion", en profite pour nous donner sa vision du cinéma d'animation.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18424550.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 23 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/401017974" height="1" width="1"/&gt;</description>
<pubDate>Tue, 23 Sep 2008 19:45:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18424550</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/62/07/18989074.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18424550.html</feedburner:origLink></item>
<item>
<category />
<title>En musique avec Christophe Barratier !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/397055332/fichearticle_gen_carticle=18430572.html</link>
<description>&lt;p&gt;Le Front Populaire, le Paris des années 30 reconstitué, la bande-son, sa rencontre avec Nora Arnezeder... Le réalisateur Christophe Barratier nous dit tout sur "Faubourg 36", le film français événement de cette rentrée...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18430572.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 23 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/397055332" height="1" width="1"/&gt;</description>
<pubDate>Tue, 23 Sep 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18430572</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/43/89/18981647.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18430572.html</feedburner:origLink></item>
<item>
<category />
<title>"La Belle personne" : rencontre avec Léa Seydoux et Grégoire Leprince-Ringuet</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/397827898/fichearticle_gen_carticle=18432156.html</link>
<description>&lt;p&gt;Deux des jeunes interprètes de "La Belle personne" de Christophe Honoré, Grégoire Leprince-Ringuet et la révélation Léa Seydoux, répondent aux questions d'AlloCiné. &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432156.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Samedi 20 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/397827898" height="1" width="1"/&gt;</description>
<pubDate>Sat, 20 Sep 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18432156</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/59/79/18988083.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432156.html</feedburner:origLink></item>
<item>
<category />
<title>Madonna fait son cinéma</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/400607650/fichearticle_gen_carticle=18432283.html</link>
<description>&lt;p&gt;La Ciccone passe à la réalisation avec "Obscénité et vertu", en salles cette semaine. Rencontre...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432283.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 17 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/400607650" height="1" width="1"/&gt;</description>
<pubDate>Wed, 17 Sep 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18432283</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/61/03/18988618.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432283.html</feedburner:origLink></item>
<item>
<category />
<title>Steve &amp; Juliette</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/400607651/fichearticle_gen_carticle=18432282.html</link>
<description>&lt;p&gt;"Coup de foudre à Rhode Island" vu par Juliette Binoche, Steve Carell et le réalisateur Peter Hedges...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18432282.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 17 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/400607651" height="1" width="1"/&gt;</description>
<pubDate>Wed, 17 Sep 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18432282</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/61/02/18988616.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18432282.html</feedburner:origLink></item>
<item>
<category />
<title>"Cherry Blossoms" : Rencontre avec Doris Dörrie</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/388786018/fichearticle_gen_carticle=18424244.html</link>
<description>&lt;p&gt;AlloCiné a rencontré la réalisatrice allemande dans le cadre de la Berlinale, où son dernière film " Cherry Blossoms " était présenté en compétition. Doris Dörrie nous a parlé du Japon, des clichés et de l'évanescence. Morceaux choisis.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18424244.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/388786018" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Sep 2008 18:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18424244</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/05/66/18970135.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18424244.html</feedburner:origLink></item>
<item>
<category />
<title>French frissons</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/388720951/fichearticle_gen_carticle=18431314.html</link>
<description>&lt;p&gt;A l'occasion de la sortie de "Mirrors", Alexandre Aja et Kiefer Sutherland passent de l'autre côté du miroir...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18431314.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/388720951" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Sep 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18431314</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/50/70/18984185.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18431314.html</feedburner:origLink></item>
<item>
<category />
<title>Pourquoi "Martyrs" ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/388620322/fichearticle_gen_carticle=18431272.html</link>
<description>&lt;p&gt;Début de réponse avec le réalisateur Pascal Laugier...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18431272.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 3 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/388620322" height="1" width="1"/&gt;</description>
<pubDate>Wed, 3 Sep 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18431272</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/63/89/18945571.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18431272.html</feedburner:origLink></item>
<item>
<category />
<title>"Inju" : Barbet sort de l'ombre</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/381985215/fichearticle_gen_carticle=18429661.html</link>
<description>&lt;p&gt;Quel est le point commun entre Mickey Rourke, Jacques Vergès, Idi Amin Dada et Benoit Magimel ? Réponse, le réalisateur d'"Inju", Barbet Schroeder... qui évoque pour AlloCiné ces grandes rencontres ! &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429661.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 3 Septembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/381985215" height="1" width="1"/&gt;</description>
<pubDate>Wed, 3 Sep 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18429661</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/33/11/18978049.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18429661.html</feedburner:origLink></item>
<item>
<category />
<title>Les fantômes existent-ils vraiment ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375846945/fichearticle_gen_carticle=18429448.html</link>
<description>&lt;p&gt;A l'occasion de la sortie de "Spirits", début de réponse avec le spéciualiste en paranormal Chris Fleming...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429448.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 27 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/375846945" height="1" width="1"/&gt;</description>
<pubDate>Wed, 27 Aug 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18429448</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/29/89/18976512.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18429448.html</feedburner:origLink></item>
<item>
<category />
<title>Le silence de Lorna, les mots des Dardenne..</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375136544/fichearticle_gen_carticle=18429447.html</link>
<description>&lt;p&gt;Prix du scénario à Cannes, les frères Dardenne racontent "Le Silence de Lorna"...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429447.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 26 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/375136544" height="1" width="1"/&gt;</description>
<pubDate>Tue, 26 Aug 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18429447</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/29/88/18976511.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18429447.html</feedburner:origLink></item>
<item>
<category />
<title>Nora Arnezeder, la révélation de "Faubourg 36", se confie</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375114521/fichearticle_gen_carticle=18426860.html</link>
<description>&lt;p&gt;Elle est Douce, "LA" voix et le rayon de soleil de "Faubourg 36"... Révélée par Christophe Barratier, la jeune comédienne Nora Arnezeder nous parle du rôle de sa vie...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426860.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 25 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/375114521" height="1" width="1"/&gt;</description>
<pubDate>Mon, 25 Aug 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18426860</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/90/18968771.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426860.html</feedburner:origLink></item>
<item>
<category />
<title>Le nouveau Kasso... vite !!!</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375114522/fichearticle_gen_carticle=18429444.html</link>
<description>&lt;p&gt;"Babylon A.D." vu par Mathieu Kassovitz et Michelle Yeoh...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429444.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 20 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/375114522" height="1" width="1"/&gt;</description>
<pubDate>Wed, 20 Aug 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18429444</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/63/93/45/18738894.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18429444.html</feedburner:origLink></item>
<item>
<category />
<title>Au fait, pourquoi on couche ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375114524/fichearticle_gen_carticle=18429445.html</link>
<description>&lt;p&gt;"La Fille de Monaco" vu par Fabrice Luchini, Louise Bourgoin, Roschdy Zem et la réalisatrice Anne Fontaine...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429445.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 20 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/375114524" height="1" width="1"/&gt;</description>
<pubDate>Wed, 20 Aug 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18429445</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/29/85/18976507.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18429445.html</feedburner:origLink></item>
<item>
<category />
<title>Dark Interviews</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375114525/fichearticle_gen_carticle=18429443.html</link>
<description>&lt;p&gt;"The Dark Knight, le chevalier noir" par Christian Bale, Gary Oldman, Christopher Nolan, Aaron Eckhart... et Heath Ledger.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429443.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 13 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/375114525" height="1" width="1"/&gt;</description>
<pubDate>Wed, 13 Aug 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18429443</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/92/18968800.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18429443.html</feedburner:origLink></item>
<item>
<category />
<title>Le re-retour de "La Momie"...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/375114526/fichearticle_gen_carticle=18429437.html</link>
<description>&lt;p&gt;"La Momie : la tombe de l'Empereur Dragon" vu par Brendan Fraser, Rob Cohen et Maria Bello...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18429437.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.macbidouille.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.macbidouille.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>MacBidouille.com</title>
<link>http://www.macbidouille.com/</link>
<description>Bidouille Hardware sur Mac</description>
<language>fr</language>
<copyright>Copyright 2001-2002, Macbidouille.com</copyright>
<managingEditor>lionel@macbidouille.com (Lionel)</managingEditor>
<webMaster>w00kie@macbidouille.com (w00kie)</webMaster>
<pubDate>Thu, 06 Dec 2007 09:34:10 +0100</pubDate>
<lastBuildDate>Thu, 06 Dec 2007 11:45:22 +0100</lastBuildDate>
<generator>Custom RSS Generator by w00kie</generator>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.macbidouille.com/macbidouille.rss" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>Apple TV sur le Refurb</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195977781/</link>
<pubDate>Thu, 06 Dec 2007 09:34:10 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>Apple propose aujourd'hui sur le Refurb des Apple TV 40 Go à 229€TTC, soit une économie de 70€. difficile de dire si c'est une bonne affaire, étant donné qu'on ignore ce qu'Apple compte faire dans un futur proche de cet appareil.&lt;br /&gt;
On y trouve également des MacBook Pro Santa Rosa&lt;br /&gt;
- Macbook Pro 15,4" 2,2 GHz à 1.599,98€ (-299€ sur le prix du neuf)&lt;br /&gt;
- Macbook Pro 15,4" a 2,4 GHz à 1999€ (-400€ sur le prix du neuf), ces derniers ont vu leur prix baisser.&lt;br /&gt;
&lt;br /&gt;
@ &lt;a href="http://tracker.tradedoubler.com/pan/TrackerServlet?p=2701&amp;a=403273&amp;g=0&amp;url=http://store.apple.com/Apple/WebObjects/francestore?family=Certified&amp;aosid=p204s" target=_blank&gt;Le Refurb Store&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=LkFCDl"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=LkFCDl" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195977781" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246852&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15433</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-06%2F%2315433</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-06/#15433</feedburner:origLink></item>
<item>
<title>130W pour les premiers Nehalem</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195912174/</link>
<pubDate>Thu, 06 Dec 2007 06:00:15 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>&lt;p class="source"&gt;Source : &lt;a href="http://www.matbe.com" target=_blank&gt;Matbe&lt;/a&gt;&lt;/p&gt;Les processeurs Intel Penryn ne sont pas encore installés dans nos Mac, que déjà des informations commencent à filtrer sur leurs successeurs, les Nehalem. Ces processeurs gravés en 45nm seront disponibles au second semestre de 2008. Ce seront des 4 coeurs natifs, et non pas des 2x2 coeurs accolés comme les Xeon actuels. Ils inaugureront également chez Intel l'intégration du controleur mémoire dans le dit CPU, gage de performances améliorées, ainsi qu'une cache encore plus généreuse.&lt;br /&gt;
Bonne nouvelle, malgré les transistors ajoutés par les deux derniers points cités au dessus, le TDP des premiers processeurs sera identique à celui des 4 coeurs actuels, soit environ 130W.&lt;br /&gt;
Pour le diminuer, il faudra attendre 2009 lorsqu'Intel passera la gravure en 32nm. Mais à ce moment là ils proposeront des Nehalem à 2x4 coeurs...
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=kZ4AFU"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=kZ4AFU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195912174" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246839&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15432</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-06%2F%2315432</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-06/#15432</feedburner:origLink></item>
<item>
<title>La musique illimitée chez Alice mais pas avec les Mac</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195906400/</link>
<pubDate>Thu, 06 Dec 2007 05:59:43 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>&lt;p class="source"&gt;Source : &lt;a href="http://www.c-alice.com" target=_blank&gt;http://www.c-alice.com&lt;/a&gt;&lt;/p&gt;Après Neuf Cegetel, c'est au tour de Telecom Italia, via sa filiale Alice de proposer un accès illimité à de la musique.&lt;br /&gt;
Les nouveaux clients auront dorénavant accès à volonté au catalogue d'EMI Music, soit environ 320000 titres.&lt;br /&gt;
Ceux ayant déjà un abonnement seront obligés de se réengager pour un an afin d'en profiter.&lt;br /&gt;
&lt;br /&gt;
Une fois de plus, le système de DRM de Microsoft a été choisi, ce qui de fait, exclut non seulement les Mac Users, mais également les possesseurs d'iPod et d'iPhone.&lt;br /&gt;
Peut-être que les utilisateurs de Mac chez ce fournisseur d'accès devraient demander une réduction sur leur abonnement puisqu'ils ne peuvent pas avoir accès à ce service.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=CEVhFz"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=CEVhFz" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195906400" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246838&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15431</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-06%2F%2315431</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-06/#15431</feedburner:origLink></item>
<item>
<title>Télécharger des fichier sur son iPhone</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195906402/</link>
<pubDate>Thu, 06 Dec 2007 05:59:13 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>S'il est une chose que la version de Safari des iPhone et des iPod touch ne peut faire, c'est télécharger des fichiers.&lt;br /&gt;
C'est maintenant possible grâce à un plug-in à rajouter au Safari de ces appareils et qui permet de charger des fichiers dans leur mémoire. Il suffit ensuite de se connecter via SSH pour les récupérer sur un ordinateur. Il peut-être téléchargé à l'adresse suivante:&lt;br /&gt;
&lt;A HREF="http://www.badongo.com/file/5387192" TARGET="_blank"&gt;http://www.badongo.com/file/5387192&lt;/A&gt;&lt;br /&gt;
La maintenant célèbre Erica Sadun du site &lt;a href="http://www.tuaw.com/2007/12/04/mobile-safari-plug-in-downloads-files-to-your-iphone-ipod-touch/" target="_blank"&gt;Tuaw&lt;/a&gt; l'a testé avec succès. Ce sera certainement bientôt un must pour ceux qui ont débloqué leur iPhone, et un problème pour les opérateurs qui proposent des Data illimitées.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=tIkqr5"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=tIkqr5" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195906402" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246837&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15430</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-06%2F%2315430</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-06/#15430</feedburner:origLink></item>
<item>
<title>2,7 millions de lecteurs Blu-ray dans le monde</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195906403/</link>
<pubDate>Thu, 06 Dec 2007 05:58:42 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>Faute de pouvoir se départager sur le front des consommateurs, les protagonistes des deux camps, Blu-ray et HD-DVD continuent à lutter via des communiqués de presse triomphants.&lt;br /&gt;
C'est au tour du camp du Blu-ray d'annoncer sa bonne nouvelle. Il y aurait maintenant dans le monde un parc total de 2,7 millions de lecteurs capables de lire leurs médias. Ils ne font bien entendu pas la distinction entre les lecteurs de salon, et les PS3. Ce chiffre diffère beaucoup de celui donné par le camp du HD-DVD qui continue à ne vouloir compter dans le nombre total de lecteurs les consoles de jeu Sony.&lt;br /&gt;
&lt;br /&gt;
Beaucoup de spécialistes pensent que les achats des fêtes de fin d'année 2007 pourraient désigner le vainqueur. C'est certainement la raison qui pousse tous les acteurs à mettre les bouchées doubles à coup de promotions et de packs contenant des lecteurs à prix serré ainsi que de nombreux films offerts.&lt;br /&gt;
Dans tous les cas, à moins d'un miracle, le blu-ray semble s'être imposé dans le monde informatique. S'il est devenu relativement facile de trouver un graveur Blu-ray et des médias vierges à un prix acceptable, les produits HD-DVD n'existent tout simplement pas encore.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=RGlfiH"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=RGlfiH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195906403" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246836&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15429</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-06%2F%2315429</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-06/#15429</feedburner:origLink></item>
<item>
<title>Service d'impression sous Leopard</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195461266/</link>
<pubDate>Wed, 05 Dec 2007 11:45:50 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>Leopard ne propose plus de menu permettant la création d'un service d'impression sur le bureau de Mac OS X. Pascal nous propose un moyen d'en créer facilement un:&lt;br /&gt;
&lt;blockquote&gt;Il existe t une solution (cachée)&lt;br /&gt;
Ouvrir les préférences systémes / Imprimantes et fax.&lt;br /&gt;
Il suffit ensuite de faire un glisser/déposer d'une icone d'imprimante sur le bureau et le service d'impression est crée.&lt;br /&gt;
Il suffit ensuite de déposer des documents sur cette icone pour lancer les taches d'impression.&lt;br /&gt;
&lt;/blockquote&gt;
C'est simple, et ça fonctionne.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=DuEPRY"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=DuEPRY" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195461266" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246709&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15428</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-05%2F%2315428</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-05/#15428</feedburner:origLink></item>
<item>
<title>30000 iPhone vendus par Orange</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195455885/</link>
<pubDate>Wed, 05 Dec 2007 11:27:24 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>Dans un communiqué de presse tombé ce matin, Orange a annoncé avoir vendu 30 000 iPhone durant les 5 premiers jours de sa commercialisation.&lt;br /&gt;
Sur ces 30 000 appareils vendus, 48% se sont accompagnés d'une ouverture de ligne et donc d'un nouveau client.&lt;br /&gt;
Orange vise toujours les 100 000 unités d'ici la fin de l'année, ce qui est possible pour peu que les boutiques ne restent pas en rupture de stock.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=68QcQf"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=68QcQf" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/195455885" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=246705&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15427</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-05%2F%2315427</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-05/#15427</feedburner:origLink></item>
<item>
<title>Penryn et 10.5.2 à la MWSF</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/195449418/</link>
<pubDate>Wed, 05 Dec 2007 11:14:33 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>Vous êtes tellement nombreux à nous avoir interrogé sur la date probable de sortie des nouveaux Mac Pro, que nous avons interrogé nos informateurs pour en savoir plus. Bien entendu, vu la difficulté que nous avons à trouver des informations sur Apple, il nous a été impossible de les faire confirmer par d'autres canaux. Elles restent donc hélas à l'état de rumeurs, mais sont largement assez fiables pour que nous vous les dévoilions.&lt;br /&gt;
&lt;br /&gt;
Contrairement à ce que nous espérions, il faudra attendre la keynote du 15 janvier pour qu'Apple passe aux processeurs Intel Penryn, Mac Pro en tête. La raison de ce qui peut paraître être un retard est simple, et nous l'avions soupçonnée.&lt;br /&gt;
- Apple est en train de retravailler prof

View File

View File

@ -0,0 +1,730 @@
<!doctype html>
<!--[if lt IE 7 ]> <html class="ie6" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]-->
<!--[if IE 7 ]> <html class="ie7" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]-->
<!--[if IE 8 ]> <html class="ie8" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <![endif]-->
<!--[if gt IE 8]><!--> <html xml:lang="en" lang="en" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml"> <!--<![endif]-->
<head>
<title>Clubic : Actualité informatique, Comparatifs, Logiciels et Forum</title>
<!-- meta -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="google-site-verification" content="oC4pkkvtXVysKxl0hcpnh3XEcm3jSA3XB4u2e_YOupg" />
<meta name="description" content="Actualité informatique en continu, Comparatifs et guides d'achat pour bien choisir, Logiciels pratiques, utiles ou juste amusant, Forum d'aide et de dépannage sur Clubic." />
<meta name="verify-v1" content="Ml9Fsl8IKRo9vxcgw8VZYe6Pr7DeTiXooWi8hNAFM0Q=" />
<meta name="robots" content="index,follow" />
<meta name="revisit-after" content="2 days" />
<!-- Meta Og (facebook) -->
<meta property="fb:admins" content="612833064,562988567,1623308123" />
<meta property="fb:app_id" content="302753377533" />
<meta property="fb:page_id" content="96758232749" />
<meta property="og:description" content="Actualité informatique en continu, Comparatifs et guides d'achat pour bien choisir, Logiciels pratiques, utiles ou juste amusant, Forum d'aide et de dépannage sur Clubic." />
<meta property="og:image" content="http://img.clubic.com/0096000001486006-photo-logo-clubic.jpg" />
<meta property="og:locale" content="fr_fr" />
<meta property="og:site_name" content="Clubic.com" />
<meta property="og:title" content="Clubic : Informatique et Multimédia." />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://pro.clubic.com/" />
<link rel="canonical" value="http://pro.clubic.com/" />
<!-- Card (twitter) -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@ClubicPro" />
<meta name="twitter:url" content="http://pro.clubic.com/" />
<link rel="next" content="/page_2.html" />
<!--W7 IE9 -->
<meta name="application-name" content="Clubic informatique et multimédia" />
<meta name="msapplication-tooltip" content="Lancer Clubic informatique et multimédia" />
<meta name="msapplication-starturl" content="/?utm_source=msn&utm_medium=epinglage&utm_content=home&utm_campaign=msn" />
<meta name="msapplication-window" content="width=800;height=600" />
<meta name="msapplication-navbutton-color" content="#c0120f" />
<meta name="msapplication-task" content="name=Les dernières news;action-uri=/actualites-informatique/?utm_source=msn&utm_medium=epinglage&utm_content=actu&utm_campaign=msn;icon-uri=/favicon.ico" />
<meta name="msapplication-task" content="name=Les dossiers;action-uri=/guide-test-comparatif-informatique/?utm_source=msn&utm_medium=epinglage&utm_content=guide&utm_campaign=msn;icon-uri=/favicon.ico" />
<meta name="msapplication-task" content="name=Clubic Pro;action-uri=http://pro.clubic.com/?utm_source=msn&utm_medium=epinglage&utm_content=proclubic&utm_campaign=msn;icon-uri=/favicon.ico" />
<meta name="msapplication-task" content="name=L'Univers Mac;action-uri=/univers-mac/?utm_source=msn&utm_medium=epinglage&utm_content=mac&utm_campaign=msn;icon-uri=/favicon.ico" />
<meta name="msapplication-task" content="name=Zone Téléchargement;action-uri=/telecharger/?utm_source=msn&utm_medium=epinglage&utm_content=telechargement&utm_campaign=msn;icon-uri=/favicon.ico" />
<link href="https://plus.google.com/100598320379965851372/" rel="publisher" />
<!-- flux rss -->
<link rel="alternate" type="application/rss+xml" title="Rss général" href="http://www.clubic.com/articles.rss"/>
<link rel="alternate" type="application/rss+xml" title="Clubic pro" href="http://pro.clubic.com/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Détente et discussions diverses" href="http://www.clubic.com/humour-informatique-geek/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Hardware" href="http://www.clubic.com/materiel-informatique/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Image et son" href="http://www.clubic.com/image-et-son/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Internet" href="http://www.clubic.com/internet/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Jeu vidéo " href="http://www.clubic.com/jeu-video/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Logiciel" href="http://www.clubic.com/telecharger/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Mobilité et téléphonie" href="http://www.clubic.com/mobilite-et-telephonie/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Réseaux" href="http://www.clubic.com/reseau-informatique/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Sécurité informatique" href="http://www.clubic.com/antivirus-securite-informatique/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Technologies d'avenir" href="http://www.clubic.com/technologies-d-avenir/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Télévision" href="http://www.clubic.com/television-tv/actualites.rss"/>
<link rel="alternate" type="application/rss+xml" title="Univers Mac" href="http://www.clubic.com/univers-mac/actualites.rss"/>
<!-- style -->
<link rel="shortcut icon" href="http://www.clubic.com/favicon.ico" />
<link rel="icon" type="image/ico" href="http://www.clubic.com/favicon.ico" />
<!--[if IE]><![endif]-->
<link href="/css/layout.css?1345714582" rel="stylesheet" type="text/css" />
<link href="/css/layout/pro.css?1340288686" rel="stylesheet" type="text/css" />
<!-- javascript -->
<script type="text/javascript" src="/js/layout.js?1345641063"></script>
<script type="text/javascript" src="/js/layout/pro.js?1345627294"></script>
<!--[if lt IE 7]>
<script type="text/javascript">
$(document).ready(function() {
$('#user_barre').css({width:$(window).width()+'px', position:'absolute'});
$(window).scroll(function(){
$('#user_barre').css('top', $(window).scrollTop()+'px');
});
});
</script>
<![endif]-->
<!-- mise en place de la pub -->
<script type='text/javascript'>
<!--
setCookie=function(document, name, value, expire) {
document.cookie = name + '=' + escape(value) + '; path=/;' +((expire == null) ? '' : ('; expires=' + expire.toGMTString()));
};
getCookie=function(name) {
var search = name + '=';
var defcook= '';
if (document.cookie.length > 0)
{
var offset = document.cookie.indexOf(search);
if (offset != -1) {
offset += search.length;
end = document.cookie.indexOf(';', offset);
if (end == -1){end = document.cookie.length;}
defcook= unescape(document.cookie.substring(offset, end));
if (defcook!=''){return defcook;}
}
}
};
var ord=Math.random()*10000000000000000;
var tile=0;
var m6_dart_ok = 0;
//var dart_adblock = getCookie('nfuserid');
function getDartCode(formatPub){
if (typeof(dart_adblock)=='undefined') {
tile++;
var documentFullUrl = window.location.href;
var dartRegExp = new RegExp('_([^_]*)$','gi');
var dartTaille = dartRegExp.exec(formatPub);
var fromGoogle = (document.referrer.indexOf('.google.') > -1);
return 'http://ad.fr.doubleclick.net/N3338/adj/CLUBIC/pro_'+formatPub+';dcopt=ist;rubrique=;tile='+tile+';kw=homepro;'+crtg_content+';format='+formatPub+';soushome=pro;'+(fromGoogle ? 'google=1;':'google=0;')+'sz='+dartTaille[1]+';ord='+ ord + '?';
}else{
return '/api/vide.js';
}
}
function getPrerollCode(){
if (typeof(dart_adblock)=='undefined') {
tile++;
return 'http://ad.fr.doubleclick.net/pfadx/CLUBIC/webtv_BIL_C_2x2;rubrique=;tile='+tile+';kw=homepro;soushome=pro;sz=2x2;ord='+ ord + '?';
}else{
return '';
}
}
function crunchDart(){
if (document.getElementById('pub_dart_OVL_B_1x1') != null) document.getElementById('pub_dart_OVL_B_1x1').innerHTML = '';
if (document.getElementById('pub_dart_MBR_T_728x90') != null) document.getElementById('pub_dart_MBR_T_728x90').innerHTML = '';
if (document.getElementById('pub_dart_LIS_T2_5x5') != null) document.getElementById('pub_dart_LIS_T2_5x5').innerHTML = '';
if (document.getElementById('pub_dart_ADS_L_3x3') != null) document.getElementById('pub_dart_ADS_L_3x3').innerHTML = '';
if (document.getElementById('pub_dart_HAB_T1_4x4') != null) document.getElementById('pub_dart_HAB_T1_4x4').innerHTML = '';
if (document.getElementById('pub_dart_REC_M_300x250') != null) document.getElementById('pub_dart_REC_M_300x250').innerHTML = '';
/*if (document.getElementById('pub_dart_REC_B_300x250') != null) document.getElementById('pub_dart_rg_REC_B_300x250').innerHTML = '';*/
if (document.getElementById('pub_dart_REC_B_300x250') != null) document.getElementById('pub_dart_REC_B_300x250').innerHTML = '';
if (document.getElementById('pub_dart_BOU_R_300x150') != null) document.getElementById('pub_dart_BOU_R_300x150').innerHTML = '';
if (document.getElementById('pub_dart_BOU2_R_300x150') != null) document.getElementById('pub_dart_BOU2_R_300x150').innerHTML = '';
if (document.getElementById('pub_dart_crunch') != null) document.getElementById('pub_dart_crunch').innerHTML = '';
}
function refreshAds(){
ord = Math.random()*10000000000000000;
tile = 0;
if (document.getElementById('pub_dart_MBR_T_728x90') != null) document.getElementById('pub_dart_MBR_T_728x90').innerHTML = '<iframe width="728" height="90" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="/api/doubleclick.php?u='+escape(getDartCode('MBR_T_728x90'))+'"></iframe>';
if (document.getElementById('pub_dart_REC_M_300x250') != null) document.getElementById('pub_dart_REC_M_300x250').innerHTML = '<iframe width="300" height="250" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="/api/doubleclick.php?u='+escape(getDartCode('REC_M_300x250'))+'"></iframe>';
/*if (document.getElementById('pub_dart_REC_B_300x250') != null) document.getElementById('pub_dart_rg_REC_B_300x250').innerHTML = '<iframe width="300" height="250" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="/api/doubleclick.php?u='+escape(getDartCode('rg_REC_B_300x250'))+'"></iframe>';*/
if (document.getElementById('pub_dart_REC_B_300x250') != null) document.getElementById('pub_dart_REC_B_300x250').innerHTML = '<iframe width="300" height="250" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="/api/doubleclick.php?u='+escape(getDartCode('rg_REC_B_300x250'))+'"></iframe>';
if (document.getElementById('pub_dart_BOU_R_300x150') != null) document.getElementById('pub_dart_BOU_R_300x150').innerHTML = '<iframe width="300" height="150" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="/api/doubleclick.php?u='+escape(getDartCode('BOU_R_300x150'))+'"></iframe>';
if (document.getElementById('pub_dart_BOU2_R_300x150') != null) document.getElementById('pub_dart_BOU2_R_300x150').innerHTML = '<iframe width="300" height="150" frameborder="0" scrolling="no" marginwidth="0" marginheight="0" src="/api/doubleclick.php?u='+escape(getDartCode('BOU2_R_300x150'))+'"></iframe>';
//window.scrollTo(0,0);
}
function refreshTags() {
// Refresh de GA
var reg = new RegExp('http[s]?\:\/\/[^\/]+?(\/[a-z0-9\.\/-]*)', 'gi');
var url = reg.exec(window.location.href);
if(typeof(url) == 'object' && url != null){
if(typeof(pageTracker) == 'object'){
pageTracker._trackPageview(url[1]);
}
if(typeof(firstTracker) == 'object'){
firstTracker._trackPageview(url[1]);
}
if(typeof(secondTracker) == 'object'){
secondTracker._trackPageview(url[1]);
}
if(typeof(_gaq) == 'object'){
_gaq.push(['firstTracker._trackPageview', url[1]]);
_gaq.push(['secondTracker._trackPageview', url[1]]);
}
}
// On refresh les stats (ancien systeme)
if(typeof(cm_i) == 'object'){ var img = new Image(); img.src = cm_arg +'&osef='+ Math.random();}
// Refresh du tag stat (nouveau)
if(typeof(eStat_loadjs) == 'function'){eStat_tag.post('ml');}
}
--></script>
<!-- TradeDoubler site verification 1717849 -->
<meta name="google-site-verification" content="oC4pkkvtXVysKxl0hcpnh3XEcm3jSA3XB4u2e_YOupg" />
<meta name="msvalidate.01" content="2273FFDD5F248D3863F111DBA9FAA8AC" />
<!-- Google Ads -->
<script type="text/javascript">
google_ads_datas_default.max = 1;
</script>
</head>
<body>
<!-- Tag Criteo RTA -->
<script type='text/javascript'>
var crtg_nid = "1270";
var crtg_cookiename = "cto_m6rta";
function crtg_getCookie(c_name) {
var i, x, y, ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == c_name) {
return unescape(y);
}
}
return '';
}
var crtg_content = crtg_getCookie(crtg_cookiename);
var crtg_rnd = Math.floor(Math.random() * 99999999999);
var crtg_url = 'http://rta.criteo.com/dis/rtt.js?networkId=' + escape(crtg_nid);
crtg_url += '&cookieName=' + escape(crtg_cookiename);
crtg_url += '&rnd=' + crtg_rnd;
crtg_url += '&varName=crtg_content';
var crtg_script = document.createElement('script');
crtg_script.type = 'text/javascript';
crtg_script.src = crtg_url;
crtg_script.async = true;
if (document.getElementsByTagName("head").length > 0) document.getElementsByTagName("head")[0].appendChild(crtg_script);
else if (document.getElementsByTagName("body").length > 0) document.getElementsByTagName("body")[0].appendChild(crtg_script);
</script>
<!-- /tag Criteo RTA -->
<!-- begin ad tag -->
<script type="text/javascript">if(typeof adstimer == 'function'){ adstimer(); }</script>
<script type="text/javascript">
<!--
if(!(navigator.userAgent.match(/iPhone/i)) && !(navigator.userAgent.match(/iPod/i))) {
document.write('<scr'+'ipt type="text/javascript" src="'+getDartCode('ADS_L_3x3')+';"><'+'/script>');
if(!(navigator.userAgent.match(/iPhone/i))) {
document.write('<scr'+'ipt type="text/javascript" src="'+getDartCode('HAB_T1_4x4')+';"><'+'/script>');
}
}
-->
</script>
<script type="text/javascript">if(typeof adstimer == 'function'){ adstimer(); }</script>
<!-- end ad tag -->
<div id='user_barre'>
<div class='container'>
<div class="title">Espace membre :</div>
<div class="menuUser">
<ul class="menu">
<li class='cl_connect'><img src='/api/img/pixel.gif' class='sprite-global bt_connexion_jpg' title='Se connecter avec un compte Clubic' alt='Clubic Connect' /></li>
<li class='fb_connect'><img src='/api/img/pixel.gif' class='sprite-global facebook_connect_jpg' title='Se connecter avec un compte Facebook' alt='Facebook Connect' /></li>
<li class='join'><a href="/api/creer_un_compte.php"><img src="/api/img/pixel.gif" class="sprite-global bt_inscription_jpg" alt='inscription clubic'/></a></li>
<li class='newsletter'><img src="/api/img/pixel.gif" alt='newsletter clubic' class='sprite-global newsletter2_png' title='newsletter Clubic' />Je m'inscris à la newsletter Clubic pro</li>
</ul>
</div>
<div class="clearer"></div>
</div>
</div>
<div id="clubic">
<div id="header">
<div class="header_thematique" id="header_thematiquepro"></div>
<div id="header_thematique_top"><!-- --></div>
<a onclick="javascript:secondTracker._trackPageview('/outgoing/clubic/home/menu/logo');" class="sprite-global logo_pro_png" id="logo_pro" href="http://www.clubic.com" title="Clubic"></a>
<div id="search_home" >
<form name="recherche" action="/recherche/redirect.php" method="get">
<input onkeyup="if(event.keyCode==13)this.form.submit();" onfocus="if(this.value=='Rechercher sur...')this.value='';" value="" id="textrecherche" name="textrecherche" size="62" />
<select name="rechercheCat">
<option value="">Tout</option>
<option value="actu">Actus</option>
<option value="telecharger">T&eacute;l&eacute;charger</option>
<option value="prix">Comparateur de prix</option>
<option value="dossier">Dossiers</option>
<option value="forum">Forums</option>
<option value="faq">Astuces</option>
</select>
<input name="submit" id="submit_search" type="submit" class="sprite-global BUrecherche_png" value="" />
</form>
</div><!-- .search_home -->
<div id="fb_twitter_page_header" class="pro"><a class="twitter-follow-button count-twitter" href="https://twitter.com/ClubicPro" id="TwitterFollowMe_13467782155712_twitter_followMe" >Suivre @ClubicPro</a></div>
<div id="fb_like_group_header" class="pro"><fb:like class="count-facebook" id="FacebookLike_13467782155726_facebook_like" data-href="http://www.facebook.com/Clubicpro" ></fb:like></div>
<div id="liensTransversaux">
<div id="acces">Accès rapide</div>
<div id="corner_left_acces"><span class="arrowCarouselL"></span></div>
<div id="corner_right_acces"><span class="arrowCarouselR"></span></div>
<ul>
<li>
<a href="/" title="Pro">Pro</a> | <a href="http://www.clubic.com/forum/" title="Forum">Forum</a> | <a href="http://www.clubic.com/mobilite-et-telephonie/" title="Mobilité">Mobilité</a> | <a href="http://www.clubic.com/materiel-informatique/" title="Hardware">Hardware</a> | <a href="http://www.clubic.com/univers-mac/" title="Mac">Mac</a> </li>
<li>
<a href="http://www.clubic.com/os-mobile/iphone-os/" title="iPhone">iPhone</a> | <a href="/" title="Business">Business</a> | <a href="/legislation-loi-internet/hadopi/" title="HADOPI">HADOPI</a> </li>
<li>
<a href="http://www.clubic.com/comparateur-de-prix.html" title="Comparateur de prix high-Tech">Comparateur de prix high-Tech</a> | <a href="http://www.clubic.com/internet/" title="Internet">Internet</a> </li>
</ul>
</div>
<div id="menu" >
<ul>
<li title="home" class="home sprite-global menuHome_png" id='home'><a href="http://www.clubic.com" title="home" onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/maison');"><!-- --></a></li>
<li title="Infos" class="Infos sprite-global menu_png" id='Infos' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/infos');">
<a href="http://www.clubic.com/actualites-informatique/"><div class="lien">infos</div></a><div class='arrow_down sprite-global infosMenu_png'></div>
</li>
<li class="interlude sprite-global interlude_png"></li>
<li title="Pro" class="Clubicpro sprite-global menu_png" id='Clubicpro' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/clubic_pro');">
<a href="/"><div class="lien">clubic pro</div></a><div class='arrow_down sprite-global infosMenu_png'></div>
</li>
<li class="interlude sprite-global interlude_png"></li>
<li title="Telecharger" class="Telechargement sprite-global menu_png" id='Telechargement' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/telecharger');">
<a href="http://www.clubic.com/telecharger/"><div class="lien">télécharger</div></a><div class='arrow_down sprite-global infosMenu_png'></div>
</li>
<li class="interlude sprite-global interlude_png"></li>
<li title="Aide" class="Aide sprite-global menu_png" id='Aide' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/aide_achat');">
<a href="http://www.clubic.com/comparateur-de-prix.html"><div class="lien">aide à l'achat</div></a><div class='arrow_down sprite-global infosMenu_png'></div>
</li>
<li class="interlude sprite-global interlude_png"></li>
<li title="Astuces" class="Commentfaire sprite-global menu_png" id='Commentfaire' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/astuces');">
<a href="http://www.clubic.com/probleme-informatique-pc/"><div class="lien">astuces</div></a><div class='arrow_down sprite-global infosMenu_png'></div>
</li>
<li class="interlude sprite-global interlude_png"></li>
<li title="Forum" class="Discussion sprite-global menu_png" id='Discussion' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/forum');">
<a href="http://www.clubic.com/forum/"><div class="lien">forum</div></a><div class='arrow_down sprite-global infosMenu_png'></div>
</li>
<li class="interlude sprite-global interlude_png"></li>
<!--
<li title="Emploi" class="emploi" id='emploi' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/emploi');">
<a href="http://emploi-informatique.clubic.com/">Emploi</a><div class='arrow_down'></div>
</li>
<li class="interlude"></li>
-->
<li class="Comparateur sprite-global comparateur_png" id='Comparateur' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/comparateur_de_prix');">
<a href="http://www.clubic.com/comparateur-de-prix.html"><div class="lien">Comparateur de prix</div></a>
</li>
<li class="interlude sprite-global interlude_png"></li>
<li title="Emploi" class="Event sprite-global menu_png" id='Event' onclick="javascript:secondTracker._trackPageview('outgoing/clubic/home/menu/event');">
<a href="http://www.clubic.com/applications/" title="Applis Mobile" ><div class="lien Emploi">Applis Mobile</div></a>
</li>
<li class="sprite-global lastMenu_png"></li>
</ul>
</div><!-- #menu -->
<div class="clearer"><!-- --></div>
<div class="smenu">
<div class="Infos">
<div class="colonne">
<div><a href="http://www.clubic.com/actualites-informatique/" title="Actualités informatique" class="couleur" >Actualités informatique</a></div>
<div><a href="http://www.clubic.com/materiel-informatique/" title="Matériel informatique" >Matériel informatique</a></div>
<div><a href="http://www.clubic.com/mobilite-et-telephonie/" title="Mobilité / Mobinaute" >Mobilité / Mobinaute</a></div>
<div><a href="/" title="E-business / Neteco" >E-business / Neteco</a></div>
<div><a href="http://www.clubic.com/univers-mac/" title="Mac" >Mac</a></div>
<div><a href="http://www.clubic.com/guide-test-comparatif-informatique/" title="Dossiers : Comparatif, test et guide" >Dossiers : Comparatif, test et guide</a></div>
<div><a href="http://www.clubic.com/humour-informatique-geek/clubic-week/ " title="Clubic Week" >Clubic Week</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/humour-informatique-geek/detente-avec-flock/" title="Actu en BD avec Flock" >Actu en BD avec Flock</a></div>
<div><a href="http://www.clubic.com/humour-informatique-geek/live-japon/" title="Live Japon" >Live Japon</a></div>
<div><a href="http://www.clubic.com/humour-informatique-geek/geekget/" title="GeekGet" >GeekGet</a></div>
<div><a href="http://www.clubic.com/humour-informatique-geek/debug/" title="Le Debug" >Le Debug</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/windows-os/windows-7/" title="Windows 7" >Windows 7</a></div>
<div><a href="http://www.clubic.com/smartphone/android/" title="Android" >Android</a></div>
<div><a href="http://www.clubic.com/smartphone/iphone/" title="iPhone" >iPhone</a></div>
<div><a href="/legislation-loi-internet/hadopi/" title="Hadopi" >Hadopi</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/divers/partner.php" title="Accès flux RSS" class="couleur" >Accès flux RSS</a></div>
</div>
</div>
<div class="Clubicpro">
<div class="colonne">
<div><a href="/" title="Technologie et E-business" class="couleur" >Technologie et E-business</a></div>
<div><a href="/creation-de-site-web/" title="Création de site web" >Création de site web</a></div>
<div><a href="/webmarketing/" title="Webmarketing" >Webmarketing</a></div>
<div><a href="/blog-forum-reseaux-sociaux/" title="Réseaux sociaux et communauté" >Réseaux sociaux et communauté</a></div>
<div><a href="/e-commerce/" title="E-commerce et monétisation" >E-commerce et monétisation</a></div>
<div><a href="/entrepreneur-et-creation-entreprise/" title="Entrepreneur et création entreprise" >Entrepreneur et création entreprise</a></div>
</div><div class="colonne">
<div><a href="/it-business/" title="IT Business" >IT Business</a></div>
<div><a href="/actualite-e-business/" title="Actualités E Business" >Actualités E Business</a></div>
<div><a href="/technologie-et-politique/" title="Technologies et Politique" >Technologies et Politique</a></div>
<div><a href="/entreprises/" title="Entreprises" >Entreprises</a></div>
<div><a href="/personnalites-e-business/" title="Personnalités E-business" >Personnalités E-business</a></div>
</div><div class="colonne">
</div>
</div>
<div class="Telechargement">
<div class="colonne">
<div><a href="http://www.clubic.com/telecharger/" title="Logiciel / Télécharger" class="couleur" >Logiciel / Télécharger</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/" title="Windows" >Windows</a></div>
<div><a href="http://www.clubic.com/telecharger/mac/" title="Mac" >Mac</a></div>
<div><a href="http://www.clubic.com/telecharger/linux/" title="Linux" >Linux</a></div>
<div><a href="http://www.clubic.com/telecharger/windows-mobile/" title="Windows mobile" >Windows mobile</a></div>
<div><a href="http://www.clubic.com/telecharger/iphone/" title="iPhone" >iPhone</a></div>
<div><a href="http://www.clubic.com/telecharger/android/" title="Android" >Android</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/telecharger/symbian/" title="Symbian" >Symbian</a></div>
<div><a href="http://www.clubic.com/telecharger/palm-os/" title="Palm OS" >Palm OS</a></div>
<div><a href="http://www.clubic.com/telecharger/telephone-mobile/" title="Téléphone mobile" >Téléphone mobile</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/telecharger/windows/telechargement/" title="Téléchargement Windows" class="couleur" >Téléchargement Windows</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/retouche-photo/" title="Photo" >Photo</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/gravure-cd-dvd/" title="Gravure" >Gravure</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/video/" title="Video" >Video</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/utilitaire/" title="Utilitaire" >Utilitaire</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/securite/" title="Antivirus et securité" >Antivirus et securité</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/telecharger/windows/internet/" title="Internet" >Internet</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/multimedia/" title="Multimedia / Audio" >Multimedia / Audio</a></div>
<div><a href="http://www.clubic.com/telecharger/windows/bureautique/" title="Bureautique" >Bureautique</a></div>
<div><a href="http://nexway.jeuxvideo.fr/" target="_blank" title="Téléchargement jeux PC" class="couleur" rel="nofollow">Téléchargement jeux PC</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/pilotes---tout-produit---toute-marque---0-0-0-0.html" title="Pilotes et drivers" >Pilotes et drivers</a></div>
<div><a href="http://www.clubic.com/toutes-les-demos-1-4.html" title="Démos de jeux" >Démos de jeux</a></div>
<div><a href="http://www.clubic.com/tous-les-patchs-1-4.html" title="Patchs de jeux" >Patchs de jeux</a></div>
<div><a href="http://www.clubic.com/telecharger/fond-ecran/" title="Fonds d&#039;écran" >Fonds d&#039;écran</a></div>
<div><a href="http://clubic.gamesplanet.com/" title="Télécharger et jouer à volonté" >Télécharger et jouer à volonté</a></div>
<div><a href="http://www.clubic.com/telecharger-fiche207102-everest-poker-online.html" title="Poker" >Poker</a></div>
</div><div class="colonne">
</div>
</div>
<div class="Aide">
<div class="colonne">
<div><a href="http://www.clubic.com/guide-test-comparatif-informatique/" title="Dossiers, tests et comparatifs" class="couleur" >Dossiers, tests et comparatifs</a></div>
<div><a href="http://www.clubic.com/guide-achat-materiel-informatique-high-tech/" title="Guide d&#039;achat informatique et high tech" >Guide d&#039;achat informatique et high tech</a></div>
<div><a href="http://www.clubic.com/choisir-materiel-informatique-high-tech/" title="Comment choisir votre matériel ?" >Comment choisir votre matériel ?</a></div>
<div><a href="http://www.clubic.com/article-13957-1-les-configurations-completes-de-reference.html" title="Les PC Clubic, designés par la Rédaction" >Les PC Clubic, designés par la Rédaction</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/comparateur-de-prix.html" title="Comparateur de prix high tech" class="couleur" >Comparateur de prix high tech</a></div>
<div><a href="http://www.clubic.com/comparatif/ordinateur/" title="Ordinateur" >Ordinateur</a></div>
<div><a href="http://www.clubic.com/comparatif/piece-detachee/" title="Composant PC" >Composant PC</a></div>
<div><a href="http://www.clubic.com/comparatif/peripherique/" title="Périphérique PC" >Périphérique PC</a></div>
<div><a href="http://www.clubic.com/comparatif/stockage/" title="Stockage" >Stockage</a></div>
<div><a href="http://www.clubic.com/comparatif/photo-et-video/" title="Photo &amp; video" >Photo &amp; video</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/comparatif/mobilite/" title="Telephone &amp; gps" >Telephone &amp; gps</a></div>
<div><a href="http://www.clubic.com/comparatif/boitier/" title="Boitier PC" >Boitier PC</a></div>
<div><a href="http://www.clubic.com/comparer-prix/televiseurs/" title="Television" >Television</a></div>
<div><a href="http://www.clubic.com/comparer-prix/pc-portable/" title="Ordinateur portable" >Ordinateur portable</a></div>
<div><a href="http://www.clubic.com/comparer-prix/disque-dur/" title="Disque dur" >Disque dur</a></div>
<div><a href="http://www.clubic.com/comparer-prix/appareil-photo-numerique/" title="Appareil photo numérique" >Appareil photo numérique</a></div>
<div><a href="http://www.clubic.com/comparer-prix/moniteur-lcd/" title="Ecran lcd" >Ecran lcd</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/comparatif/imprimante/" title="Imprimante" >Imprimante</a></div>
<div><a href="http://www.clubic.com/comparer-prix/telephone-portable/" title="Telephone portable" >Telephone portable</a></div>
<div><a href="http://www.clubic.com/comparer-prix/processeur/" title="Processeur" >Processeur</a></div>
<div><a href="http://www.clubic.com/comparer-prix/carte-mere/" title="Carte mère" >Carte mère</a></div>
<div><a href="http://www.clubic.com/comparer-prix/carte-graphique/" title="Carte graphique" >Carte graphique</a></div>
</div><div class="colonne">
<div><a href="http://www.panorabanques.com/?utm_source=m6&amp;utm_medium=partenariat&amp;utm_campaign=clubic_texte" title="Comparateur de banques" class="couleur" rel="nofollow">Comparateur de banques</a></div>
<div><a href="http://www.panorabanques.com/?utm_source=m6&amp;utm_medium=partenariat&amp;utm_campaign=clubic_texte" title="Comparez les banques avec Panorabanques !" rel="nofollow">Comparez les banques avec Panorabanques !</a></div>
</div>
</div>
<div class="Commentfaire">
<div class="colonne">
<div><a href="http://www.clubic.com/probleme-informatique-pc/" title="Problème PC / Mac" class="couleur" >Problème PC / Mac</a></div>
<div><a href="http://home.edt02.net/emc/banner/mstbc.php?c=40060-194905-97535-2681-335181" title="Assistance par téléphone" >Assistance par téléphone</a></div>
<div><a href="http://www.expertinternet.com/tickets/new?origin=clubic" title="Assistance à domicile" >Assistance à domicile</a></div>
</div><div class="colonne">
<div><a href="/actualite-e-business/jeux-argent-en-ligne/aide-probleme/comment-parier-en-ligne-foot-courses-de-chevaux-13812.html" title="Comment parier sur internet" >Comment parier sur internet</a></div>
</div>
</div>
<div class="Discussion">
<div class="colonne">
<div><a href="http://www.clubic.com/forum/" title="Forum PC et informatique" class="couleur" >Forum PC et informatique</a></div>
<div><a href="http://www.clubic.com/forum/hardware-general/" title="Hardware" >Hardware</a></div>
<div><a href="http://www.clubic.com/forum/jeux-video-pc/" title="Jeux PC" >Jeux PC</a></div>
<div><a href="http://www.clubic.com/forum/overclocking-tuning/" title="Overclocking et tuning" >Overclocking et tuning</a></div>
<div><a href="http://www.clubic.com/forum/microsoft-windows/" title="Microsoft Windows" >Microsoft Windows</a></div>
<div><a href="http://www.clubic.com/forum/logiciel-general/" title="Logiciel" >Logiciel</a></div>
<div><a href="http://www.clubic.com/forum/ordinateurs-portables-pda-mobile/" title="Ordinateurs portables" >Ordinateurs portables</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/forum/petites-annonces-ventes-achats/" title="Petites annonces" >Petites annonces</a></div>
<div><a href="http://www.clubic.com/forum/debat-sur-l-actu/" title="Debat sur l&#039;actu" >Debat sur l&#039;actu</a></div>
<div><a href="http://www.clubic.com/forum/et-a-part-ca/" title="Et à part ça" >Et à part ça</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/api/creer_un_compte.php?next=/forum/" title="Rejoindre la communauté" >Rejoindre la communauté</a></div>
<div><a href="http://www.clubic.com/divers/partner.php" title="M&#039;abonner aux flux" >M&#039;abonner aux flux</a></div>
</div><div class="colonne">
<div><a href="http://www.clubic.com/probleme-informatique-pc/question.html" title="Problème informatique" class="couleur" >Problème informatique</a></div>
<div><a href="http://depannage.informatique-internet.wengo.fr/index.php?yawl[S]=wengopass.directory.services&amp;yawl[K]=search&amp;payload[idDirectory]=1008&amp;wl=36" title="Dépannage par téléphone" >Dépannage par téléphone</a></div>
<div><a href="http://www.expertinternet.com/demandes-d-assistance-informatique?expert=open" title="Dépannage à domicile" >Dépannage à domicile</a></div>
</div>
</div>
</div><!-- #menu -->
<!-- .nav_search -->
<div class="clearer"><!-- --></div>
</div><!-- #header -->
<div id="banniere" style="background-color: #393738; width: 1000px; position: relative;"></div>
<div id='pub_dart_LIS_T2_5x5'>
<script type="text/javascript">if(typeof adstimer == 'function'){ adstimer(); }</script>
<script type='text/javascript'><!--
document.write('<scr'+'ipt type="text/javascript" src="'+getDartCode('LIS_T2_5x5')+';"><'+'/script>');
--></script>
<script type="text/javascript">if(typeof adstimer == 'function'){ adstimer(); }</script>
</div>
<div id='pub_dart_MBR_T_728x90'>
<span id="annonce_pub"><img src="/api/img/pixel.gif" class="sprite-global arrowDown_pub_png" alt='fleche' />Publicit&eacute;</span>
<script type="text/javascript">if(typeof adstimer == 'function'){ adstimer(); }</script>
<script type='text/javascript'>
document.write('<scr'+'ipt type="text/javascript" src="'+getDartCode('MBR_T_728x90')+';"><'+'/script>');
</script>
<script type="text/javascript">if(typeof adstimer == 'function'){ adstimer(); }</script>
</div>
<div id="contenu">
<span id="annonce_pub_contenu_thematique"><img src="/img/home/arrowDown_pub.png" alt='fleche' />Publicit&eacute;</span>
<div id="colMiddleThematique" class="pro">
<div class="slide_premium">
<script type='text/javascript'>
$(function() {
$('#alaune').premium({
'itemsSelector' : '.list li',
'viewsSelector' : '.actus .actu',
'duration' : 'slow',
'delay' : 10
});
});
</script>
<div id="alaune" class="inner">
<ul class="list cf">
<li>
<a href="/it-business/article-508407-1-big-data-analyse-donnees-interesse-entreprises.html" class="show-a">
<img src="http://img.clubic.com/005A005005379701-c1-photo-les-3v-du-big-data-d-apres-teralytics.jpg" alt="Cap sur le Big Data" height="83" width="97" />
</a>
</li>
<li>
<a href="/it-business/actualite-504274-oracle-hp-itanium.html" class="show-b">
<img src="http://img.clubic.com/005A005005337692-c1-photo-hp-hewlett-packard-headquarters-siege.jpg" alt="HP : 1 - Oracle : 0" height="83" width="97" />
</a>
</li>
<li>
<a href="/entreprises/apple/actualite-503852-apple-samsung-recap-proces-us.html" class="show-c">
<img src="http://img.clubic.com/005A005004560454-c1-photo-apple-samsung.jpg" alt="Apple / Samsung" height="83" width="97" />
</a>
</li>
</ul><!-- #shows -->
<div class="actus">
<div class="actu actu3-a">
<div class="visu"><a href="/it-business/article-508407-1-big-data-analyse-donnees-interesse-entreprises.html"><img src="http://img.clubic.com/015E00FA05379701-photo-les-3v-du-big-data-d-apres-teralytics.jpg" alt="Cap sur le Big Data" height="250" width="350" /></a>
<div class="descriptif" >
<h3><a href="/it-business/article-508407-1-big-data-analyse-donnees-interesse-entreprises.html">Cap sur le Big Data</a></h3>
<p><a href="/it-business/article-508407-1-big-data-analyse-donnees-interesse-entreprises.html">Enjeux et perspectives autour de l'explosion du volume de données...</a></p>
</div>
</div>
</div><!-- .actu -->
<div class="actu actu3-b" style="display:none;">
<div class="visu"><a href="/it-business/actualite-504274-oracle-hp-itanium.html"><img src="http://img.clubic.com/015E00FA05337692-photo-hp-hewlett-packard-headquarters-siege.jpg" alt="HP : 1 - Oracle : 0" height="250" width="350" /></a>
<div class="descriptif">
<h3><a href="/it-business/actualite-504274-oracle-hp-itanium.html">HP : 1 - Oracle : 0</a></h3>
<p><a href="/it-business/actualite-504274-oracle-hp-itanium.html">HP remporte une manche face à Oracle dans l'affaire Itanium</a></p>
</div>
</div>
</div><!-- .actu -->
<div class="actu actu3-c" style="display:none;">
<div class="visu"><a href="/entreprises/apple/actualite-503852-apple-samsung-recap-proces-us.html"><img src="http://img.clubic.com/015E00FA04560454-photo-apple-samsung.jpg" alt="Apple / Samsung" height="250" width="350" /></a>
<div class="descriptif">
<h3><a href="/entreprises/apple/actualite-503852-apple-samsung-recap-proces-us.html">Apple / Samsung</a></h3>
<p><a href="/entreprises/apple/actualite-503852-apple-samsung-recap-proces-us.html">Début du procès fleuve aux Etats-Unis</a></p>
</div>
</div>
</div><!-- .actu -->
</div>
</div> <!-- #alaune -->
</div>
<div class="bloc_newsEntreprise">
<div class="news-entreprise">
<ul>
<li class="first">
<span class="date">18:34</span> | <a href="http://www.clubic.com/univers-mac/apple/actualite-509245-apple-keynote-12-iphone-5.html" title="Apple confirme une keynote le 12 septembre, et l'arrivée de l'iPhone 5" >Apple confirme une keynote le 12 septembre, et l'arrivée de l'iPhone 5</a>
</li>
<li >
<span class="date">03/09</span> | <a href="/entreprises/apple/actualite-508843-usa-apple-depose-plainte-violation-brevets-samsung.html" title="USA : Apple dépose une nouvelle plainte pour violation de brevets contre Samsung" >USA : Apple dépose une nouvelle plainte pour violation de brevets contre Samsung</a>
</li>
<li >
<span class="date">31/08</span> | <a href="/entreprises/apple/actualite-508565-apple-deboute-face-samsung-japon.html" title="Apple vs Samsung : un tribunal japonais déboute l'Américain" >Apple vs Samsung : un tribunal japonais déboute l'Américain</a>
</li>
<li >
<span class="date">28/08</span> | <a href="/entreprises/apple/actualite-507864-apple-bloquer-ventes-8-appareils-samsung-usa.html" title="Apple veut bloquer les ventes de 8 appareils Samsung aux USA (màj)" >Apple veut bloquer les ventes de 8 appareils Samsung aux USA (màj)</a>
</li>
<li >
<span class="date">27/08</span> | <a href="http://www.clubic.com/television-tv/ecran-3d/actualite-507820-game-world-lg-plateforme-jeux-connectees.html" title="Game World : LG lance une plateforme de jeux sur ses TV 3D" >Game World : LG lance une plateforme de jeux sur ses TV 3D</a>
</li>
</ul>
</div> </div>
<div class="pub_premium">
<script type='text/javascript'>if(typeof adstimer == 'function'){ adstimer(); }</script>
<script type='text/javascript'><!--
document.write('<scr'+'ipt type=\"text/javascript\" src=\"'+getDartCode('REC_M_300x250')+';\"><'+'/script>');
--></script>
<script type='text/javascript'>if(typeof adstimer == 'function'){ adstimer(); }</script>
<!-- #pubHome -->
</div>
</div><!-- #colMiddle -->
<div class="clearer"><!-- --></div>
<div id="tag"><!-- #tag est commun au deux fichiers essentiel et déclaration, faire attention à ne pas mettre de modifications css spécifiques dessus -->
</div>
<div class="clearer"><!-- --></div>
<div id="cols">
<div id="colLeft">
<script type="text/javascript">
var cur

View File

View File

@ -0,0 +1,126 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Toute l'actualité Ciné</title>
<link>http://www.allocine.fr/article/</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Tue, 30 Dec 2008 17:41:00 GMT</lastBuildDate>
<pubDate>Tue, 30 Dec 2008 17:41:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine" type="application/rss+xml" /><item>
<category />
<title>Un nouveau biopic pour Scorsese ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/498715259/fichearticle_gen_carticle=18441705.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23001.html"&gt;Tournages&lt;/a&gt; &gt; Actuellement en train de paufiner son "Shutter Island", le réalisateur Martin Scorsese envisagerait de mettre en scène la vie du gangster John Martorano.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441705.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 30 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/498715259" height="1" width="1"/&gt;</description>
<pubDate>Tue, 30 Dec 2008 15:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441705</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/71/31/18799440.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441705.html</feedburner:origLink></item>
<item>
<category />
<title>"Street Fighter : Legend of Chun-Li" : la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/498620762/fichearticle_gen_carticle=18441720.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23012.html"&gt;Vu sur le web&lt;/a&gt; &gt; Les fans d'arts martiaux vont être aux anges puisque les premières images de "Street Fighter : Legend of Chun-Li" sont disponibles sur la toile. Ready ? Fight !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441720.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 30 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/498620762" height="1" width="1"/&gt;</description>
<pubDate>Tue, 30 Dec 2008 14:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441720</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/62/82/68/18653504.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441720.html</feedburner:origLink></item>
<item>
<category />
<title>Obama président : les stars mettent la main à la poche !&#xD;
</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/497713292/fichearticle_gen_carticle=18441594.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; Les stars américaines, de Spielberg à Halle Berry en passant par Sharon Stone, continuent de soutenir le président américain Barack Obama en contribuant financièrement à la cérémonie d'investiture du 20 janvier prochain. &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441594.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 29 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/497713292" height="1" width="1"/&gt;</description>
<pubDate>Mon, 29 Dec 2008 12:50:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441594</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/01/33/18901847.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441594.html</feedburner:origLink></item>
<item>
<category />
<title>Box-office US : à la niche, 2008 !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/497596499/fichearticle_gen_carticle=18441554.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; La comédie "Marley &amp; Me" est le dernier leader du box-office américain 2008 avec 37 millions de dollars de recettes, devant "Histoires enchantées", "L'Etrange histoire de Benjamin Button" et "Walkyrie". Quatre films qui donnent un sacré coup de fouet au BO US de cette fin d'année.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441554.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 29 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/497596499" height="1" width="1"/&gt;</description>
<pubDate>Mon, 29 Dec 2008 09:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441554</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/97/12/18965365.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441554.html</feedburner:origLink></item>
<item>
<category />
<title>Et le studio qui devrait distribuer "Watchmen" est...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/495564393/fichearticle_gen_carticle=18441403.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; ... la Fox ! Opposé à la Warner à propos des droits du roman graphique d'Alan Moore et Dave Gibbons, le studio vient d'obtenir gain de cause, et pourrait distribuer le film de Zack Snyder en mars prochain.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441403.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 26 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/495564393" height="1" width="1"/&gt;</description>
<pubDate>Fri, 26 Dec 2008 13:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441403</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18824570.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441403.html</feedburner:origLink></item>
<item>
<category />
<title>USA : ce week-end dans les salles...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/495548729/fichearticle_gen_carticle=18441411.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; Des histoires enchantées, un petit chien nommé Marley, une étrange histoire, Tom Cruise, une valse avec Bachir... Voici le menu des cinémas américains pour ce dernier week-end de l'année. &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441411.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 26 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/495548729" height="1" width="1"/&gt;</description>
<pubDate>Fri, 26 Dec 2008 11:59:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441411</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/31/57/18977165.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441411.html</feedburner:origLink></item>
<item>
<category />
<title>Et de trois pour "Madagascar 2" !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/495144239/fichearticle_gen_carticle=18441387.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; Le film d'animation "Madagascar 2" profite à plein des vacances scolaires. Il occupe la tête du box-office hexagonal pour la troisième semaine consécutive et totalise désormais près de 3,3 millions d'entrées. Impressionnant.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441387.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 25 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/495144239" height="1" width="1"/&gt;</description>
<pubDate>Thu, 25 Dec 2008 20:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441387</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/37/74/18774430.gif" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441387.html</feedburner:origLink></item>
<item>
<category />
<title>Décès du dramaturge britannique Harold Pinter</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/495011567/fichearticle_gen_carticle=18441385.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23004.html"&gt;Célébrités&lt;/a&gt; &gt; Le grand dramaturge et écrivain britannique Harold Pinter, Prix Nobel de littérature en 2005, également écrivain et scénariste pour le cinéma, est décédé ce 24 décembre. Il était âgé de 78 ans.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441385.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 25 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/495011567" height="1" width="1"/&gt;</description>
<pubDate>Thu, 25 Dec 2008 19:10:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441385</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/55/78/19033466.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441385.html</feedburner:origLink></item>
<item>
<category />
<title>"State of Play" : la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/494930824/fichearticle_gen_carticle=18441290.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23012.html"&gt;Vu sur le web&lt;/a&gt; &gt; Les premières images de "State of Play", qui réunit Russell Crowe, Ben Affleck et Rachel McAdams, sont enfin visibles sur la toile !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441290.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 25 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/494930824" height="1" width="1"/&gt;</description>
<pubDate>Thu, 25 Dec 2008 11:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441290</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/96/56/19005072.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441290.html</feedburner:origLink></item>
<item>
<category />
<title>Woody bientôt à Paris ?&#xD;
</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/494784647/fichearticle_gen_carticle=18441321.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23001.html"&gt;Tournages&lt;/a&gt; &gt; Woody Allen pourrait venir tourner son prochain long-métrage dans la capitale. Le crédit d'impôt devrait l'aider à financer son projet.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441321.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 25 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/494784647" height="1" width="1"/&gt;</description>
<pubDate>Thu, 25 Dec 2008 09:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441321</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18602403.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441321.html</feedburner:origLink></item>
<item>
<category />
<title>Un Demy panaché !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/494601035/fichearticle_gen_carticle=18441277.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23005.html"&gt;Interviews&lt;/a&gt; &gt; A l'occasion de la sortie de l'Intégrale Jacques Demy en DVD, Agnès Varda évoque pour AlloCiné l'univers en-chanté d'un cinéaste enfin considéré à sa juste valeur.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441277.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 25 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/494601035" height="1" width="1"/&gt;</description>
<pubDate>Thu, 25 Dec 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441277</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/54/12/19032228.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18441277.html</feedburner:origLink></item>
<item>
<category />
<title>L'Amour s'affiche...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/494601036/fichearticle_gen_carticle=18441058.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23144.html"&gt;Dossiers&lt;/a&gt; &gt; A l'occasion de la sortie d'Australia, retrouvez une sélection des affiches des plus belles histoires d'amour. &lt;i&gt;Coordonné par Laëtitia Forhan&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18441058.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 25 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/494601036" height="1" width="1"/&gt;</description>
<pubDate>Thu, 25 Dec 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18441058</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/51/60/19030866.jpg" type="image/jpeg" />
<feedburner:origLink>h

View File

View File

@ -0,0 +1,214 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Akihabaranews.com</title>
<link>http://www.akihabaranews.com</link>
<description>Akihabara News : Your Leading News provider on Gadgets and Hi-Tech stuff from Akihabara in Tokyo Japan and in other Asian Countries</description>
<language>en</language>
<pubDate>Fri, 29 Feb 2008 14:39:44 GMT</pubDate>
<lastBuildDate>Fri, 29 Feb 2008 14:39:44 GMT</lastBuildDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>Akihabaranews RSS Feed</generator>
<managingEditor>info@akihabaranews.com</managingEditor>
<webMaster>webmaster@akihabaranews.com</webMaster>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Akihabaranews_en" type="application/rss+xml" /><feedburner:emailServiceId>234204</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>You're in the Army Now!</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/243256407/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15601-You%27re+in+the+Army+Now%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15601/b.jpg" width="128" height="83" border="0" alt="You%27re+in+the+Army+Now%21" title="You%27re+in+the+Army+Now%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
NTT DoCoMo recently presented their latest emergency communication systems, to use in case of a major catastophe (and you know that Japan is not the most stable country on that point), on a military facility which location I can't tell you, it's secret! &lt;br /&gt;
&lt;br /&gt;
Just kidding.&lt;br /&gt;
&lt;br /&gt;
Anyway, this was a "2 in 1" for me and provided me the opportunity to get a closer look at the Japanese military system.&lt;br /&gt;
&lt;br /&gt;
I was welcomed very nicely and pretty easy to spot anyway, being the on...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15601-You%27re+in+the+Army+Now%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=ERvmUo"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=ERvmUo" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=t4LfMrE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=t4LfMrE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=HjNYxFE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=HjNYxFE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=aAXWESe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=aAXWESe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NRzgdme"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NRzgdme" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=sWlqwUe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=sWlqwUe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=d1LOD4E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=d1LOD4E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6trHsjE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6trHsjE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/243256407" height="1" width="1"/&gt;</description>
<pubDate>Fri, 29 Feb 2008 10:44:13 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15601</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15601</feedburner:origLink></item>
<item>
<title>Notebook Pron Gallery with Panasonic</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/243187963/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15603-Notebook+Pron+Gallery+with+Panasonic.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15603/b.jpg" width="128" height="83" border="0" alt="Notebook+Pron+Gallery+with+Panasonic" title="Notebook+Pron+Gallery+with+Panasonic" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Believe it or not, but NO I'm neither a Sony or Apple Fan Boy… But I have to admit I'am very fond of Panasonic products, like the AMAZING tiny R7… When Panasonic announced that they'll sell two new R7s in black as well as black &amp; blue, I couldn't resist asking them to send me these two new devices plus a regular silver version!&lt;br /&gt;
&lt;br /&gt;
I don't believe that there's a need for the R7, but briefly this is a compact PC (229x187x29.4mm for 940g), powered by a Core 2 Duo CPU of ...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15603-Notebook+Pron+Gallery+with+Panasonic.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=xd8k0g"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=xd8k0g" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=EiuenqE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=EiuenqE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=UFkHbHE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=UFkHbHE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=HWE5Lye"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=HWE5Lye" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XBvcMGe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XBvcMGe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=WoCOHwe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=WoCOHwe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=f63Pv9E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=f63Pv9E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=j3JPJTE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=j3JPJTE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/243187963" height="1" width="1"/&gt;</description>
<pubDate>Fri, 29 Feb 2008 08:06:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15603</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15603</feedburner:origLink></item>
<item>
<title>A New Dual SATA HDD Case from Evergreen</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/243187964/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15602-A+New+Dual+SATA+HDD+Case+from+Evergreen.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15602/b.jpg" width="128" height="83" border="0" alt="A+New+Dual+SATA+HDD+Case+from+Evergreen" title="A+New+Dual+SATA+HDD+Case+from+Evergreen" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Fed-up with white or black aluminum USB HDD cases? And what about blue, purple, red, or silver? &lt;br /&gt;
The DN-HS-207U supports up to 1TB max (2x500GB) and will let you decide to either combine these 2 HDD in one or treat them as two separate volumes....&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15602-A+New+Dual+SATA+HDD+Case+from+Evergreen.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=HetjLh"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=HetjLh" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=hS3NWCE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=hS3NWCE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=KFE1NME"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=KFE1NME" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=2PQKdoe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=2PQKdoe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=mXwLfbe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=mXwLfbe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=40Ugmze"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=40Ugmze" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=F1MGSfE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=F1MGSfE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=rSK81oE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=rSK81oE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/243187964" height="1" width="1"/&gt;</description>
<pubDate>Fri, 29 Feb 2008 08:02:34 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15602</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15602</feedburner:origLink></item>
<item>
<title>Prime Monarch XE: A Base de Xeon E3110</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/243144897/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15600-Prime+Monarch+XE%3A++A+Base+de+Xeon+E3110.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15600/b.jpg" width="128" height="83" border="0" alt="Prime+Monarch+XE%3A++A+Base+de+Xeon+E3110" title="Prime+Monarch+XE%3A++A+Base+de+Xeon+E3110" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We at Akihabara News are big fans of the prime line-up from DosPara, a Japanese BTO PC reseller. Actually most of our desktops here at the office have been bought there (even our home made server below). &lt;br /&gt;
&lt;br /&gt;
This morning DosPara launched a new desktop, the Prime Monarch XE, a PC based on the P35 Express chipset and an Intel Xeon E3110. Available BTO (Build to Order), you'll start with a basic 2GB of Ram (Samsung), 500GB of HDD Sata II and a GeForce 8800GT with 512MB of...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15600-Prime+Monarch+XE%3A++A+Base+de+Xeon+E3110.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=qx4iJl"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=qx4iJl" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=lloi0lE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=lloi0lE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Sg4uOFE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Sg4uOFE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=EjHXy5e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=EjHXy5e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=X9hkwSe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=X9hkwSe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=YM3dcBe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=YM3dcBe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=b7ZbFqE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=b7ZbFqE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=IcLc88E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=IcLc88E" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/243144897" height="1" width="1"/&gt;</description>
<pubDate>Fri, 29 Feb 2008 05:59:07 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15600</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15600</feedburner:origLink></item>
<item>
<title>Casio and It's New Mobile Business Data Collector</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/243134418/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15599-Casio+and+It%27s+New+Mobile+Business+Data+Collector.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15599/b.jpg" width="128" height="83" border="0" alt="Casio+and+It%27s+New+Mobile+Business+Data+Collector" title="Casio+and+It%27s+New+Mobile+Business+Data+Collector" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It seems that Japanese companies are creating new mobile business terminals/data collectors everyday! What about doing something more glamourous like a nice iPHONE killer? &lt;br /&gt;
&lt;br /&gt;
This new device, the DT-X7, is somewhat more attractive than what we're used to. It'll help people quickly grab relevant information in any store or storage area, and can be transmitted quickly to a network since it supports both Wifi B and G. Another nice features is VoIP capability, if a staff m...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15599-Casio+and+It%27s+New+Mobile+Business+Data+Collector.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=JKTdoh"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=JKTdoh" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ALrLVGE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ALrLVGE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=C3NYbnE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=C3NYbnE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=QzrFUXe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=QzrFUXe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=TmYUIMe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=TmYUIMe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=tor1GPe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=tor1GPe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=rJHqMYE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=rJHqMYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=hwrfnhE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=hwrfnhE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/243134418" height="1" width="1"/&gt;</description>
<pubDate>Fri, 29 Feb 2008 05:28:55 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15599</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15599</feedburner:origLink></item>
<item>
<title>Two New 3D Ready PDP TVs from Samsung</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/242579121/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15598-Two+New+3D+Ready+PDP+TVs+from+Samsung.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15598/b.jpg" width="128" height="83" border="0" alt="Two+New+3D+Ready+PDP+TVs+from+Samsung" title="Two+New+3D+Ready+PDP+TVs+from+Samsung" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Want to jump into the 3D madness? Suit yourself with these two new PAVV TVs from Samsung in Korea, available in 42" and 50” and 3D Ready PDP TV” (PDP = Plasma). Samsung worked in collaboration with Electronic Arts to ensure these TVs will give you the best gaming experience possible, and to tweak the 3D display rendering. It's also important to note that our TVs were given the DNIe+ (Digital Natural Image engine+). On a side note we have here USB 2.0 Support, HDMI 1.3, and full ...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15598-Two+New+3D+Ready+PDP+TVs+from+Samsung.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=f3jISO"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=f3jISO" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=UZ205oE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=UZ205oE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=3deUTeE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=3deUTeE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Ee3dyBe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Ee3dyBe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=J6wXpQe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=J6wXpQe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ivKw2He"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ivKw2He" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=SZnNugE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=SZnNugE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=k74HsyE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=k74HsyE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/242579121" height="1" width="1"/&gt;</description>
<pubDate>Thu, 28 Feb 2008 08:00:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15598</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15598</feedburner:origLink></item>
<item>
<title>MU-D: The New Multimedia Dictionary from Inkel</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/242567515/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15597-MU-D%3A++The+New+Multimedia+Dictionary+from+Inkel.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15597/b.jpg" width="128" height="83" border="0" alt="MU-D%3A++The+New+Multimedia+Dictionary+from+Inkel" title="MU-D%3A++The+New+Multimedia+Dictionary+from+Inkel" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Inkel is a Korean based company which produces all kinds of electronic goods ranging from TVs, audio systems and PDA. Today they came to us with the MU-D Multimedia Dictionary which is in fact a hybrid device between a PMP with a DMB TV Tuner (Digital TV), and a dictionary. &lt;br /&gt;
&lt;br /&gt;
Powered by WinCE 5.0, our MU-Ds have a 4.3” LCD with a 480x272 resolution, 4GB of internal memory support, support SDHC cards up to 12GB, and is only available in Korea....&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15597-MU-D%3A++The+New+Multimedia+Dictionary+from+Inkel.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=49qpof"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=49qpof" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=EV99sdE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=EV99sdE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=huPwRnE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=huPwRnE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=oh7TxFe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=oh7TxFe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=zjSLHoe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=zjSLHoe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Xgloh9e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Xgloh9e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=oWFWagE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=oWFWagE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Knp9waE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Knp9waE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/242567515" height="1" width="1"/&gt;</description>
<pubDate>Thu, 28 Feb 2008 07:38:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15597</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15597</feedburner:origLink></item>
<item>
<title>Dragon Ball Online… News from Korea</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/242544798/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15596-Dragon+Ball+Online%E2%80%A6+News+from+Korea.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15596/b.jpg" width="128" height="83" border="0" alt="Dragon+Ball+Online%E2%80%A6+News+from+Korea" title="Dragon+Ball+Online%E2%80%A6+News+from+Korea" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Bandai Korea unveiled more information regarding the upcoming new MMORPG, Dragon Ball Online. Basically, it seems that the Japanese Animation/Manga has been adapted to the MMORPG world by Bandai Korea. Well not too surprising here since Korea is the leading country when it comes to cool and funky MMORPG. Dragon Ball Online take place 250 years after Dragon Ball Z and Majin-Bu (Age 1000)… &lt;br /&gt;
&lt;br /&gt;
More information can be found on the video and pictures below. .&lt;br /&gt;
&lt;br /&gt;
For those who wo...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15596-Dragon+Ball+Online%E2%80%A6+News+from+Korea.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=xDfmJa"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=xDfmJa" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=8cbFK2E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=8cbFK2E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=j8DxeZE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=j8DxeZE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=QErRkne"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=QErRkne" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Ci0kPqe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Ci0kPqe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=nuBprLe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=nuBprLe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=5HA274E"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=5HA274E" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=HheSMWE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=HheSMWE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/242544798" height="1" width="1"/&gt;</description>
<pubDate>Thu, 28 Feb 2008 06:26:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15596</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15596</feedburner:origLink></item>
<item>
<title>The iAUDIO U5 Finally Reaches Japan</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/242534286/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15595-The+iAUDIO+U5+Finally+Reaches+Japan.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15595/b.jpg" width="128" height="83" border="0" alt="The+iAUDIO+U5+Finally+Reaches+Japan" title="The+iAUDIO+U5+Finally+Reaches+Japan" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
While you lucky little fellows in the USA have had the chance to play with the latest U5 from iAUDIO, those of us living in Japan had to wait until today to finally see this new DAP in the flesh… &lt;br /&gt;
&lt;br /&gt;
Anyway, since this device is definitly not new, I'll just copy and paste its basic information:&lt;br /&gt;
&lt;br /&gt;
Supports Windows Media DRM 10, MTP (Media Transfer Protocol)&lt;br /&gt;
MP3, WMA, WAV Playback / FM Radio, Recording / Voice Recording&lt;br /&gt;
Built-In Flash Memory 4GB, 8GB&lt;...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15595-The+iAUDIO+U5+Finally+Reaches+Japan.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=nLYQac"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=nLYQac" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BrjBFOE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BrjBFOE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=T7HoIbE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=T7HoIbE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=v1NTRBe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=v1NTRBe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=9viSGme"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=9viSGme" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=IJRNq1e"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=IJRNq1e" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=kjUjhUE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=kjUjhUE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=V5Z4XsE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=V5Z4XsE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/242534286" height="1" width="1"/&gt;</description>
<pubDate>Thu, 28 Feb 2008 06:07:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15595</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15595</feedburner:origLink></item>
<item>
<title>Two New Mobile Business Terminals Running WinCe: From Fujitsu</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/242534287/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15594-Two+New+Mobile+Business+Terminals+Running+WinCe%3A+From+Fujitsu.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15594/b.jpg" width="128" height="83" border="0" alt="Two+New+Mobile+Business+Terminals+Running+WinCe%3A+From+Fujitsu" title="Two+New+Mobile+Business+Terminals+Running+WinCe%3A+From+Fujitsu" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Fujitsu this morning is proud to announce the release of two new business terminals: &lt;br /&gt;
&lt;br /&gt;
TeamPad 7500Ws - a tablet like terminal running Windows CE5.0 Professional Plus, a PXA320 (624MHz), 1GB of ROM, 256MB of RAM, a 10.4” XGA touch screen, wireless lan, Bluetooth, RS232, USB, CF slot, and 7h battery life span at a size of 290x205x25mm for 970g. &lt;br /&gt;
&lt;br /&gt;
Patio300 - PDA like with an integrated printer, which also runs under Windows CE5.0 Professional Plus. It has a PXA270 (520M...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-15594-Two+New+Mobile+Business+Terminals+Running+WinCe%3A+From+Fujitsu.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=5pyfUM"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=5pyfUM" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=KAbkBhE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=KAbkBhE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=UZG9APE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=UZG9APE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=pfhtuee"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=pfhtuee" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=k32pnNe"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=k32pnNe" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=RMskple"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=RMskple" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=xe8Z1EE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=xe8Z1EE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=lem09QE"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=lem09QE" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/242534287" height="1" width="1"/&gt;</description>
<pubDate>Thu, 28 Feb 2008 05:51:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=15594</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=15594</feedburner:origLink></item>
<item>
<title>Akihabara News and Daimaou on Facebook</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/242453632/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-15593-Akihabara+News+and+Daimaou+on+Facebook.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/15593/b.jpg" width="128" height="83" border="0" alt="Akihabara+News+and+Daimaou+on+Facebook" title="Akihabara+News+and+Daimaou+on+Facebook" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Are you using Facebook? Guess what, me too! (well, since this morning). After being asked millions of times if I had a Facebook account I finally created one this morning… If you want to get close to us… Just search for “Daimaou CochonVert” in Facebook…&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.facebook.com/srch

View File

View File

@ -0,0 +1,288 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title><![CDATA[Actualité Presence PC]]></title>
<description><![CDATA[Presence PC]]></description>
<link>http://www.presence-pc.com</link>
<language>fr</language>
<ttl>10</ttl>
<lastBuildDate>Sat, 05 Apr 2008 17:49:12 +0200</lastBuildDate>
<item>
<title><![CDATA[Une semaine d'actu Jeux Vidéo PC]]></title>
<link>http://www.presence-pc.com/actualite/Assassin-Creed-Ubisoft-28721/</link>
<pubDate>Sat, 05 Apr 2008 09:00:00 CEST</pubDate>
<category><![CDATA[Jeux vidéos]]></category>
<description><![CDATA[Cette semaine : la preview d'Assassin's Creed et le résumé de l'actualité vidéoludique de la semaine...]]></description>
</item>
<item>
<title><![CDATA[GPU : AMD regagne des parts de marché]]></title>
<link>http://www.presence-pc.com/actualite/AMD-GPU-28727/</link>
<pubDate>Sat, 05 Apr 2008 01:40:00 CEST</pubDate>
<category><![CDATA[Cartes graphiques]]></category>
<description><![CDATA[AMD a regagné des parts de marché durant le dernier trimestre 2007, revenant ainsi sur le devant de la scène. La firme reste néanmoins troisième derrière NVIDIA et Intel.]]></description>
<enclosure url="http://media.bestofmicro.com/Radeon-HD-3870-X2-test,V-G-76300-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[NVIDIA et AMD attendent la GDDR5 ?]]></title>
<link>http://www.presence-pc.com/actualite/AMD-NVIDIA-GDDR5-28726/</link>
<pubDate>Sat, 05 Apr 2008 01:10:00 CEST</pubDate>
<category><![CDATA[Cartes graphiques]]></category>
<description><![CDATA[Plusieurs analystes pensent que les fabricants de GPU attendent la GDDR5 pour sortir des architectures réellement nouvelles.]]></description>
<enclosure url="http://media.bestofmicro.com/The-bottom-of-the-Geforce-8800-GPU,4-U-90894-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Windows 7 pour 2009]]></title>
<link>http://www.presence-pc.com/actualite/Windows-Seven-28725/</link>
<pubDate>Sat, 05 Apr 2008 00:50:00 CEST</pubDate>
<category><![CDATA[Systèmes d'exploitation]]></category>
<description><![CDATA[Bill Gates vient d'annoncer officiellement que Windows 7 serait disponible au grand public en 2009 et que les équipes étaient à l'heure.]]></description>
<enclosure url="http://media.bestofmicro.com/Windows-Seven-Microsoft,5-7-37771-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[La PSP fleurit au Japon]]></title>
<link>http://www.presence-pc.com/actualite/Japon-PSP-28724/</link>
<pubDate>Sat, 05 Apr 2008 00:30:00 CEST</pubDate>
<category><![CDATA[Consoles]]></category>
<description><![CDATA[Durant la semaine se terminant le 30 mars, il s'est vendu 129 986 PSP au Japon, ce qui lui permit de passer devant la DS.]]></description>
<enclosure url="http://media.bestofmicro.com/PSP-DS-Nintendo-Sony,7-A-71542-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[97 % des CPU coûtent moins de 200 $]]></title>
<link>http://www.presence-pc.com/actualite/CPU-28723/</link>
<pubDate>Sat, 05 Apr 2008 00:10:00 CEST</pubDate>
<category><![CDATA[Processeurs]]></category>
<description><![CDATA[Selon une étude de Mercury Research, 96,6 % des processeurs qui devraient être vendus en 2008 coûteront moins de 200 $.]]></description>
<enclosure url="http://media.bestofmicro.com/Atom-poulsbo-silverthorne-intel,E-7-96415-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Zoom sur UEFA Euro 2008]]></title>
<link>http://www.presence-pc.com/actualite/uefa-foot-28720/</link>
<pubDate>Fri, 04 Apr 2008 17:50:00 CEST</pubDate>
<category><![CDATA[Jeux vidéos]]></category>
<description><![CDATA[En partenariat avec [Tom's Games>http://www.tomsgames.com], voici la présentation jeu vidéo du jour :
"Hasard du calendrier, deux jours après avoir fait la cuisine pour les membres du gouvernement, le célèbre établissement parisien l'Alcazar, accueil]]></description>
<enclosure url="http://media.bestofmicro.com/,G-5-96485-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Kingston : de la DDR3 certifiée SLI]]></title>
<link>http://www.presence-pc.com/actualite/Kingston-DDR3-SLI-28719/</link>
<pubDate>Fri, 04 Apr 2008 17:40:00 CEST</pubDate>
<category><![CDATA[Mémoires]]></category>
<description><![CDATA[Le constructeur Kingston vient d'annoncer, via un communiqué de presse, que sa nouvelle gamme de mémoire HyperX « Série N » bénéficiait de la certification SLI de la part de Nvidia et était compatible avec les profils EPP 2.0...]]></description>
<enclosure url="http://media.bestofmicro.com/Kingston-HyperX-DDR3-1375,F-N-39443-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Versa S9100 : l'ultraportable pro de NEC]]></title>
<link>http://www.presence-pc.com/actualite/NEC-Versa-S9100-28716/</link>
<pubDate>Fri, 04 Apr 2008 16:10:00 CEST</pubDate>
<category><![CDATA[PC portables]]></category>
<description><![CDATA[NEC vient d'annoncer le lancement du Versa S9100, un ordinateur ultraportable destiné aux professionnels. Son châssis en alliage de magnésium lui apporte une certaine résistance tout en lui permettant de conserver un poids relativement raisonnable...]]></description>
<enclosure url="http://media.bestofmicro.com/Nec-Versa-S9100,F-J-96463-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[La Geforce 8800 GS rebaptisée 9600 GSO ?]]></title>
<link>http://www.presence-pc.com/actualite/geforce-9600GSO-28718/</link>
<pubDate>Fri, 04 Apr 2008 15:40:00 CEST</pubDate>
<category><![CDATA[Cartes graphiques]]></category>
<description><![CDATA[Geforce 9, Geforce 9 c'est vite dit. Ces cartes sont encore basées sur l'architecture des anciennes 8800. Les différences entre les dernières 8800 et les premières 9x00 se comptent sur les doigts de la main. Au point que Nvidia va transformer la 8800 GS..]]></description>
<enclosure url="http://media.bestofmicro.com/,W-Z-75059-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[OCZ : une alim « silencieuse » de 500W]]></title>
<link>http://www.presence-pc.com/actualite/OCZ-Silencer-500W-28715/</link>
<pubDate>Fri, 04 Apr 2008 15:20:00 CEST</pubDate>
<category><![CDATA[Alimentations]]></category>
<description><![CDATA[OCZ vient d'annoncer le lancement d'un nouveau modèle d'alimentation dans sa gamme Silencer. D'une puissance de 500 Watts (550 Watts en pic), cette alimentation se joint donc aux Silencer 370 et Silencer 420 déjà existantes. Certifiée 80 Plus avec son...]]></description>
<enclosure url="http://media.bestofmicro.com/OCZ-Silencer-500W,F-A-96454-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Atom et les ultraportables de demain]]></title>
<link>http://www.presence-pc.com/actualite/atom-ultraportable-28717/</link>
<pubDate>Fri, 04 Apr 2008 14:10:00 CEST</pubDate>
<category><![CDATA[Processeurs]]></category>
<description><![CDATA[Intel vient de lancer cette semaine l'Atom, un processeur d'un genre nouveau puisque destiné à intégrer une toute nouvelle catégorie de produits, les Mobile Internet Devices. Derrière ce lancement anodin, se cache en fait la volonté pour le constructeur d]]></description>
<enclosure url="http://media.bestofmicro.com/Atom-intel-silverthorne,E-Y-96442-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[La 4e licence 3G abandonnée ?]]></title>
<link>http://www.presence-pc.com/actualite/licence-3G-28710/</link>
<pubDate>Fri, 04 Apr 2008 12:00:00 CEST</pubDate>
<category><![CDATA[Accès à Internet]]></category>
<description><![CDATA[Est-ce que la quatrième licence 3G sera attribuée ? Peut-être pas.]]></description>
<enclosure url="http://media.bestofmicro.com/antenne-3G,R-K-37280-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Les filles font leur shopping High Tech (Tom's Guide)]]></title>
<link>http://www.presence-pc.com/actualite/high-tech-fille-28714/</link>
<pubDate>Fri, 04 Apr 2008 12:00:00 CEST</pubDate>
<category><![CDATA[Techno Désir]]></category>
<description><![CDATA[Nos collègues de chez Tom's Guide viennent de mettre en ligne un article regroupant une sélection de produits high tech pour les filles. Chics, roses, légers, designs, bref : féminins, ces différents produits sont destinés aux « geekettes »...]]></description>
<enclosure url="http://media.bestofmicro.com/high-tech-filles,A-Z-96299-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Une version moyenne tour de l'Armor+]]></title>
<link>http://www.presence-pc.com/actualite/Thermaltake-Armor-MX-boitier-28713/</link>
<pubDate>Fri, 04 Apr 2008 11:30:00 CEST</pubDate>
<category><![CDATA[Boitiers]]></category>
<description><![CDATA[Thermaltake vient d'annoncer l'Armor+ MX, une version au format moyen tour du boîtier Armor+ du constructeur. Disponible en deux coloris (noir ou blanc), l'Armor+ MX affiche des dimensions de 536 x 240 x 490mm pour un poids allant de 8 à 14,1 kg selon...]]></description>
<enclosure url="http://media.bestofmicro.com/Thermaltake-Armor-MX,E-P-96433-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Linus veut corriger un bug, sa femme n'a plus Youtube]]></title>
<link>http://www.presence-pc.com/actualite/linus-torvald-28712/</link>
<pubDate>Fri, 04 Apr 2008 11:00:00 CEST</pubDate>
<category><![CDATA[Systèmes d'exploitation]]></category>
<description><![CDATA[Linus Torvald, créateur de Linux, a-t-il peur de sa femme ? En tout cas, un des bugs remontés par cet illustre programmeur semble le faire croire.]]></description>
<enclosure url="http://media.bestofmicro.com/linux-karate,E-G-96424-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[LC Power : verte ou silencieuse votre alim ?]]></title>
<link>http://www.presence-pc.com/actualite/LCPower-LC6550GP2-LC6600-28711/</link>
<pubDate>Fri, 04 Apr 2008 10:50:00 CEST</pubDate>
<category><![CDATA[Alimentations]]></category>
<description><![CDATA[LC Power vient de lancer deux nouvelles alimentations, les LC6550GP2 V2.2 et LC6600 V2.2. La première fait partie de la gamme Green Power du constructeur et affiche une puissance maximale de 550 Watts alors que la seconde, d'une puissance maximale de...]]></description>
<enclosure url="http://media.bestofmicro.com/LCPower-LC6550GP2-Green-Power,E-A-96418-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Les bornes AirPort originales vivent encore]]></title>
<link>http://www.presence-pc.com/actualite/apple-airport-28709/</link>
<pubDate>Fri, 04 Apr 2008 10:10:00 CEST</pubDate>
<category><![CDATA[Routeurs]]></category>
<description><![CDATA[Les bornes Airport originales sont maintenant compatibles Leopard.]]></description>
<enclosure url="http://media.bestofmicro.com/apple-airport,E-5-96413-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Un concurrent de l'Eee PC 901 chez Everex]]></title>
<link>http://www.presence-pc.com/actualite/Everex-CloudBook-MAX-28703/</link>
<pubDate>Fri, 04 Apr 2008 10:00:00 CEST</pubDate>
<category><![CDATA[PC portables]]></category>
<description><![CDATA[Le constructeur Everex vient d'annoncer le CloudBook MAX, un ultraportable affichant des dimensions de 239 x 175 x 28mm pour un poids de 999 grammes. Concurrent de l'Eee PC 901 d'Asus, le modèle d'Everex embarque un processeur VIA C7-M ULV cadencé à... ]]></description>
<enclosure url="http://media.bestofmicro.com/Everex-CloudBook-MAX,E-4-96412-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[L'attaque du port USB]]></title>
<link>http://www.presence-pc.com/actualite/snowbot-USB-28707/</link>
<pubDate>Fri, 04 Apr 2008 09:20:00 CEST</pubDate>
<category><![CDATA[Clés USB]]></category>
<description><![CDATA[L'heure est grave et le moment crucial, voici l'actualité USB de ce vendredi fatal]]></description>
<enclosure url="http://media.bestofmicro.com/Snowbot,E-2-96410-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Saitek Cyborg : Go-go gadgeto-mouse !]]></title>
<link>http://www.presence-pc.com/actualite/Saitek-Cyborg-28706/</link>
<pubDate>Fri, 04 Apr 2008 09:10:00 CEST</pubDate>
<category><![CDATA[Souris]]></category>
<description><![CDATA[Saitek vient d'annoncer la Cyborg, une souris que le constructeur destine avant tout aux joueurs. En tant que telle, cette souris présente des caractéristiques assez surprenantes. D'une taille ajustable pour convenir à un maximum de personnes...]]></description>
<enclosure url="http://media.bestofmicro.com/Saitek-Cyborg,E-1-96409-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[DDR2 800 Kingston pour Xeon]]></title>
<link>http://www.presence-pc.com/actualite/Kingston-DDR2-KVR800D2S8F5-28705/</link>
<pubDate>Fri, 04 Apr 2008 08:20:01 CEST</pubDate>
<category><![CDATA[Mémoires]]></category>
<description><![CDATA[Kingston vient d'annoncer la sortie de barrettes de DDR2 FB-DIMM pour serveur (KVR800D2S8F5).]]></description>
<enclosure url="http://media.bestofmicro.com/PMA-2008,W-W-80240-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Le Pico-ITX, bientôt un standard ?]]></title>
<link>http://www.presence-pc.com/actualite/VIA-Pico-ITX-28704/</link>
<pubDate>Fri, 04 Apr 2008 08:20:00 CEST</pubDate>
<category><![CDATA[Cartes mères]]></category>
<description><![CDATA[C'est via un communiqué de presse que le constructeur VIA vient d'indiquer avoir soumis son format de carte mère Pico-ITX au SFF-SIG (Small Form Factor Special Interest Group), le consortium chargé d'établir les normes pour les ordinateurs miniaturisés...]]></description>
<enclosure url="http://media.bestofmicro.com/VIA-Epia-PX-pico-itx,V-K-7616-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Nouvel iPhone en vue ?]]></title>
<link>http://www.presence-pc.com/actualite/iPhone-28701/</link>
<pubDate>Fri, 04 Apr 2008 07:50:00 CEST</pubDate>
<category><![CDATA[Téléphones mobiles]]></category>
<description><![CDATA[Une pénurie d'iPhone laisse envisager l'apparition d'un nouveau modèle.]]></description>
<enclosure url="http://media.bestofmicro.com/playboy-iphone,A-H-96281-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Micron aussi sort moins de NAND]]></title>
<link>http://www.presence-pc.com/actualite/Micron-NAND-28700/</link>
<pubDate>Fri, 04 Apr 2008 07:20:00 CEST</pubDate>
<category><![CDATA[Mémoires]]></category>
<description><![CDATA[Micron aussi vient d'annoncer qu'il allait réduire la production de mémoire NAND, après avoir publié des pertes de 777 millions de dollars pour le dernier trimestre.
]]></description>
<enclosure url="http://media.bestofmicro.com/micron-wafer-die,S-F-13983-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Un antivol nommé Intel]]></title>
<link>http://www.presence-pc.com/actualite/Intel-antivol-28699/</link>
<pubDate>Fri, 04 Apr 2008 06:40:00 CEST</pubDate>
<category><![CDATA[PC portables]]></category>
<description><![CDATA[Intel s'est allié avec plusieurs sociétés pour la création de technologie dite d'antivol.]]></description>
<enclosure url="http://media.bestofmicro.com/Intel-technologies-antivol,E-0-96408-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Microsoft confirme que XP vivra]]></title>
<link>http://www.presence-pc.com/actualite/Microsoft-XP-28698/</link>
<pubDate>Fri, 04 Apr 2008 06:20:00 CEST</pubDate>
<category><![CDATA[Systèmes d'exploitation]]></category>
<description><![CDATA[Microsoft vient de confirmer qu'il étendait la durée de vie de Windows XP Home pour deux ans de plus pour les pc ultra low cost comme l'Eee PC.]]></description>
<enclosure url="http://media.bestofmicro.com/Logo-XP,I-4-652-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Intel : plus besoin de carte graphique ?]]></title>
<link>http://www.presence-pc.com/actualite/CPU-GPU-Intel-28697/</link>
<pubDate>Fri, 04 Apr 2008 06:00:00 CEST</pubDate>
<category><![CDATA[Cartes graphiques]]></category>
<description><![CDATA[Selon un représentant d'Intel présent à l'IDF, les consommateurs n'auront bientôt plus besoin de carte graphique.]]></description>
<enclosure url="http://media.bestofmicro.com/IDF-Day-1,Y-9-46593-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Un Mobile Internet Device signé Asus]]></title>
<link>http://www.presence-pc.com/actualite/Asus-R50-28696/</link>
<pubDate>Fri, 04 Apr 2008 05:50:00 CEST</pubDate>
<category><![CDATA[PC portables]]></category>
<description><![CDATA[Asus lancerait un Mobile Internet Device (MID), le R50, équipé d'un écran 5,6” avant la fin juin.]]></description>
<enclosure url="http://media.bestofmicro.com/Asus-R50,D-Z-96407-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
<item>
<title><![CDATA[Blu-ray : 60 % des américains sensibilisés]]></title>
<link>http://www.presence-pc.com/actualite/Blu-ray-28695/</link>
<pubDate>Fri, 04 Apr 2008 04:50:00 CEST</pubDate>
<category><![CDATA[PC Home Cinéma]]></category>
<description><![CDATA[60 % des Américains ont déjà entendu parler du Blu-ray, alors que 10 millions de foyers disposent d'un lecteur haute définition.]]></description>
<enclosure url="http://media.bestofmicro.com/diode-blu-ray,Z-0-81612-2.jpg" type="image/jpeg" length="0"></enclosure> </item>
</channel>
</rss>

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss1full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns="http://purl.org/rss/1.0/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
<channel rdf:about="http://blogmanucorp.free.fr/index.php">
<title>Manu et son blog</title>
<description />
<link>http://blogmanucorp.free.fr/index.php</link>
<dc:language>fr</dc:language>
<dc:creator />
<dc:rights />
<dc:date>2008-05-17T10:12:34+02:00</dc:date>
<admin:generatorAgent rdf:resource="http://www.dotclear.net/" />
<sy:updatePeriod>daily</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2008-05-17T10:12:34+02:00</sy:updateBase>
<items>
<rdf:Seq>
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2008/05/17/41-nanceiens" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/12/04/40-pense-a-d-hydrater" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/07/14/38-pliage-d-un-fond-laslolite" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/05/13/37-eurovision-ou-comment-je-suis-devenu-voyant" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/02/25/36-un-maximum-de-cafe" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2007/02/10/35-concert-swan" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/11/17/34-vinvin-est-de-retour-dans-bonjour-america-season-2" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/10/06/33-nouveau-site-pour-les-coureurs-et-autres-sportifs" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/10/05/32-me-voila-popartise-par-magali" />
<rdf:li rdf:resource="http://blogmanucorp.free.fr/index.php?2006/09/29/31-rap-de-la-campagne" />
</rdf:Seq>
</items>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ManuEtSonBlog" type="application/rss+xml" /></channel>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2008/05/17/41-nanceiens">
<title>Nancéiens</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/292165062/index.php</link>
<dc:date>2008-05-17T10:12:34+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Photographie</dc:subject>
<description>Je n'ai pas l'habitude de me montrer mais là c'est pour la bonne cause : Le lancement du site Nancéiens
Un photographe de talent a décidé de faire un site de portrait de Nancéiens, j'ai fait partie des premiers cobayes...Et même si je n'aime pas être devant l'objectif, l'expérience était...</description>
<content:encoded><![CDATA[ Je n'ai pas l'habitude de me montrer mais là c'est pour la bonne cause : Le lancement du site <a href="http://www.nanceiens.fr" hreflang="fr"><strong>Nancéiens</strong></a><br />
Un photographe de talent a décidé de faire un site de portrait de <a href="http://www.nanceiens.fr" hreflang="fr"><strong>Nancéiens</strong></a>, j'ai fait partie des premiers cobayes...Et même si je n'aime pas être devant l'objectif, l'expérience était enrichissante et le résultat est magnifique...je vais peut être faire Top Model dans une prochaine vie :)<br /><br />
<img src="/images/manu_6.jpg" alt="" /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/292165062" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2008/05/17/41-nanceiens</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/12/04/40-pense-a-d-hydrater">
<title>Pense a d'hydrater</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/194814695/index.php</link>
<dc:date>2007-12-04T06:44:04+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>General</dc:subject>
<description>Bluetooth (La Chanson du Dimanche / saison1-2)
Exceptionnel sans commentaires.......</description>
<content:encoded><![CDATA[ <a href="http://myspacetv.com/index.cfm?fuseaction=vids.individual&videoid=6501273">Bluetooth (La Chanson du Dimanche / saison1-2)</a>
<br>
<embed src="http://lads.myspace.com/videos/vplayer.swf" flashvars="m=6501273&v=2&type=video" type="application/x-shockwave-flash" width="430" height="346"></embed>
<p>
Exceptionnel sans commentaires....<img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/194814695" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/12/04/40-pense-a-d-hydrater</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/07/14/38-pliage-d-un-fond-laslolite">
<title>Pliage d'un fond Lastolite</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/133688677/index.php</link>
<dc:date>2007-07-14T13:45:43+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Photographie</dc:subject>
<description>Vous avez peut etre été confronté au problème du pliage d'un fond de photographe Lastolite
Voila la solution en vidéo !
Pliage Laslolite FondUploaded by faivre_e...</description>
<content:encoded><![CDATA[ Vous avez peut etre été confronté au problème du pliage d'un fond de photographe Lastolite<br />
Voila la solution en vidéo !<br />
<br />
<div><object width="425" height="356"><param name="movie" value="http://www.dailymotion.com/swf/2pRjDbKQ7M55chRM4"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/2pRjDbKQ7M55chRM4" type="application/x-shockwave-flash" width="425" height="356" allowfullscreen="true"></embed></object><br /><b><a href="http://www.dailymotion.com/video/x2j9ps_pliage-laslolite-fond">Pliage Laslolite Fond</a></b><br /><i>Uploaded by <a href="http://www.dailymotion.com/faivre_e">faivre_e</a></i></div><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/133688677" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/07/14/38-pliage-d-un-fond-laslolite</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/05/13/37-eurovision-ou-comment-je-suis-devenu-voyant">
<title>Eurovision, ou comment je suis devenu voyant !</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352514/index.php</link>
<dc:date>2007-05-13T10:27:04+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humeur</dc:subject>
<description>En ce 12 mai 2007, je ne pensais pas que ma vie allait prendre une nouveau tournant après un zapping effréné, je me retrouve machinalement sur France 3 a regarder la fin de l'émission Eurovision et je me sens l'humeur de jouer au devinette et les bons résultats s'enchaîne. La norvège donne 12 points...</description>
<content:encoded><![CDATA[ <p>En ce 12 mai 2007, je ne pensais pas que ma vie allait prendre une nouveau tournant après un zapping effréné, je me retrouve machinalement sur France 3 a regarder la fin de l'émission Eurovision et je me sens l'humeur de jouer au devinette et les bons résultats s'enchaîne. La norvège donne 12 points a la suède alors que la suède est presque bon dernier, La macédoine donne 12 points a la serbie, le montenegro donne 12 points à la serbie...et j'en passe..la bélarussie donne 12 points à l'ukraine...mon don de voyance perce.....Et bingo victoire de la Serbie, nouvelle nation, nouvelle entrant dans la grande course à l'eurovision...
</p>
<p>
Je me vois déjà créer mon propre cabinet de voyance....projection / calcul du budget...et je redescends sur Terre....c'est vrai les votes de l'eurovision ne sont que le reflet de la géographie avec une petite dose d'histoire des nations...
</p>
<p>
Je propose d'arrêter de participer a ce concours, ringard et sans aucun sens... Les fatals picards ne méritaient pas ça mais au moins ça les a fait connaître un peu plus en France
</p>
<p>
Une idée de chanteur pour l'an prochain : Michael Youn avec les bratislaboys (ça nous permettra de récupérer les votes des pays de l'ex-URSS)
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352514" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/05/13/37-eurovision-ou-comment-je-suis-devenu-voyant</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/02/25/36-un-maximum-de-cafe">
<title>Un maximum de café</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352515/index.php</link>
<dc:date>2007-02-25T20:46:26+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humeur</dc:subject>
<description>Aujourd'hui je vous présente un site de vente un peu original....au programme, Café mais aussi Thé, Infusions, smoothies...et du bon matériel (Blender, machine a café originales...)
Et grande surprise pour les fans d'Oreo (assez difficile à trouver en France), Vous pouvez acheter vos Oreos en...</description>
<content:encoded><![CDATA[ <p>Aujourd'hui je vous présente un site de vente un peu original....au programme, Café mais aussi Thé, Infusions, smoothies...et du bon matériel (Blender, machine a café originales...)</p>
<p>
Et grande surprise pour les fans d'Oreo (assez difficile à trouver en France), Vous pouvez acheter vos Oreos en ligne !!!!!!!!!!
En plus, de tout ca des recettes faciles à réaliser et trés appétissantes ! Vous pouvez vous laisser aller à la GOURMANDISE.
</p>
<p>
<a href="http://www.maxicoffee.com/">Maxi Coffee</a><br />
<a href="http://www.maxicoffee.com/oreo-classic-boite-packs-p-191-49_52.html">Oreo</a><br />
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352515" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/02/25/36-un-maximum-de-cafe</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2007/02/10/35-concert-swan">
<title>Concert Swan</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352516/index.php</link>
<dc:date>2007-02-10T09:59:34+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Musique</dc:subject>
<description>Je reviens de mon premier concert de Swan, un groupe de musique parisien plein d'énérgie. J'étais pour l'occasion le photographe officiel (accés aux loges, moment privilégié avec les musiciens, partage de leurs impressions lors des entractes,...)
Mes morceaux préférés :
On Good Tracks
Wig in a...</description>
<content:encoded><![CDATA[ <p>Je reviens de mon premier concert de Swan, un groupe de musique parisien plein d'énérgie. J'étais pour l'occasion le photographe officiel (accés aux loges, moment privilégié avec les musiciens, partage de leurs impressions lors des entractes,...)</p>
<p>Mes morceaux préférés :
<ul>
<li>On Good Tracks</li>
<li>Wig in a Box</li>
<li>Stop the Fear</li>
</ul>
</p>
<img src="http://blogmanucorp.free.fr/images/swan_joel.jpg" alt="Swan Joel" />
<img src="http://blogmanucorp.free.fr/images/swan_frank.jpg" alt="Swan Franck" />
<img src="http://blogmanucorp.free.fr/images/swan_lionel.jpg" alt="Swan Lionel" />
<img src="http://blogmanucorp.free.fr/images/swan_stephane.jpg" alt="Swan Stephane" />
<img src="http://blogmanucorp.free.fr/images/swan_vincent.jpg" alt="Swan Vincent" />
<p>
N'hésitez pas à acheter l'album, il est vraiment excellent !
</p>
<p>
<a href="http://swangroupe.free.fr/">Site de Swan</a><br />
<a href="http://www.myspace.com/swanlegroupe">Profil MySpace</a><br />
<a href="http://picasaweb.google.com/manucorp/ConcertSwan">Quelques photos du concert</a><br /><br />
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352516" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2007/02/10/35-concert-swan</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/11/17/34-vinvin-est-de-retour-dans-bonjour-america-season-2">
<title>Vinvin est de retour dans Bonjour America Season 2</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352517/index.php</link>
<dc:date>2006-11-17T07:57:05+01:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Humour</dc:subject>
<description>Aprés le retour de toutes les series sur les ecrans (Lost saison 3, Desperate housewives saison 3, Prison Break saison 2,....). Tout le monde attendait avec impatience le retour de Vinvin dans la mythique série "Bonjour America". Il manque juste le mythique "Previously on ..." pour faire encore plus...</description>
<content:encoded><![CDATA[ <p>Aprés le retour de toutes les series sur les ecrans (Lost saison 3, Desperate housewives saison 3, Prison Break saison 2,....). Tout le monde attendait avec impatience le retour de Vinvin dans la mythique série "Bonjour America". Il manque juste le mythique "Previously on ..." pour faire encore plus Américain</p>
<p>Je vous laisse décrouvrir l'introduction de la saison 2</p>
<p>
<a href="http://www.bonjour-america.com/archives/000.html">Introduction saison 2</a><br />
<a href="http://season1.bonjour-america.com/">Revoir la saison 1</a><br /><br />
</p><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352517" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/11/17/34-vinvin-est-de-retour-dans-bonjour-america-season-2</feedburner:origLink></item>
<item rdf:about="http://blogmanucorp.free.fr/index.php?2006/10/06/33-nouveau-site-pour-les-coureurs-et-autres-sportifs">
<title>Nouveau site pour les coureurs et autres sportifs</title>
<link>http://feeds.feedburner.com/~r/ManuEtSonBlog/~3/130352518/index.php</link>
<dc:date>2006-10-06T07:12:06+02:00</dc:date>
<dc:language>fr</dc:language>
<dc:creator>Manu</dc:creator>
<dc:subject>Sport</dc:subject>
<description>Ca fait un petit moment que je travaille sur mon nouveau site. L'idée n'est pas toute neuve puisque ca fait plus de 2 ans que j'en parle. j'avais fait des essais avec d'autres technologies mais la sortie de la google Map API a changé complétement la donne (il faudrait aussi que cela marche avec...</description>
<content:encoded><![CDATA[ <p>
Ca fait un petit moment que je travaille sur mon nouveau site. L'idée n'est pas toute neuve puisque ca fait plus de 2 ans que j'en parle. j'avais fait des essais avec d'autres technologies mais la sortie de la google Map API a changé complétement la donne (il faudrait aussi que cela marche avec Yahoo Maps pour avoir un backup....il faut que j'y pense). C'est un site tout a fait web 2.0 meme si ce n'etait pas le but au départ. Au programme :
<ul>
<li>Interface Ajax (librairie prototype) et quelques trucs maisons </li>
<li>Google Map API</li>
<li>Le tout sur un serveur LAMP</li>
</ul>
L'idée est de pouvoir partager ses parcours de course &agrave; pied dans toute la France. Bien sur, le site n'est pas fini, on pourra bientot noter / commenter les parcours, gérer des courses, peut etre importer des fichiers Garmin ou autres,...et toutes vos idées...il y a plein de choses à faire et vous pouvez y participer !
<p>
<a href="http://www.wanarun.net">Wanarun : Tu veux courir ou ?</a><br />
<a href="http://www.wanarun.net/blog/index.php?2006/10/04/2-lancement-de-la-beta">Billet sur le lancement de la beta</a><br /><br /><img src="http://feeds.feedburner.com/~r/ManuEtSonBlog/~4/130352518" height="1" width="1"/>]]></content:encoded>
<feedburner:origLink>http://blogmanucorp.free.fr/index.php?2006/10/06/33-nouveau-site-pour-les-coureurs-et-autres-sportifs</feedburner:origLink></item>
<item rdf:about="http:

View File

@ -0,0 +1,167 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Akihabaranews.com</title>
<link>http://www.akihabaranews.com</link>
<description>Akihabara News : Your Leading News provider on Gadgets and Hi-Tech stuff from Akihabara in Tokyo Japan and in other Asian Countries</description>
<language>en</language>
<pubDate>Thu, 19 Jun 2008 08:53:55 GMT</pubDate>
<lastBuildDate>Thu, 19 Jun 2008 08:53:55 GMT</lastBuildDate>
<docs>http://www.rssboard.org/rss-specification</docs>
<generator>Akihabaranews RSS Feed</generator>
<managingEditor>info@akihabaranews.com</managingEditor>
<webMaster>webmaster@akihabaranews.com</webMaster>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Akihabaranews_en" type="application/rss+xml" /><feedburner:emailServiceId>234204</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>HP-AV Series &amp; HP-X Series: new headphones for TV Use from Victor-JVC</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315224579/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16258-HP-AV+Series+%26+HP-X+Series%3A+new+headphones+for+TV+Use+from+Victor-JVC.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16258/b.jpg" width="128" height="83" border="0" alt="HP-AV+Series+%26+HP-X+Series%3A+new+headphones+for+TV+Use+from+Victor-JVC" title="HP-AV+Series+%26+HP-X+Series%3A+new+headphones+for+TV+Use+from+Victor-JVC" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Victor-JVC unveils 4 new Headphones for a TV use, the HP-AV series and HP-X Series.&lt;br /&gt;
The HP-AV350 and HP-X73 provides a frequency response of 12Hz-24,000Hz, pressure sensitivity of 104dB/1mW, while HP-AV250 and HPX53 provides 14Hz-23,000Hz frequency response and 97dB pressure sensitivity.&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16258-HP-AV+Series+%26+HP-X+Series%3A+new+headphones+for+TV+Use+from+Victor-JVC.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=l8gLrw"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=l8gLrw" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=wK00dI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=wK00dI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=vqsAmI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=vqsAmI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=o2Mmbi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=o2Mmbi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=aRlqni"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=aRlqni" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XECDGi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XECDGi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=u715cI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=u715cI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=bIXgPI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=bIXgPI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315224579" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 07:13:52 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16258</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16258</feedburner:origLink></item>
<item>
<title>Green House intros new 2GB DAP, the KanaCL</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315206781/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16257-Green+House+intros+new+2GB+DAP%2C+the+KanaCL.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16257/b.jpg" width="128" height="83" border="0" alt="Green+House+intros+new+2GB+DAP%2C+the+KanaCL" title="Green+House+intros+new+2GB+DAP%2C+the+KanaCL" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Green house released its latest and cute Digital Audio Portable, the KanaCL. Our stylish MP3 player features 2GB of internal Memory, an USB 2.0 port, (480Mbps transfer rate), 6 equalizer presets. Thanks to it, youll be able to listen to your music in MP3/WMA format.&lt;br /&gt;
Finally, it provides an output power of 5mWx2, and a pressure sensitivity of 85dB. Available in Black, Red, Silver, and Pink for around 30€&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16257-Green+House+intros+new+2GB+DAP%2C+the+KanaCL.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=aLEbh6"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=aLEbh6" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uQBdlI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uQBdlI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ybE4eI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ybE4eI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=fGN7Ti"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=fGN7Ti" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uZgNAi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uZgNAi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=MkOG7i"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=MkOG7i" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=3qULxI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=3qULxI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=i3UQwI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=i3UQwI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315206781" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 06:39:39 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16257</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16257</feedburner:origLink></item>
<item>
<title>DMF035W: New Digital frame from Dream Maker</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315199251/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16256-DMF035W%3A+New+Digital+frame+from+Dream+Maker.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16256/b.jpg" width="128" height="83" border="0" alt="DMF035W%3A+New+Digital+frame+from+Dream+Maker" title="DMF035W%3A+New+Digital+frame+from+Dream+Maker" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Dream Maker, a Japanese company, released a new cute digital frame, the DMF035W. Our new small device features a 3.5-Inch LCD screen in 320×240, 4MB of internal memory, USB port and is compatible with SD/SDHC card/MMC cards.&lt;br /&gt;
Lastly, it should cost around 60€&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16256-DMF035W%3A+New+Digital+frame+from+Dream+Maker.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=tJCzAG"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=tJCzAG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=pJbdLI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=pJbdLI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=VyNTbI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=VyNTbI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=PLpVxi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=PLpVxi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=3vNXRi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=3vNXRi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=DEfXxi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=DEfXxi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=QFGHrI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=QFGHrI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=7ZIhKI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=7ZIhKI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315199251" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 06:15:42 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16256</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16256</feedburner:origLink></item>
<item>
<title>HDR-CX12, a new AVCHD HandyCam from Sony Japan</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315152847/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16253-HDR-CX12%2C+a+new+AVCHD+HandyCam+from+Sony+Japan.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16253/b.jpg" width="128" height="83" border="0" alt="HDR-CX12%2C+a+new+AVCHD+HandyCam+from+Sony+Japan" title="HDR-CX12%2C+a+new+AVCHD+HandyCam+from+Sony+Japan" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We just received by fax the press release for a new AVCHD powered camera from Sony the HDR-CX12, which will be sold July 20 here in Japan. So whats so new regarding this new little wonder? Well Sony featured a new Exmor CMOS sensor (the same one as on the α700 DSLR), as well as the BIONZ technology in this compact camera (69x67x129mm for 420g with battery). Here you new camera does not includes any HDD but will be sold with a 8GB Memory Stick, support Full HD recording 1920x1080i ...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16253-HDR-CX12%2C+a+new+AVCHD+HandyCam+from+Sony+Japan.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=k3FpuB"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=k3FpuB" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=U7APSI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=U7APSI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=4jPcWI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=4jPcWI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=9sHWti"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=9sHWti" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=0Bfcwi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=0Bfcwi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=bnO9ri"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=bnO9ri" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ardJbI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ardJbI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=WToCfI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=WToCfI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315152847" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 04:42:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16253</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16253</feedburner:origLink></item>
<item>
<title>NEC USA launched a 26'' WUXGA LCD Monitor</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315126981/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16255-NEC+USA+launched+a+26%27%27+WUXGA+LCD+Monitor.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16255/b.jpg" width="128" height="83" border="0" alt="NEC+USA+launched+a+26%27%27+WUXGA+LCD+Monitor" title="NEC+USA+launched+a+26%27%27+WUXGA+LCD+Monitor" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
NEC USA launched yesterday its new MultiSync Enterprise Advanced Series with 26-Inch LCD Monitors, the EA261WM.&lt;br /&gt;
It features a 26 LCD Panel in WUXGA Resolution (1920 x 1200), 4-way adjustable stand (height, tilt, swivel, pivot), 4 USB Port HUB, Ambix, NaViSet, NoTouch Auto Adjust technologies and HDMI compatible (Via Adapter), 720p and 1080p from DVI-D.&lt;br /&gt;
The EA261WM offers 400cd/m² brightness, 1000:1 contrast ratio, 5ms response time. Our new LCD monitor is mainly dedicated for corpo...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16255-NEC+USA+launched+a+26%27%27+WUXGA+LCD+Monitor.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=7plFzw"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=7plFzw" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=4l5CoI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=4l5CoI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=apSWtI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=apSWtI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=X0vO8i"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=X0vO8i" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=AZmgui"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=AZmgui" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ZKuxki"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ZKuxki" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=9PORKI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=9PORKI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=U9fbMI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=U9fbMI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315126981" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 03:56:47 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16255</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16255</feedburner:origLink></item>
<item>
<title>91% of Japanese people wont buy an iPhone, or How strange Japanese Media can be.</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315119622/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16254-91%25+of+Japanese+people+won%E2%80%99t+buy+an+iPhone%2C+or+How+strange+Japanese+Media+can+be..html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16254/b.jpg" width="128" height="83" border="0" alt="91%25+of+Japanese+people+won%E2%80%99t+buy+an+iPhone%2C+or+How+strange+Japanese+Media+can+be." title="91%25+of+Japanese+people+won%E2%80%99t+buy+an+iPhone%2C+or+How+strange+Japanese+Media+can+be." align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
I am living in Japan since now over 6 years and while I am thrilled living in this country, rather than living in my own one (France). Also I have to admit that I never see such low quality and ethics when it comes to Press and Media in General... you will not imagine how crazy things here are and how stupid too.I have the chance to not only work in the IT industry journalism (If I can call that Journalism) as well as in the Car journalism industry for quite some times now (Thanks to NihonCar.c...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16254-91%25+of+Japanese+people+won%E2%80%99t+buy+an+iPhone%2C+or+How+strange+Japanese+Media+can+be..html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=9HPQK5"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=9HPQK5" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=tHbcHI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=tHbcHI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BpWvZI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BpWvZI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=BssnNi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=BssnNi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Quo21i"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Quo21i" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6R4Goi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6R4Goi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=4PuMqI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=4PuMqI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=npcTcI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=npcTcI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315119622" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 03:45:00 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16254</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16254</feedburner:origLink></item>
<item>
<title>Sanyo USA introduced new Waterproof-Weather resistant LCD Monitor</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315087095/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16252-Sanyo+USA+introduced+new+Waterproof-Weather+resistant+LCD+Monitor.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16252/b.jpg" width="128" height="83" border="0" alt="Sanyo+USA+introduced+new+Waterproof-Weather+resistant+LCD+Monitor" title="Sanyo+USA+introduced+new+Waterproof-Weather+resistant+LCD+Monitor" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Sanyo introduced, yesterday in USA, its latest Waterproof 52-Inch LCD screen, the CE52SR1 which has been designed for outdoor uses. &lt;br /&gt;
This second generation of LCD waterproof monitor offers a resolution of 1920x1080, a contrast ratio of 1500:1, a brightness of 1500cd/m² (Ideal for viewing under sunlight), an Ingress Protection(a standard established by the European Committee) of IP-66: it means our new LCD screen is ultra resistant to typical weather conditions, 176 degrees viewing angle an...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16252-Sanyo+USA+introduced+new+Waterproof-Weather+resistant+LCD+Monitor.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=NjRNZt"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=NjRNZt" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=Wh9BII"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=Wh9BII" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ChumJI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ChumJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=0fZmoi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=0fZmoi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=dSt5ti"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=dSt5ti" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ZPQvvi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ZPQvvi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=1KDPJI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=1KDPJI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=8qUyEI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=8qUyEI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315087095" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 02:38:01 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16252</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16252</feedburner:origLink></item>
<item>
<title>Sony USA launched, unveiled lot of new Projector!</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315070747/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16251-Sony+USA+launched%2C+unveiled+lot+of+new+Projector%21.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16251/b.jpg" width="128" height="83" border="0" alt="Sony+USA+launched%2C+unveiled+lot+of+new+Projector%21" title="Sony+USA+launched%2C+unveiled+lot+of+new+Projector%21" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
One month ago, Sony unveiled their latest projector featuring the Sony BrightEra Technology, &lt;a href="http://www.akihabaranews.com/news-16045-X.html" class="lngrn2" target="_blank"&gt;the VPL-EW5, VPL-EX50, VPL-EX5 and VPL-ES5&lt;/a&gt;. They are now available.&lt;br /&gt;
Moreover, the Japanese manufacturer launched the VPL-FW300 offering a resolution of 2,048x1,080 and the VPL-FH300 coming with WXGA+ resolution (1,366x800).&lt;br /&gt;
And lastly, the VPL-FX41coming with a brightness of 5,000 lumens has been intro...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16251-Sony+USA+launched%2C+unveiled+lot+of+new+Projector%21.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=5Ggzyu"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=5Ggzyu" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=ECmuxI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=ECmuxI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=oTeE8I"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=oTeE8I" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uNThyi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uNThyi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=TXqgii"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=TXqgii" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=XTYX3i"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=XTYX3i" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=PU1cNI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=PU1cNI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=YIXCzI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=YIXCzI" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315070747" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 02:05:14 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16251</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16251</feedburner:origLink></item>
<item>
<title>Sony USA introduced two new 1920x1080 LCD Displays</title>
<link>http://feeds.feedburner.com/~r/Akihabaranews_en/~3/315035287/news_details.php</link>
<description>&lt;div&gt;&lt;p style="text-align:justify"&gt;
&lt;a href="http://www.akihabaranews.com/news-16250-Sony+USA+introduced+two+new+1920x1080+LCD+Displays.html"&gt;&lt;img src="http://www.akihabaranews.com/news_pics/16250/b.jpg" width="128" height="83" border="0" alt="Sony+USA+introduced+two+new+1920x1080+LCD+Displays" title="Sony+USA+introduced+two+new+1920x1080+LCD+Displays" align="left" hspace="5" vspace="5" /&gt;&lt;/a&gt;&lt;br /&gt;
Sony introduced two new LCD Full HD Displays in 1920x1080 resolution for professional uses. Our new models are available in 42-Inch (FWD-S42H1) and 47-Inch (FWD-S47H1). They are dedicated to be used in stadiums, arena, event halls, movie theater…&lt;br /&gt;
The sonys Display are compatible with their - &lt;a href="http://www.akihabaranews.com/news-15108-X.html" class="lngrn2" target="_blank"&gt;digital signage player&lt;/a&gt;, the VSP-NS7 and feature DVI HDCP IN, RGB/Component in/out, S-video in, and composite...&lt;br /&gt;&lt;br /&gt;
&lt;a href="http://www.akihabaranews.com/en/news-16250-Sony+USA+introduced+two+new+1920x1080+LCD+Displays.html#comments"&gt;Reader Comments&lt;/a&gt;&lt;/p&gt;&lt;br clear="all" /&gt;&lt;/div&gt;
&lt;script src="http://feeds.feedburner.com/~s/Akihabaranews_en?i=http://www.akihabaranews.com" type="text/javascript" charset="utf-8"&gt;&lt;/script&gt;
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/Akihabaranews_en?a=cmiVdW"&gt;&lt;img src="http://feeds.feedburner.com/~a/Akihabaranews_en?i=cmiVdW" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=6yoqtI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=6yoqtI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=IOo6MI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=IOo6MI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=PiHB4i"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=PiHB4i" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=uNzLqi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=uNzLqi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=2ovQCi"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=2ovQCi" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=NB3EiI"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=NB3EiI" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/Akihabaranews_en?a=qwegII"&gt;&lt;img src="http://feeds.feedburner.com/~f/Akihabaranews_en?i=qwegII" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Akihabaranews_en/~4/315035287" height="1" width="1"/&gt;</description>
<pubDate>Thu, 19 Jun 2008 01:01:58 GMT</pubDate>
<guid isPermaLink="false">http://www.akihabaranews.com/en/news_details.php?id=16250</guid>
<feedburner:origLink>http://www.akihabaranews.com/en/news_details.php?id=16250</feedburner:origLink></item>
<item>
<title>LP-XP200L: The world's first 4-LCD Optical Engine Projector</title>
<link>http://feeds.feedburner.com/~r/Akiha

View File

View File

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2titles.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemtitles.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>the::unwired</title>
<link>http://www.theunwired.net/</link>
<description>where mobility meets wireless</description>
<language>en</language>
<generator>BLOG:CMS 4.2.0</generator>
<copyright>webmaster@theunwired.net</copyright>
<category>blog</category>
<docs>http://backend.userland.com/rss</docs>
<image>
<url>http://www.theunwired.net/skins/base/logo_rss.gif</url>
<title>the::unwired</title>
<link>http://www.theunwired.net/</link>
</image>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.theunwired.net/xml/" type="application/rss+xml" /><feedburner:emailServiceId>65199</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.rojo.com/add-subscription?resource=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://blog.rojo.com/RojoWideRed.gif">Subscribe with Rojo</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://www.theunwired.net/xml/" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><feedburner:feedFlare href="http://www.plusmo.com/add?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://plusmo.com/res/graphics/fbplusmo.gif">Subscribe with Plusmo</feedburner:feedFlare><feedburner:feedFlare href="http://my.feedlounge.com/external/subscribe?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://static.feedlounge.com/buttons/subscribe_0.gif">Subscribe with FeedLounge</feedburner:feedFlare><feedburner:feedFlare href="http://www.thefreedictionary.com/_/hp/AddRSS.aspx?http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://img.tfd.com/hp/addToTheFreeDictionary.gif">Subscribe with The Free Dictionary</feedburner:feedFlare><feedburner:feedFlare href="http://www.bitty.com/manual/?contenttype=rssfeed&amp;contentvalue=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.bitty.com/img/bittychicklet_91x17.gif">Subscribe with Bitty Browser</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsalloy.com/?rss=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.newsalloy.com/subrss3.gif">Subscribe with NewsAlloy</feedburner:feedFlare><feedburner:feedFlare href="http://www.live.com/?add=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw">Subscribe with Live.com</feedburner:feedFlare><feedburner:feedFlare href="http://mix.excite.eu/add?feedurl=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://image.excite.co.uk/mix/addtomix.gif">Subscribe with Excite MIX</feedburner:feedFlare><feedburner:feedFlare href="http://www.yourminis.com/subscribe.aspx?u=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.yourminis.com/images/addtoyourminisbadge.gif">Subscribe with Yourminis.com</feedburner:feedFlare><feedburner:feedFlare href="http://download.attensa.com/app/get_attensa.html?feedurl=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.attensa.com/blogs/attensa/WindowsLiveWriter/BadgeredintoBadges_10C02/attensa_feed_button5.gif">Subscribe with Attensa for Outlook</feedburner:feedFlare><feedburner:feedFlare href="http://www.webwag.com/wwgthis.php?url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.webwag.com/images/wwgthis.gif">Subscribe with Webwag</feedburner:feedFlare><feedburner:feedFlare href="http://hub.netomat.net/account/account.autoSubscribe.jspa?urls=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.netomat.net/blogger/images/icon_netomat_feedbutton.gif">Subscribe with netomat Hub</feedburner:feedFlare><feedburner:feedFlare href="http://www.flurry.com/pushRssFeed.do?r=fb&amp;url=http%3A%2F%2Fwww.theunwired.net%2Fxml%2F" src="http://www.flurry.com/images/flurry_rss_logo2.gif">Subscribe with Flurry</feedburner:feedFlare><item>
<title><![CDATA[CONFIRMED: Vodafone is introducing its first two DVB-T mobile phones in May]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/281588025/</link>
<description>Following
the earlier news,
Vodafone
Germany now officially confirmed that it will be adding two new DVB-T mobile
phone models to its range of mobile phones at the beginning of May 2008.
The LG HB620T and
the GIGA-BYTE GSmart t600
both have an integrated
DVB-T receiver for viewing all free TV channels in excellent quality and in
most areas of Germany. Football fans will be able to watch the EURO 2008 on
their mobile phones at no extra cost.
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=confirmed-vodafone-is-introducing-its-first-two-dvb-t-mobile-phones-in-may"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=V5ZOq3"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=V5ZOq3" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=2CiZah"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=2CiZah" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=E8NqIh"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=E8NqIh" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=AzFgfH"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=AzFgfH" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/281588025" height="1" width="1"/&gt;</description>
<category>Vodafone_Germany</category><category>Giga-Byte</category><category>GSmart</category><category>t600</category><category>LG</category><category>HB620T</category><category>DVB-T</category><category>SuperFlat</category><category>Windows_Mobile_6_Professional</category>
<category>02 - Pocket PC News</category>
<pubDate>Thu, 01 May 2008 19:49:20 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=confirmed-vodafone-is-introducing-its-first-two-dvb-t-mobile-phones-in-may</feedburner:origLink></item><item>
<title><![CDATA[PLAYER: Electric Pocket releases FlipSide MP3-player for Windows Mobile]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/280843174/</link>
<description>FlipSide,
the MP3 player from Electric Pocket that has had BlackBerry users buzzing, is
now also available to users of Windows Mobile Standard and Professional
smartphones such as the
Palm Treo 700xw,
HTC Mogul,
Samsung Ace and
Samsung Blackjack.
The feature that has made FlipSide such an instant hit among BlackBerry users is
its iPhone-like interface that allows users to visually &amp;amp;#34;swoosh&amp;amp;#34; through their
music quickly and easily.
Navigating through music and selecting tunes is a simple process with FlipSide:
scroll through the Album Covers, or flick through them using your finger on the
screen, then click on the navigation button to open up a vertical list of the
tracks.
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=player-electric-pocket-releases-flipside-mp3-player-for-windows-mobile"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=85Ll9N"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=85Ll9N" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=MGAMig"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=MGAMig" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=5MqP6g"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=5MqP6g" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=TfkwTG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=TfkwTG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/280843174" height="1" width="1"/&gt;</description>
<category>Electric_Pocket</category><category>FlipSide</category><category>MP3</category><category>WMA</category><category>Windows_Mobile</category>
<category>01 - General News</category>
<pubDate>Wed, 30 Apr 2008 17:07:46 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=player-electric-pocket-releases-flipside-mp3-player-for-windows-mobile</feedburner:origLink></item><item>
<title><![CDATA[TOUCH: GSmart unveiled a newly developed thumb-friendly UI for Windows Mobile]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/280592111/</link>
<description>Giga-Byte
has announced a newly developed UI software for its GSmart Windows Mobile
smartphones which is called &amp;amp;#34;Smart Touch&amp;amp;#34;. This new interface that is intuitive,
informative and flexible, offers users a more user friendly interface.
GSmart has established a sound position in the market when its famous world's
first (and still the only one) DVB-T Windows Mobile smartphone (the
GSmart t600)
were introduced to the public, and after since, GSmart has been harvesting the
market productively and actively, it has introduced several new models, and each
with unique features.
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=touch-gsmart-unveiled-a-newly-developed-thumb-friendly-ui-for-windows-mobile"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=LBubLe"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=LBubLe" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=MtzEQg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=MtzEQg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=eos98g"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=eos98g" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=Sk2fWG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=Sk2fWG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/280592111" height="1" width="1"/&gt;</description>
<category>Giga-Byte</category><category>GSmart</category><category>Smart_Touch</category><category>UI</category><category>GUI</category><category>Windows_Mobile</category>
<category>02 - Pocket PC News</category>
<pubDate>Wed, 30 Apr 2008 08:34:17 +0200</pubDate>
<author>info@theunwired.net (Arne Hess)</author>
<feedburner:origLink>http://www.theunwired.net/?item=touch-gsmart-unveiled-a-newly-developed-thumb-friendly-ui-for-windows-mobile</feedburner:origLink></item><item>
<title><![CDATA[UPDATE: Sling Media updates SlingPlayer Mobile for Windows Mobile and Symbian S60]]></title>
<link>http://feeds.feedburner.com/~r/theunwired/~3/280176972/</link>
<description>Sling
Media today announced the availability of its
previously unveiled
SlingPlayer
Mobile uppdate for Windows Mobile Pocket PCs (aka Professional and Classic),
Windows Mobile Smartphone (aka Standard) and Symbian S60 smartphones.
The SlingPlayer Mobile clients are required to watch and control home television
programming from anywhere in the world via a
Slingbox. These
new versions add support for additional handsets (for example the
Samsung SGH-i760,
the Palm Treo 500/500v
and the Nokia N95 8GB), improved video streaming quality on select handsets
(like the Sprint HTC
Mogul), add support for additional set-top boxes, provide additional channel
favorite logos and some few under the hood tweaks.
&lt;p&gt;&lt;p&gt; [&lt;b&gt;&lt;a href="http://www.theunwired.net/?item=update-sling-media-updates-slingplayer-mobile-for-windows-mobile-and-symbian-s60"&gt;Permalink&lt;/a&gt;&lt;/b&gt;]
&lt;p&gt;(c) 2008 by &lt;a href="http://www.theunwired.net"&gt;the::unwired&lt;/a&gt; - All Rights Reserved
&lt;p&gt;&lt;a href="http://feeds.feedburner.com/~a/theunwired?a=hBKbEV"&gt;&lt;img src="http://feeds.feedburner.com/~a/theunwired?i=hBKbEV" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~f/theunwired?a=sKSaTg"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=sKSaTg" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=bVPN5g"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=bVPN5g" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~f/theunwired?a=3iNxmG"&gt;&lt;img src="http://feeds.feedburner.com/~f/theunwired?i=3iNxmG" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/theunwired/~4/280176972" height="1" width="1"/&gt;</description>
<category>Sling_Media</category><category>SlingPlayer_Mobile</category><category>Slingbox</category><category>Update</category><category>Windows_Mobile</category><category>Symbian</category><category>UIQ</category><category>Palm</category>

View File

@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Actus ciné : Interviews</title>
<link>http://www.allocine.fr/article/rubarticle_gen_crubrique=23005.html</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Thu, 18 Dec 2008 14:55:00 GMT</lastBuildDate>
<pubDate>Thu, 18 Dec 2008 14:55:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine/interviews" type="application/rss+xml" /><item>
<category />
<title>Jeux de plage avec Agnès Varda</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/486566414/fichearticle_gen_carticle=18440395.html</link>
<description>&lt;p&gt;A partir de jeux de mots illustrés concoctés par AlloCiné, Agnès Varda déroule le fil(m) de sa vie, comme elle le fait dans son magnifique autoportrait "Les Plages d'Agnès", en salles ce mercredi. Interview en deux volets.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18440395.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 17 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/486566414" height="1" width="1"/&gt;</description>
<pubDate>Wed, 17 Dec 2008 15:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18440395</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/44/14/19027473.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18440395.html</feedburner:origLink></item>
<item>
<category />
<title>Petites canailles !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/487298662/fichearticle_gen_carticle=18438995.html</link>
<description>&lt;p&gt;Quand les parents s'en vont, "Les Enfants de Timpelbach" prennent le pouvoir ! Le réalisateur Nicolas Bary revient sur cette aventure merveilleuse qui ravira petits et grands à l'approche de Noël...&#xD;
&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18438995.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 17 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/487298662" height="1" width="1"/&gt;</description>
<pubDate>Wed, 17 Dec 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18438995</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/29/79/19018589.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18438995.html</feedburner:origLink></item>
<item>
<category />
<title>"Mascarades" : Lyes Salem passe au long</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394805/fichearticle_gen_carticle=18439797.html</link>
<description>&lt;p&gt;Après avoir rencontré un vif succès en Algérie, "Mascarades" sort ce 10 décembre sur nos écrans. Rencontre avec Lyes Salem, un jeune acteur-réalisateur lauréat du César pour son court métrage "Cousines", et qui signe ici son premier long...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439797.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394805" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Dec 2008 10:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439797</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/38/10/19023921.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439797.html</feedburner:origLink></item>
<item>
<category />
<title>"Les Inséparables" : rencontre avec Christine Dory</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480237681/fichearticle_gen_carticle=18439809.html</link>
<description>&lt;p&gt;"Les Inséparables", en salles aujourd'hui, est l'émouvant récit d'une histoire d'amour intense, avec l'incandescent Guillaume Depardieu dans un de ses derniers rôles. Rencontre avec la réalisatrice Christine Dory.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439809.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480237681" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Dec 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439809</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/37/92/19023737.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439809.html</feedburner:origLink></item>
<item>
<category />
<title>Interviews avec Nanni Moretti et l'équipe de "Caos Calmo"</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480237678/fichearticle_gen_carticle=18439772.html</link>
<description>&lt;p&gt;AlloCiné a rencontré Nanni Moretti, qui nous parle de "Caos calmo" et évoque d'autres acteurs-réalisateurs, ainsi que le réalisateur Antonello Grimaldi et Valeria Golino.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439772.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480237678" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Dec 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439772</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/37/96/19023776.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439772.html</feedburner:origLink></item>
<item>
<category />
<title>La Terre s'est arrêtée...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394806/fichearticle_gen_carticle=18439856.html</link>
<description>&lt;p&gt;"Le Jour où la Terre s'arrêta" par Keanu Reeves, Jennifer Connelly et le réalisateur Scott Derrickson...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439856.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394806" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Dec 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439856</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/30/76/19019112.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439856.html</feedburner:origLink></item>
<item>
<category />
<title>Après "La Prophétie des grenouilles"...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394807/fichearticle_gen_carticle=18439858.html</link>
<description>&lt;p&gt;"Mia et le Migou" et l'animation à la française vus par le réalisateur Jacques-Rémy Girerd...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439858.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394807" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Dec 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439858</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/38/16/19023944.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439858.html</feedburner:origLink></item>
<item>
<category />
<title>Classé "Secret Défense"</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394808/fichearticle_gen_carticle=18439860.html</link>
<description>&lt;p&gt;Rencontre avec le réalisateur Philippe Haim...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439860.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 10 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394808" height="1" width="1"/&gt;</description>
<pubDate>Wed, 10 Dec 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439860</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/38/17/19023954.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439860.html</feedburner:origLink></item>
<item>
<category />
<title>Un "Apprenti" qui ira loin !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/473293388/fichearticle_gen_carticle=18439142.html</link>
<description>&lt;p&gt;AlloCiné a rencontré Samuel Collardey, réalisateur de "L'Apprenti", documentaire prometteur, primé à la dernière Mostra de Venise. Il raconte sa démarche, originale et féconde.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439142.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 3 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/473293388" height="1" width="1"/&gt;</description>
<pubDate>Wed, 3 Dec 2008 07:01:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439142</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/31/27/19019438.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439142.html</feedburner:origLink></item>
<item>
<category />
<title>"Madagascar 2" : l'Afrique, c'est chic !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394809/fichearticle_gen_carticle=18439850.html</link>
<description>&lt;p&gt;Rencontre avec les voix américains et françaises de "Madagascar 2"...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439850.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 3 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394809" height="1" width="1"/&gt;</description>
<pubDate>Wed, 3 Dec 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439850</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/88/03/19001247.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439850.html</feedburner:origLink></item>
<item>
<category />
<title>Polar sombre pour Colin Farrell</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394810/fichearticle_gen_carticle=18439853.html</link>
<description>&lt;p&gt;"Le Prix de la loyauté" vu par Colin Farrell et le réalisateur Gavin O'Connor...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439853.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 3 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394810" height="1" width="1"/&gt;</description>
<pubDate>Wed, 3 Dec 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439853</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/38/14/19023933.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439853.html</feedburner:origLink></item>
<item>
<category />
<title>Un "Apprenti" prometteur...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/480394811/fichearticle_gen_carticle=18439854.html</link>
<description>&lt;p&gt;Rencontre avec le réalisateur Samuel Collardey...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18439854.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 3 Décembre 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/480394811" height="1" width="1"/&gt;</description>
<pubDate>Wed, 3 Dec 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18439854</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/68/38/15/19023934.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18439854.html</feedburner:origLink></item>
<item>
<category />
<title>Le roi de la belle...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/469019822/fichearticle_gen_carticle=18438674.html</link>
<description>&lt;p&gt;... c'est Fred Cavayé. Le réalisateur de "Pour elle" nous parle de ce "Prison Break" à la fr

View File

@ -0,0 +1,572 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><!-- generator="wordpress/2.0.4" --><rss 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/" version="2.0">
<channel>
<title>Debian Admin</title>
<link>http://www.debianadmin.com</link>
<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
<pubDate>Sun, 07 Sep 2008 16:44:32 +0000</pubDate>
<generator>http://wordpress.org/?v=2.0.4</generator>
<language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/debiansystemadmin" type="application/rss+xml" /><item>
<title>Puppet - Centralised configuration management for networks</title>
<link>http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html</link>
<comments>http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html#comments</comments>
<pubDate>Sat, 06 Sep 2008 23:04:02 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Free Tools</dc:subject><dc:subject>configuring puppet server debian</dc:subject><dc:subject>Free Tools</dc:subject><dc:subject>install puppet client debian</dc:subject><dc:subject>install puppet server debian</dc:subject><dc:subject>puppet debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html</guid>
<description><![CDATA[ </p> Puppet lets you centrally manage every important aspect of your system using a cross-platform specification language that manages all the separate elements normally aggregated in different files, like users, cron jobs, and hosts, along with obviously discrete elements like packages, services, and files.
Puppet&#8217;s simple declarative specification language provides powerful classing abilities for drawing out [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Puppet lets you centrally manage every important aspect of your system using a cross-platform specification language that manages all the separate elements normally aggregated in different files, like users, cron jobs, and hosts, along with obviously discrete elements like packages, services, and files.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html">Puppet - Centralised configuration management for networks</a> (106 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html">Permalink</a> |
<a href="http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html&amp;title=Puppet - Centralised configuration management for networks">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/opensource-tools/" title="View all posts in Free Tools" rel="category tag">Free Tools</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html">Aria2 - high speed command line download utility in Debian</a></li><li><a href="http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html">Opsview - Enterprise network and Application monitoring based on Nagios</a></li><li><a href="http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html">rinetd - Internet TCP redirection server</a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li><li><a href="http://www.debianadmin.com/howto-determine-the-throughput-of-a-pipe-command.html">Howto Determine the throughput of a pipe command</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=vFRhYW"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=vFRhYW" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=uyPHL"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=uyPHL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=uy4Xl"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=uy4Xl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=eDj3L"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=eDj3L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=UQkyL"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=UQkyL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=fHk6l"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=fHk6l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=RCYNL"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=RCYNL" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Fix for High CPU usage when SNMP is enabled in Cisco Routers</title>
<link>http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html</link>
<comments>http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html#comments</comments>
<pubDate>Wed, 03 Sep 2008 23:19:32 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Network</dc:subject><dc:subject>fix for High CPU usage cisco routers</dc:subject><dc:subject>High CPU usage cisco</dc:subject><dc:subject>High CPU usage routers</dc:subject><dc:subject>Network</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html</guid>
<description><![CDATA[ </p> Cisco Routers and Switches with L3 routing functions are seen to have problems with High CPU usage when SNMP is enabled. This can range anything from 15% to 40%. According to Cisco, these are low priority processes and other priority processes requiring CPU cycles are given priority over these processes and this level of [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Cisco Routers and Switches with L3 routing functions are seen to have problems with High CPU usage when SNMP is enabled. This can range anything from 15% to 40%. According to Cisco, these are low priority processes and other priority processes requiring CPU cycles are given priority over these processes and this level of CPU utilisation can be is normal. However, it is always better to be safe than sorry and get the CPU utilisation caused by SNMP to bare minimum so as to ensure the Routers function smoothly.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html">Fix for High CPU usage when SNMP is enabled in Cisco Routers</a> (183 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html">Permalink</a> |
<a href="http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html&amp;title=Fix for High CPU usage when SNMP is enabled in Cisco Routers">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/network/" title="View all posts in Network" rel="category tag">Network</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html">Howto setup DHCP Server and Dynamic DNS with BIND in Debian</a></li><li><a href="http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html">Howto upgrade IOS on a 3750 switch stack</a></li><li><a href="http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html">Ddclient - Update IP addresses at dynamic DNS service</a></li><li><a href="http://www.debianadmin.com/upgrade-cisco-ios-on-router-and-switche.html">Upgrade Cisco IOS in a Router or a Switch</a></li><li><a href="http://www.debianadmin.com/setting-port-security-on-a-cisco-catalyst-switch.html">Setting Port Security on a Cisco Catalyst Switch</a></li><li><a href="http://www.debianadmin.com/access-network-when-everything-else-is-blocked-using-ptunnel.html">Access Network When Everything Else is Blocked Using ptunnel</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=1FYLxK"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=1FYLxK" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=fSNGjL"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=fSNGjL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=Lb2oLl"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=Lb2oLl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=WhPAgL"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=WhPAgL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=EaT30L"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=EaT30L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=Z3EDvl"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=Z3EDvl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=37AfJL"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=37AfJL" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Howto use more than 4 GB RAM on Debian etch</title>
<link>http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html</link>
<comments>http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html#comments</comments>
<pubDate>Fri, 29 Aug 2008 23:21:13 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject><dc:subject>enable morethan 4gb memory debian etch</dc:subject><dc:subject>use more than 4gb ram debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html</guid>
<description><![CDATA[ </p> Nowadays, many servers are running with 2-4 gigabytes of RAM, and their owners are discovering a problem: When they run 32-bit debian Linux distribution, their extra RAM is not being used. Fortunately, correcting the problem is only a matter of installing or building a kernel with a few specific parameters enabled or disabled.
In Debian, [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Nowadays, many servers are running with 2-4 gigabytes of RAM, and their owners are discovering a problem: When they run 32-bit debian Linux distribution, their extra RAM is not being used. Fortunately, correcting the problem is only a matter of installing or building a kernel with a few specific parameters enabled or disabled.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html">Howto use more than 4 GB RAM on Debian etch</a> (90 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html">Permalink</a> |
<a href="http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html#comments">3 comments</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html&amp;title=Howto use more than 4 GB RAM on Debian etch">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>.</p><p>---<br />Related Articles at Debian Admin:<li>No Related Posts</li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=qjFjES"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=qjFjES" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=ebihZK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=ebihZK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=7hlDek"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=7hlDek" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=y3jxtK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=y3jxtK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=NUiUWK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=NUiUWK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=gWOkBk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=gWOkBk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=rOvXUK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=rOvXUK" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/howto-use-more-than-4-gb-ram-on-debian-etch.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Running Vhosts With Apache2 mpm-itk On Debian</title>
<link>http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html</link>
<comments>http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html#comments</comments>
<pubDate>Tue, 26 Aug 2008 23:03:56 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Webserver</dc:subject><dc:subject>Apache2 mpm itk On Debian</dc:subject><dc:subject>enable mod php debian</dc:subject><dc:subject>install Apache2 mpm itk On Debian</dc:subject><dc:subject>install php5 support debian</dc:subject><dc:subject>running apache2 vhosts in different uid gid debian</dc:subject><dc:subject>webserver</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html</guid>
<description><![CDATA[ </p> apache2-mpm-itk (just mpm-itk for short) is an MPM (Multi-Processing Module) for the Apache 2 web server. mpm-itk allows you to run each of your vhost under a separate uid and gid &#8212; in short, the scripts and configuration files for one vhost no longer have to be readable for all the other vhosts.
Requirements
Apache2 installation [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->apache2-mpm-itk (just mpm-itk for short) is an MPM (Multi-Processing Module) for the Apache 2 web server. mpm-itk allows you to run each of your vhost under a separate uid and gid &#8212; in short, the scripts and configuration files for one vhost no longer have to be readable for all the other vhosts.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html">Running Vhosts With Apache2 mpm-itk On Debian </a> (419 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html">Permalink</a> |
<a href="http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html#comments">2 comments</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html&amp;title=Running Vhosts With Apache2 mpm-itk On Debian ">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/webserver/" title="View all posts in Webserver" rel="category tag">Webserver</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html">WebDAV Configuration With Apache2 On Debian Etch </a></li><li><a href="http://www.debianadmin.com/how-to-setup-geoip-support-for-apache2-on-debian-etch.html">How to setup GeoIP support for apache2 On Debian Etch </a></li><li><a href="http://www.debianadmin.com/how-to-split-apache-logs-with-vlogger-in-debian-etch.html">How to Split apache Logs With vlogger in debian etch</a></li><li><a href="http://www.debianadmin.com/how-to-split-lighttpd-logs-with-vlogger-in-debian-etch.html">How to Split lighttpd Logs With vlogger in Debian Etch</a></li><li><a href="http://www.debianadmin.com/setup-easy-hosting-control-panel-ehcp-for-debianubuntu.html">Setup Easy Hosting Control Panel (ehcp) for Debian/Ubuntu</a></li><li><a href="http://www.debianadmin.com/how-to-setup-apache-tomcat-55-on-debian-etch.html">How to setup Apache Tomcat 5.5 on Debian Etch</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=TUc78I"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=TUc78I" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=kRHrWK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=kRHrWK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=YaLFzk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=YaLFzk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=ZtfYDK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=ZtfYDK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=JtfMJK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=JtfMJK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=8Z4pFk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=8Z4pFk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=LIxgRK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=LIxgRK" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Howto perform UDP tunneling through SSH connection</title>
<link>http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html</link>
<comments>http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html#comments</comments>
<pubDate>Wed, 20 Aug 2008 23:03:51 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject>
<dc:subject>Security</dc:subject><dc:subject>Security</dc:subject><dc:subject>UDP tunneling through SSH</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html</guid>
<description><![CDATA[ </p> In this tutorial we will are going to provide simple procedure how to to perform UDP tunneling through an SSH connection.Say you need to forward UDP packets between two remote networks securely.
E.g : dns queries from your home machine to your dns servers at work.
you can use the following way :
1. Connect to the [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->In this tutorial we will are going to provide simple procedure how to to perform UDP tunneling through an SSH connection.Say you need to forward UDP packets between two remote networks securely.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html">Howto perform UDP tunneling through SSH connection</a> (198 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html">Permalink</a> |
<a href="http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html&amp;title=Howto perform UDP tunneling through SSH connection">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>, <a href="http://www.debianadmin.com/category/security/" title="View all posts in Security" rel="category tag">Security</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html">Fix for weak OpenSSL/OpenSSH keys in Debian </a></li><li><a href="http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html">How to add a Disclaimer To Outgoing Emails in Postfix </a></li><li><a href="http://www.debianadmin.com/howto-crack-rar-7z-and-zip-files-in-linux.html">Howto Crack Rar, 7z, and zip files in Linux </a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/how-to-filter-spam-with-spamassassin-and-postfix-in-debian.html">How to filter spam with Spamassassin and Postfix in Debian</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=UMA27B"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=UMA27B" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=U8hq3K"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=U8hq3K" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=b2T5kk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=b2T5kk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=fmWSXK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=fmWSXK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=sN1AAK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=sN1AAK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=2JjY0k"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=2JjY0k" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=jZi9LK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=jZi9LK" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Aria2 - high speed command line download utility in Debian</title>
<link>http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html</link>
<comments>http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html#comments</comments>
<pubDate>Thu, 14 Aug 2008 18:55:32 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Free Tools</dc:subject><dc:subject>aria2</dc:subject><dc:subject>aria2 debian</dc:subject><dc:subject>download utility debian</dc:subject><dc:subject>Free Tools</dc:subject><dc:subject>install aria2 debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html</guid>
<description><![CDATA[ </p> aria2 is a utility for downloading files. The supported protocols are HTTP(S), FTP, BitTorrent (DHT, PEX, MSE/PE), and Metalink. It can download a file from multiple sources/protocols and tries to utilize your maximum download bandwidth.
It even supports downloading a file from HTTP(S)/FTP and BitTorrent at the same time, while the data downloaded from HTTP(S)/FTP [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->aria2 is a utility for downloading files. The supported protocols are HTTP(S), FTP, BitTorrent (DHT, PEX, MSE/PE), and Metalink. It can download a file from multiple sources/protocols and tries to utilize your maximum download bandwidth.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html">Aria2 - high speed command line download utility in Debian</a> (157 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html">Permalink</a> |
<a href="http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html&amp;title=Aria2 - high speed command line download utility in Debian">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/opensource-tools/" title="View all posts in Free Tools" rel="category tag">Free Tools</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html">Puppet - Centralised configuration management for networks</a></li><li><a href="http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html">Opsview - Enterprise network and Application monitoring based on Nagios</a></li><li><a href="http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html">rinetd - Internet TCP redirection server</a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li><li><a href="http://www.debianadmin.com/howto-determine-the-throughput-of-a-pipe-command.html">Howto Determine the throughput of a pipe command</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=C3Akgy"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=C3Akgy" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=wM02wK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=wM02wK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=LMbrQk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=LMbrQk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=rPPyPK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=rPPyPK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=hdJiDK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=hdJiDK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=ylO6Jk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=ylO6Jk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=WXqJyK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=WXqJyK" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Howto use SSH local and remote port forwarding</title>
<link>http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html</link>
<comments>http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html#comments</comments>
<pubDate>Wed, 06 Aug 2008 05:37:12 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject><dc:subject>remote port forwading ssh</dc:subject><dc:subject>ssh forwading examples</dc:subject><dc:subject>ssh local port forwarding</dc:subject><dc:subject>ssh port forwarding</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html</guid>
<description><![CDATA[ </p>Port forwarding, or tunneling, is a way to forward otherwise insecure TCP traffic through SSH Secure Shell. You can secure for example POP3, SMTP and HTTP connections that would otherwise be insecure.
There are two kinds of port forwarding: local and remote forwarding. They are also called outgoing and incoming tunnels, respectively.
Local port forwarding forwards traffic [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p><!--adsense-->Port forwarding, or tunneling, is a way to forward otherwise insecure TCP traffic through SSH Secure Shell. You can secure for example POP3, SMTP and HTTP connections that would otherwise be insecure.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html">Howto use SSH local and remote port forwarding </a> (591 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html">Permalink</a> |
<a href="http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html#comments">One comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html&amp;title=Howto use SSH local and remote port forwarding ">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>.</p><p>---<br />Related Articles at Debian Admin:<li>No Related Posts</li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=3tgTxc"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=3tgTxc" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=CUrTFK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=CUrTFK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=rPUcUk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=rPUcUk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=5wmDlK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=5wmDlK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=CtGAKK"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=CtGAKK" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=xRXXAk"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=xRXXAk" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=qge22K"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=qge22K" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/howto-use-ssh-local-and-remote-port-forwarding.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Opsview - Enterprise network and Application monitoring based on Nagios</title>
<link>http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html</link>
<comments>http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html#comments</comments>
<pubDate>Thu, 31 Jul 2008 09:32:53 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Free Tools</dc:subject><dc:subject>Free Tools</dc:subject><dc:subject>install opsview debian</dc:subject><dc:subject>nagios opsvies</dc:subject><dc:subject>Opsview</dc:subject><dc:subject>opsview debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html</guid>
<description><![CDATA[ </p> Opsview is enterprise network and application monitoring software designed for scalability, flexibility and ease of use. Opsview has been in development since 2003 and is released under the GNU GPL license. Current version is 2.12.
Opsview is a fully integrated monitoring tool that incorporates popular Open Source software including Nagios, Net-SNMP and RRDtool. The Catalyst [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Opsview is enterprise network and application monitoring software designed for scalability, flexibility and ease of use. Opsview has been in development since 2003 and is released under the GNU GPL license. Current version is 2.12.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html">Opsview - Enterprise network and Application monitoring based on Nagios</a> (175 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html">Permalink</a> |
<a href="http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html&amp;title=Opsview - Enterprise network and Application monitoring based on Nagios">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/opensource-tools/" title="View all posts in Free Tools" rel="category tag">Free Tools</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html">Puppet - Centralised configuration management for networks</a></li><li><a href="http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html">Aria2 - high speed command line download utility in Debian</a></li><li><a href="http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html">rinetd - Internet TCP redirection server</a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li><li><a href="http://www.debianadmin.com/howto-determine-the-throughput-of-a-pipe-command.html">Howto Determine the throughput of a pipe command</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=GImN7U"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=GImN7U" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=8LUxzJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=8LUxzJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=wHeaRj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=wHeaRj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=qzCefJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=qzCefJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=DGwQeJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=DGwQeJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=sSmR3j"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=sSmR3j" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=TGUHBJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=TGUHBJ" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Howto setup DHCP Server and Dynamic DNS with BIND in Debian</title>
<link>http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html</link>
<comments>http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html#comments</comments>
<pubDate>Tue, 22 Jul 2008 23:03:01 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject>
<dc:subject>Network</dc:subject><dc:subject>bind server debian etch</dc:subject><dc:subject>DHCP Server and Dynamic DNS with BIND in Debian</dc:subject><dc:subject>DHCP Server debian etch</dc:subject><dc:subject>Network</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html</guid>
<description><![CDATA[ </p> This tutorial will explain Howto setup DHCP Server and Dynamic DNS with BIND in Debian.
Preparing you system
First you need to install DHCP,BIND servers using the following command
#aptitude install dhcp3-server bind9
This will complete the installation.
This is the network configuration of our DHCP/DNS server we are using for our tutorial
Hostname : router.static.example.org
WAN interface (eth0) : 192.168.99.254 [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->This tutorial will explain Howto setup DHCP Server and Dynamic DNS with BIND in Debian.</p>
<p><strong>Preparing you system</strong></p>
<p>First you need to install DHCP,BIND servers using the following command</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html">Howto setup DHCP Server and Dynamic DNS with BIND in Debian</a> (944 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html">Permalink</a> |
<a href="http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html#comments">5 comments</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html&amp;title=Howto setup DHCP Server and Dynamic DNS with BIND in Debian">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>, <a href="http://www.debianadmin.com/category/network/" title="View all posts in Network" rel="category tag">Network</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html">Fix for High CPU usage when SNMP is enabled in Cisco Routers</a></li><li><a href="http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html">Howto upgrade IOS on a 3750 switch stack</a></li><li><a href="http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html">Ddclient - Update IP addresses at dynamic DNS service</a></li><li><a href="http://www.debianadmin.com/upgrade-cisco-ios-on-router-and-switche.html">Upgrade Cisco IOS in a Router or a Switch</a></li><li><a href="http://www.debianadmin.com/setting-port-security-on-a-cisco-catalyst-switch.html">Setting Port Security on a Cisco Catalyst Switch</a></li><li><a href="http://www.debianadmin.com/access-network-when-everything-else-is-blocked-using-ptunnel.html">Access Network When Everything Else is Blocked Using ptunnel</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=yI4wWp"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=yI4wWp" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=dz4PbJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=dz4PbJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=Sg6CPj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=Sg6CPj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=fhNWQJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=fhNWQJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=7TA5sJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=7TA5sJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=a7VWnj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=a7VWnj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=c2oTAJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=c2oTAJ" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Download videos from Youtube,Google and other video sites in Debian Linux</title>
<link>http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html</link>
<comments>http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html#comments</comments>
<pubDate>Sat, 19 Jul 2008 20:21:56 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject><dc:subject>clive debian</dc:subject><dc:subject>clive example</dc:subject><dc:subject>download youtube videos in debian</dc:subject><dc:subject>install clive debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html</guid>
<description><![CDATA[ </p> Clive is Command-line and fullscreen console program that extracts videos from YouTube, Google Video and other video sites. It supports embedded video extraction, and can be used with an external encoder (e.g. ffmpeg) to re-encode the extracted videos to different video formats (e.g. avi, mpeg, flv).
Features
Multi-platform; POSIX (BSD/Linux/UNIX-like)
Supports:
Youtube
GoogleVideo
Dailymotion
Guba
Metacafe
Sevenload
Myvideo
Bandwidth throttle
Multi-URL (batch) support
Compatible with UNIX pipes
Configuration [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Clive is Command-line and fullscreen console program that extracts videos from YouTube, Google Video and other video sites. It supports embedded video extraction, and can be used with an external encoder (e.g. ffmpeg) to re-encode the extracted videos to different video formats (e.g. avi, mpeg, flv).</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html">Download videos from Youtube,Google and other video sites in Debian Linux</a> (149 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html">Permalink</a> |
<a href="http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html#comments">2 comments</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html&amp;title=Download videos from Youtube,Google and other video sites in Debian Linux">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>.</p><p>---<br />Related Articles at Debian Admin:<li>No Related Posts</li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=s7eGGx"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=s7eGGx" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=04WWBJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=04WWBJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=Rn8shj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=Rn8shj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=6SeLsJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=6SeLsJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=zPDWuJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=zPDWuJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=ZJRoEj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=ZJRoEj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=9STbyJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=9STbyJ" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/download-videos-from-youtubegoogle-and-other-video-sites-in-debian-linux.html/feed/</wfw:commentRSS>
</item>
<item>
<title>rinetd - Internet TCP redirection server</title>
<link>http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html</link>
<comments>http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html#comments</comments>
<pubDate>Sat, 12 Jul 2008 19:33:00 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Free Tools</dc:subject><dc:subject>Free Tools</dc:subject><dc:subject>install rinetd debian</dc:subject><dc:subject>Internet TCP redirection server</dc:subject><dc:subject>rinetd debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html</guid>
<description><![CDATA[ </p> rinetd redirects TCP connections from one IP address and port to another, with basic IP-based access control.
rinetd is a single-process server which handles any number of connections to the address/port pairs specified in the file /etc/rinetd.conf. Since rinetd runs as a single process using nonblocking I/O, it is able to redirect [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->rinetd redirects TCP connections from one IP address and port to another, with basic IP-based access control.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html">rinetd - Internet TCP redirection server</a> (68 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html">Permalink</a> |
<a href="http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html&amp;title=rinetd - Internet TCP redirection server">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/opensource-tools/" title="View all posts in Free Tools" rel="category tag">Free Tools</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/puppet-centralised-configuration-management-for-networks.html">Puppet - Centralised configuration management for networks</a></li><li><a href="http://www.debianadmin.com/aria2-high-speed-command-line-download-utility-in-debian.html">Aria2 - high speed command line download utility in Debian</a></li><li><a href="http://www.debianadmin.com/opsview-enterprise-network-and-application-monitoring-based-on-nagios.html">Opsview - Enterprise network and Application monitoring based on Nagios</a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li><li><a href="http://www.debianadmin.com/howto-determine-the-throughput-of-a-pipe-command.html">Howto Determine the throughput of a pipe command</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=dBJd1T"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=dBJd1T" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=LMa0zJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=LMa0zJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=2cJf1j"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=2cJf1j" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=VVC7oJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=VVC7oJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=rKFU3J"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=rKFU3J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=KwA3Bj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=KwA3Bj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=T99tfJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=T99tfJ" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/rinetd-internet-tcp-redirection-server.html/feed/</wfw:commentRSS>
</item>
<item>
<title>WebDAV Configuration With Apache2 On Debian Etch</title>
<link>http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html</link>
<comments>http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html#comments</comments>
<pubDate>Wed, 02 Jul 2008 12:28:54 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Webserver</dc:subject><dc:subject>configure webdav debian etch</dc:subject><dc:subject>enable webdav modules for apache2 in debian</dc:subject><dc:subject>test webdav in debian</dc:subject><dc:subject>webdav client debian</dc:subject><dc:subject>webdav configuration in debian etch</dc:subject><dc:subject>webserver</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html</guid>
<description><![CDATA[ </p> Web-based Distributed Authoring and Versioning, or WebDAV, is a set of extensions to the Hypertext Transfer Protocol (HTTP) which allows users to collaboratively edit and manage files on remote World Wide Web servers. The group of developers responsible for these extensions was also known by the same name and was a working group of [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Web-based Distributed Authoring and Versioning, or WebDAV, is a set of extensions to the Hypertext Transfer Protocol (HTTP) which allows users to collaboratively edit and manage files on remote World Wide Web servers. The group of developers responsible for these extensions was also known by the same name and was a working group of the Internet Engineering Task Force (IETF).</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html">WebDAV Configuration With Apache2 On Debian Etch </a> (393 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html">Permalink</a> |
<a href="http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html#comments">4 comments</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html&amp;title=WebDAV Configuration With Apache2 On Debian Etch ">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/webserver/" title="View all posts in Webserver" rel="category tag">Webserver</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/running-vhosts-with-apache2-mpm-itk-on-debian.html">Running Vhosts With Apache2 mpm-itk On Debian </a></li><li><a href="http://www.debianadmin.com/how-to-setup-geoip-support-for-apache2-on-debian-etch.html">How to setup GeoIP support for apache2 On Debian Etch </a></li><li><a href="http://www.debianadmin.com/how-to-split-apache-logs-with-vlogger-in-debian-etch.html">How to Split apache Logs With vlogger in debian etch</a></li><li><a href="http://www.debianadmin.com/how-to-split-lighttpd-logs-with-vlogger-in-debian-etch.html">How to Split lighttpd Logs With vlogger in Debian Etch</a></li><li><a href="http://www.debianadmin.com/setup-easy-hosting-control-panel-ehcp-for-debianubuntu.html">Setup Easy Hosting Control Panel (ehcp) for Debian/Ubuntu</a></li><li><a href="http://www.debianadmin.com/how-to-setup-apache-tomcat-55-on-debian-etch.html">How to setup Apache Tomcat 5.5 on Debian Etch</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=QoLLbF"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=QoLLbF" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=X5V2vJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=X5V2vJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=XWagqj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=XWagqj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=XtyxsJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=XtyxsJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=gZfKIJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=gZfKIJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=52VWWj"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=52VWWj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=OP68ZJ"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=OP68ZJ" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/webdav-configuration-with-apache2-on-debian-etch.html/feed/</wfw:commentRSS>
</item>
<item>
<title>List of FTP Clients Available in Linux</title>
<link>http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html</link>
<comments>http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html#comments</comments>
<pubDate>Sun, 29 Jun 2008 07:17:35 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject><dc:subject>ftp clients available debian</dc:subject><dc:subject>ftp clients available in linux</dc:subject><dc:subject>ftp clients debian</dc:subject><dc:subject>ftp clients linux</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html</guid>
<description><![CDATA[ </p> FTP is a file transfer protocol for exchanging files over any TCP/IP based network to manipulate files on another computer on that network regardless of which operating systems are involved (if the computers permit FTP access). There are many existing FTP client and server programs. FTP servers can be set up anywhere between game [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->FTP is a file transfer protocol for exchanging files over any TCP/IP based network to manipulate files on another computer on that network regardless of which operating systems are involved (if the computers permit FTP access). There are many existing FTP client and server programs. FTP servers can be set up anywhere between game servers, voice servers, internet hosts, and other physical servers.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html">List of FTP Clients Available in Linux</a> (1,204 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html">Permalink</a> |
<a href="http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html#comments">2 comments</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html&amp;title=List of FTP Clients Available in Linux">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>.</p><p>---<br />Related Articles at Debian Admin:<li>No Related Posts</li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=893FOq"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=893FOq" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=5tQf1I"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=5tQf1I" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=9Ohubi"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=9Ohubi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=KjOk3I"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=KjOk3I" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=RiIuSI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=RiIuSI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=KCdxXi"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=KCdxXi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=NGOhHI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=NGOhHI" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/list-of-ftp-clients-available-in-linux.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Howto upgrade IOS on a 3750 switch stack</title>
<link>http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html</link>
<comments>http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html#comments</comments>
<pubDate>Wed, 18 Jun 2008 15:47:19 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Network</dc:subject><dc:subject>Network</dc:subject><dc:subject>procedure to follow ios upgrade 3750 switch stack</dc:subject><dc:subject>upgrade cisco 3750 switch stack</dc:subject><dc:subject>upgrade ios in cisco switch stack</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html</guid>
<description><![CDATA[ </p> If you want to upgrade IOS on a 3750 switch stack follow this procedure
There are some new IOS commands to automate upgrading of a stack, but I use the familiar manual method.
All of your stack members really should be running the same version of IOS (even though there&#8217;s a chance that if the versions [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->If you want to upgrade IOS on a 3750 switch stack follow this procedure</p>
<p>There are some new IOS commands to automate upgrading of a stack, but I use the familiar manual method.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html">Howto upgrade IOS on a 3750 switch stack</a> (264 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html">Permalink</a> |
<a href="http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html&amp;title=Howto upgrade IOS on a 3750 switch stack">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/network/" title="View all posts in Network" rel="category tag">Network</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html">Fix for High CPU usage when SNMP is enabled in Cisco Routers</a></li><li><a href="http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html">Howto setup DHCP Server and Dynamic DNS with BIND in Debian</a></li><li><a href="http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html">Ddclient - Update IP addresses at dynamic DNS service</a></li><li><a href="http://www.debianadmin.com/upgrade-cisco-ios-on-router-and-switche.html">Upgrade Cisco IOS in a Router or a Switch</a></li><li><a href="http://www.debianadmin.com/setting-port-security-on-a-cisco-catalyst-switch.html">Setting Port Security on a Cisco Catalyst Switch</a></li><li><a href="http://www.debianadmin.com/access-network-when-everything-else-is-blocked-using-ptunnel.html">Access Network When Everything Else is Blocked Using ptunnel</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=7ananj"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=7ananj" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=4yvn3I"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=4yvn3I" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=NL913i"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=NL913i" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=usHvPI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=usHvPI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=pMVjNI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=pMVjNI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=qYb2Vi"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=qYb2Vi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=x74NBI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=x74NBI" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html/feed/</wfw:commentRSS>
</item>
<item>
<title>How to prevent a package from being updated in Debian</title>
<link>http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html</link>
<comments>http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html#comments</comments>
<pubDate>Thu, 12 Jun 2008 18:58:37 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Package Mgmt</dc:subject><dc:subject>hold package in debian</dc:subject><dc:subject>Package Mgmt</dc:subject><dc:subject>prevent a package from being updated in Debian</dc:subject><dc:subject>unhold a package in debian</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html</guid>
<description><![CDATA[ </p> If you want to update all the packages other than one in your debian server follow this procedure
There are three ways of holding back packages, with dpkg, aptitude or with dselect.
Using dpkg
Put a package on hold
echo &#8220;package hold&#8221; &#124; dpkg --set-selections
Example
echo &#8220;apache2 hold&#8221; &#124; dpkg --set-selections
Remove the hold
echo &#8220;package install&#8221; &#124; dpkg --set-selections
Example
echo &#8220;apache2 [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->If you want to update all the packages other than one in your debian server follow this procedure</p>
<p>There are three ways of holding back packages, with dpkg, aptitude or with dselect.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html">How to prevent a package from being updated in Debian</a> (115 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html">Permalink</a> |
<a href="http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html#comments">One comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html&amp;title=How to prevent a package from being updated in Debian">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/package-management/" title="View all posts in Package Mgmt" rel="category tag">Package Mgmt</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/howto-select-fastest-mirror-in-debian.html">Howto Select Fastest Mirror in Debian</a></li><li><a href="http://www.debianadmin.com/how-to-install-backports-debian-packages.html">How to Install Backports Debian Packages</a></li><li><a href="http://www.debianadmin.com/how-to-install-thunderbird-in-ubuntu.html">How to install Thunderbird in Ubuntu</a></li><li><a href="http://www.debianadmin.com/shows-source-package-information-apt-show-source.html">Shows source-package information apt-show-source </a></li><li><a href="http://www.debianadmin.com/recursively-lists-package-dependencies-using-apt-rdepends.html">Recursively lists package dependencies Using apt-rdepends </a></li><li><a href="http://www.debianadmin.com/put-an-unpacked-deb-file-back-together-using-dpkg-repack.html">Put an unpacked .deb file back together Using dpkg-repack</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=sZQd5U"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=sZQd5U" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=DUaVLI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=DUaVLI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=ZkgfEi"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=ZkgfEi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=xxaeWI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=xxaeWI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=RGdOrI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=RGdOrI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=TUT5zi"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=TUT5zi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=bZy1kI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=bZy1kI" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/how-to-prevent-a-package-from-being-updated-in-debian.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Kubuntu 8.04 (Hardy Heron) Screenshots Tour</title>
<link>http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html</link>
<comments>http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html#comments</comments>
<pubDate>Sun, 01 Jun 2008 23:03:57 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Other Linux</dc:subject><dc:subject>Kubuntu 8.04 Screenshots</dc:subject><dc:subject>Kubuntu Hardy Heron Screenshots</dc:subject><dc:subject>Other Linux</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html</guid>
<description><![CDATA[ </p><a class="cpg-link" href="javascript:void(window.open('http://debianadmin.com/copper/displayimage.php?pid=1284&#38;fullsize=1','','toolbar=no,status=no,resizable=yes,width=820,height=620'))"><img src="http://debianadmin.com/copper/albums/kubuntuhardy/thumb_1.png" alt="" title="Kubuntu 8.04 (Hardy Heron)" class="cpg-excerpt"/></a> Kubuntu is a user friendly operating system based on KDE, the K Desktop Environment. With a predictable 6 month release cycle and part of the Ubuntu project, Kubuntu is the GNU/Linux distribution for everyone.
Kubuntu is an entirely open source operating system built around the Linux kernel. The Kubuntu community is built around the ideals [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->Kubuntu is a user friendly operating system based on KDE, the K Desktop Environment. With a predictable 6 month release cycle and part of the Ubuntu project, Kubuntu is the GNU/Linux distribution for everyone.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html">Kubuntu 8.04 (Hardy Heron) Screenshots Tour</a> (106 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html">Permalink</a> |
<a href="http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html#comments">One comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html&amp;title=Kubuntu 8.04 (Hardy Heron) Screenshots Tour">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/other-linux/" title="View all posts in Other Linux" rel="category tag">Other Linux</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/ubuntu-804-hardy-heron-screenshots-tour.html">Ubuntu 8.04 (Hardy Heron) Screenshots Tour</a></li><li><a href="http://www.debianadmin.com/setup-easy-hosting-control-panel-ehcp-for-debianubuntu.html">Setup Easy Hosting Control Panel (ehcp) for Debian/Ubuntu</a></li><li><a href="http://www.debianadmin.com/kde-40-today-released-screenshots-tour.html">KDE 4.0 (Today Released) Screenshots Tour</a></li><li><a href="http://www.debianadmin.com/how-to-install-postal-2-fudge-pack-on-debianubuntu.html">How to install Postal 2 Fudge pack on Debian/Ubuntu.</a></li><li><a href="http://www.debianadmin.com/ubuntu-710-gutsy-gibbon-screenshots-tour.html">Ubuntu 7.10 (Gutsy Gibbon) Screenshots Tour</a></li><li><a href="http://www.debianadmin.com/xubuntu-710-gutsy-gibbon-screenshots-tour.html">Xubuntu 7.10 (gutsy gibbon) Screenshots Tour</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=2kFh5T"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=2kFh5T" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=EW3zGI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=EW3zGI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=QHrmei"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=QHrmei" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=DxBTyI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=DxBTyI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=KcTjNI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=KcTjNI" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=vGzpmi"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=vGzpmi" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=yuCTsI"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=yuCTsI" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/kubuntu-804-hardy-heron-screenshots-tour.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Ddclient - Update IP addresses at dynamic DNS service</title>
<link>http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html</link>
<comments>http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html#comments</comments>
<pubDate>Wed, 28 May 2008 20:22:04 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Network</dc:subject><dc:subject>configur ddclient</dc:subject><dc:subject>Ddclient</dc:subject><dc:subject>Ddclient debian</dc:subject><dc:subject>install Ddclient</dc:subject><dc:subject>Network</dc:subject><dc:subject>update dynamic dns ip</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html</guid>
<description><![CDATA[ </p> If you are using zoneedit.com or dyndns.org for your DNS service so that you can access your server using a URL, then you might have to update your DNS record at the service periodically whenever the IP address of your computer changes.Now here is simple solution for this ddclient.
Update IP addresses at dynamic DNS [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->If you are using zoneedit.com or dyndns.org for your DNS service so that you can access your server using a URL, then you might have to update your DNS record at the service periodically whenever the IP address of your computer changes.Now here is simple solution for this ddclient.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html">Ddclient - Update IP addresses at dynamic DNS service</a> (198 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html">Permalink</a> |
<a href="http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html#comments">No comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html&amp;title=Ddclient - Update IP addresses at dynamic DNS service">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/network/" title="View all posts in Network" rel="category tag">Network</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/fix-for-high-cpu-usage-when-snmp-is-enabled-in-cisco-routers.html">Fix for High CPU usage when SNMP is enabled in Cisco Routers</a></li><li><a href="http://www.debianadmin.com/howto-setup-dhcp-server-and-dynamic-dns-with-bind-in-debian.html">Howto setup DHCP Server and Dynamic DNS with BIND in Debian</a></li><li><a href="http://www.debianadmin.com/howto-upgrade-ios-on-a-3750-switch-stack.html">Howto upgrade IOS on a 3750 switch stack</a></li><li><a href="http://www.debianadmin.com/upgrade-cisco-ios-on-router-and-switche.html">Upgrade Cisco IOS in a Router or a Switch</a></li><li><a href="http://www.debianadmin.com/setting-port-security-on-a-cisco-catalyst-switch.html">Setting Port Security on a Cisco Catalyst Switch</a></li><li><a href="http://www.debianadmin.com/access-network-when-everything-else-is-blocked-using-ptunnel.html">Access Network When Everything Else is Blocked Using ptunnel</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=yqfvoB"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=yqfvoB" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=zebW3H"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=zebW3H" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=hXgY2h"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=hXgY2h" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=MMvkAH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=MMvkAH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=ivsxhH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=ivsxhH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=F0n1Xh"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=F0n1Xh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=i5ilNH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=i5ilNH" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/ddclient-update-ip-addresses-at-dynamic-dns-service.html/feed/</wfw:commentRSS>
</item>
<item>
<title>Fix for weak OpenSSL/OpenSSH keys in Debian</title>
<link>http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html</link>
<comments>http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html#comments</comments>
<pubDate>Thu, 22 May 2008 11:28:07 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>Security</dc:subject><dc:subject>Fix for weak OpenSSH</dc:subject><dc:subject>Fix for weak OpenSSH debian</dc:subject><dc:subject>Fix for weak OpenSSL</dc:subject><dc:subject>Fix for weak OpenSSL debian</dc:subject><dc:subject>Security</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html</guid>
<description><![CDATA[ </p> A recent vulnerability was found in the OpenSSL package as provided by Debian and Debian-based Linux distributions, such as Ubuntu, that broke the effectiveness of the OpenSSL PRNG (Predictable Random Number Generator). This vulnerability caused OpenSSL to generate weak keys for anything relying on OpenSSL, including SSL certificates, OpenSSH keys, and OpenVPN keys.
Debian and [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->A recent vulnerability was found in the OpenSSL package as provided by Debian and Debian-based Linux distributions, such as Ubuntu, that broke the effectiveness of the OpenSSL PRNG (Predictable Random Number Generator). This vulnerability caused OpenSSL to generate weak keys for anything relying on OpenSSL, including SSL certificates, OpenSSH keys, and OpenVPN keys.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html">Fix for weak OpenSSL/OpenSSH keys in Debian </a> (337 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html">Permalink</a> |
<a href="http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html#comments">One comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html&amp;title=Fix for weak OpenSSL/OpenSSH keys in Debian ">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/security/" title="View all posts in Security" rel="category tag">Security</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html">Howto perform UDP tunneling through SSH connection</a></li><li><a href="http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html">How to add a Disclaimer To Outgoing Emails in Postfix </a></li><li><a href="http://www.debianadmin.com/howto-crack-rar-7z-and-zip-files-in-linux.html">Howto Crack Rar, 7z, and zip files in Linux </a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/how-to-filter-spam-with-spamassassin-and-postfix-in-debian.html">How to filter spam with Spamassassin and Postfix in Debian</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=STIoMe"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=STIoMe" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=1NEuEH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=1NEuEH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=Y3IuWh"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=Y3IuWh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=3JcGlH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=3JcGlH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=C3JaKH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=C3JaKH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=e3XpLh"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=e3XpLh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=YpGepH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=YpGepH" border="0"></img></a>
</div>]]></content:encoded>
<wfw:commentRSS>http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html/feed/</wfw:commentRSS>
</item>
<item>
<title>How to add a Disclaimer To Outgoing Emails in Postfix</title>
<link>http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html</link>
<comments>http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html#comments</comments>
<pubDate>Thu, 15 May 2008 10:30:11 +0000</pubDate>
<dc:creator>Admin</dc:creator>
<dc:subject>General</dc:subject>
<dc:subject>Security</dc:subject><dc:subject>add a Disclaimer To Outgoing Emails in Postfix</dc:subject><dc:subject>add a Disclaimer To Outgoing Emails in Postfix etch</dc:subject><dc:subject>altermime</dc:subject><dc:subject>configure altermime etch</dc:subject><dc:subject>install altermime etch</dc:subject><dc:subject>Security</dc:subject>
<guid isPermaLink="false">http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html</guid>
<description><![CDATA[ </p> We have already dicussed how to install and configure postfix now we will learn about How to add a Disclaimer To Outgoing Emails in Postfix using altermime.
alterMIME is a small program which is used to alter your mime-encoded mailpacks as typically received by Inflex, Xamime and AMaViS.
What can alterMIME do?
Insert disclaimers
Insert arbitary X-headers
Modify existing [...]<p> ]]></description>
<content:encoded><![CDATA[<div class="KonaBody"><p> <!--adsense-->We have already dicussed how to <a target="_blank" href="http://www.debianadmin.com/debian-mail-server-setup-with-postfix-dovecot-sasl-squirrel-mail.html">install and configure postfix</a> now we will learn about How to add a Disclaimer To Outgoing Emails in Postfix using altermime.</p>
<p>alterMIME is a small program which is used to alter your mime-encoded mailpacks as typically received by Inflex, Xamime and AMaViS.</p>
<p></p>
<p>(...)<br/>Read the rest of <a href="http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html">How to add a Disclaimer To Outgoing Emails in Postfix </a> (333 words)</p>
<hr noshade style="margin:0;height:1px" />
<p>&copy; Admin for <a href="http://www.debianadmin.com">Debian Admin</a>, 2008. |
<a href="http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html">Permalink</a> |
<a href="http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html#comments">One comment</a></p>
<p>Add to <a href="http://del.icio.us/post?url=http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html&amp;title=How to add a Disclaimer To Outgoing Emails in Postfix ">del.icio.us</a> </p>
<p>Search blogs linking this post with <a href="http://www.technorati.com/search/http://www.debianadmin.com/how-to-add-a-disclaimer-to-outgoing-emails-in-postfix.html" title="Search on Technorati">Technorati</a></p>
<p>Want more on these topics ? Browse the archive of posts filed under <a href="http://www.debianadmin.com/category/general/" title="View all posts in General" rel="category tag">General</a>, <a href="http://www.debianadmin.com/category/security/" title="View all posts in Security" rel="category tag">Security</a>.</p><p>---<br />Related Articles at Debian Admin:<li><a href="http://www.debianadmin.com/howto-perform-udp-tunneling-through-ssh-connection.html">Howto perform UDP tunneling through SSH connection</a></li><li><a href="http://www.debianadmin.com/fix-for-weak-opensslopenssh-keys-in-debian.html">Fix for weak OpenSSL/OpenSSH keys in Debian </a></li><li><a href="http://www.debianadmin.com/howto-crack-rar-7z-and-zip-files-in-linux.html">Howto Crack Rar, 7z, and zip files in Linux </a></li><li><a href="http://www.debianadmin.com/sshpass-non-interactive-ssh-password-authentication.html">sshpass - Non-interactive ssh password authentication</a></li><li><a href="http://www.debianadmin.com/how-to-filter-spam-with-spamassassin-and-postfix-in-debian.html">How to filter spam with Spamassassin and Postfix in Debian</a></li><li><a href="http://www.debianadmin.com/autossh-automatically-restart-ssh-sessions-and-tunnels.html">autossh - Automatically restart SSH sessions and tunnels</a></li></p><br /></div><!-- KonaBody -->
<p><a href="http://feeds.feedburner.com/~a/debiansystemadmin?a=2lczW5"><img src="http://feeds.feedburner.com/~a/debiansystemadmin?i=2lczW5" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=XnMXKH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=XnMXKH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=wnZROh"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=wnZROh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=gmXqQH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=gmXqQH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=e2m8fH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=e2m8fH" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=CXJAqh"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=CXJAqh" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/debiansystemadmin?a=LOTeGH"><img src="http://feeds.feedburner.com/~f/debiansystemadmin?i=LOTeGH" border="0"></img></a>
</div>]]></con

View File

View File

View File

@ -0,0 +1,165 @@
<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type="text/xsl" href="http://rss.svmmac.fr/xsl/fr/rss.xsl"?>
<rss version="2.0" xml:base="http://www.svmmac.fr" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>SVM Mac - News</title>
<link>http://www.svmmac.fr/taxonomy/term/21/1</link>
<description></description>
<language>fr</language>
<item>
<title>Apple ouvre l&#039;iPhone</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=4f5013e6c86bdd2dcef0c03267611e31</link>
<description><![CDATA[<div class="field_vignette"></div><p>Steve Jobs a décidé de finalement ouvrir l&#39;iPhone et l&#39;iPod Touch aux applications tierces à partir du mois de février.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Apple+ouvre+l%27iPhone&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D4f5013e6c86bdd2dcef0c03267611e31" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Apple+ouvre+l%27iPhone&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D4f5013e6c86bdd2dcef0c03267611e31" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=6645691c37714dcbacf124e8a56611c7"/>]]></description>
<comments>http://www.svmmac.fr/news/4303/apple_ouvre_liphone#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/tags/apple">Apple</category>
<category domain="http://www.svmmac.fr/tags/applications">Applications</category>
<category domain="http://www.svmmac.fr/iphone/tags/iphone">iPhone</category>
<category domain="http://www.svmmac.fr/natives/tags/natives">natives</category>
<category domain="http://www.svmmac.fr/os_x/tags/os_x">OS X</category>
<category domain="http://www.svmmac.fr/sdk/tags/sdk">sdk</category>
<pubDate>Wed, 17 Oct 2007 17:24:38 +0200</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4303/apple_ouvre_liphone</guid>
<dc:creator>Julien Guillot</dc:creator>
</item>
<item>
<title>La mission Olivennes</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=2bc8362656bef1de0b673110e9064fe4</link>
<description><![CDATA[<div class="field_vignette"></div><p>Ou comment lutter contre le piratage ?</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=La+mission+Olivennes&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D2bc8362656bef1de0b673110e9064fe4" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=La+mission+Olivennes&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D2bc8362656bef1de0b673110e9064fe4" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=52386bbf3d55397e33e0fa1b319ff980"/>]]></description>
<comments>http://www.svmmac.fr/news/4395/la_mission_olivennes#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/mission/tags/mission">mission</category>
<category domain="http://www.svmmac.fr/olivennes/tags/olivennes">olivennes</category>
<category domain="http://www.svmmac.fr/tags/piratage">Piratage</category>
<category domain="http://www.svmmac.fr/rapport/tags/rapport">rapport</category>
<pubDate>Sun, 25 Nov 2007 13:33:20 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4395/la_mission_olivennes</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>Multipoint 2.0</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=e3c04b169977fe86684aa8376992a497</link>
<description><![CDATA[<div class="field_vignette"></div><p>Apple planche sur un Mac à écran tactile ?</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Multipoint+2.0&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3De3c04b169977fe86684aa8376992a497" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Multipoint+2.0&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3De3c04b169977fe86684aa8376992a497" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=6b9176cea070feb783532a583aa802f6"/>]]></description>
<comments>http://www.svmmac.fr/news/4396/multipoint_2_0#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/brevet/tags/brevet">brevet</category>
<category domain="http://www.svmmac.fr/main/tags/main">main</category>
<category domain="http://www.svmmac.fr/multipoint/tags/multipoint">multipoint</category>
<pubDate>Sun, 25 Nov 2007 13:06:06 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4396/multipoint_2_0</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>Un Mac à taux agressif</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=fc93ec3ae1008393b03f3dac250b2ac7</link>
<description><![CDATA[<div class="field_vignette"></div><p>Un crédit À 1,90% sur 12 mois pour un MacBook.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Un+Mac+%C3%A0+taux+agressif&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Dfc93ec3ae1008393b03f3dac250b2ac7" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Un+Mac+%C3%A0+taux+agressif&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Dfc93ec3ae1008393b03f3dac250b2ac7" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=c6fab8e0879432f4864790cc931d2597"/>]]></description>
<comments>http://www.svmmac.fr/news/4394/un_mac_a_taux_agressif#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/credit/tags/credit">crédit</category>
<category domain="http://www.svmmac.fr/tags/mac">Mac</category>
<pubDate>Sun, 25 Nov 2007 12:57:09 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4394/un_mac_a_taux_agressif</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>Bientôt le VoIP sur l&#039;iPod touch ?</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=2624d6a7978d985bfce59fe0abd3894b</link>
<description><![CDATA[<div class="field_vignette"></div><p>Le touch est capable de recevoir du son.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Bient%C3%B4t+le+VoIP+sur+l%27iPod+touch+%3F&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D2624d6a7978d985bfce59fe0abd3894b" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Bient%C3%B4t+le+VoIP+sur+l%27iPod+touch+%3F&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D2624d6a7978d985bfce59fe0abd3894b" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=8ec3b3869ba039ec0f04c9ecf18b2141"/>]]></description>
<comments>http://www.svmmac.fr/news/4393/bientot_le_voip_sur_lipod_touch#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/bidouille/tags/bidouille">bidouille</category>
<category domain="http://www.svmmac.fr/ipod_touch/tags/ipod_touch">ipod touch</category>
<category domain="http://www.svmmac.fr/micro/tags/micro">micro</category>
<category domain="http://www.svmmac.fr/voip/tags/voip">voip</category>
<pubDate>Thu, 22 Nov 2007 23:44:13 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4393/bientot_le_voip_sur_lipod_touch</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>La part de marché de l&#039;iPhone</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=b1d3b0b72dcd675820928415e1050c07</link>
<description><![CDATA[<div class="field_vignette"></div><p>Le marché des smartphones explosent aux USA grâce à Apple.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=La+part+de+march%C3%A9+de+l%27iPhone&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Db1d3b0b72dcd675820928415e1050c07" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=La+part+de+march%C3%A9+de+l%27iPhone&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Db1d3b0b72dcd675820928415e1050c07" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=27a1231e627fd8d690142aa7f17644c0"/>]]></description>
<comments>http://www.svmmac.fr/news/4392/la_part_de_marche_de_liphone#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/iphone/tags/iphone">iPhone</category>
<category domain="http://www.svmmac.fr/parte_de_marche/tags/parte_de_marche">parte de marché</category>
<category domain="http://www.svmmac.fr/vente/tags/vente">vente</category>
<pubDate>Thu, 22 Nov 2007 22:57:48 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4392/la_part_de_marche_de_liphone</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>La presse PC et le Mac</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=6adc25c8efe5d650ffeb96230b55b69f</link>
<description><![CDATA[<div class="field_vignette"></div><p>Apple séduit de plus en plus la presse PC.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=La+presse+PC+et+le+Mac&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D6adc25c8efe5d650ffeb96230b55b69f" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=La+presse+PC+et+le+Mac&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D6adc25c8efe5d650ffeb96230b55b69f" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=24d840bef72a85db2d990babe44c89bd"/>]]></description>
<comments>http://www.svmmac.fr/news/4391/la_presse_pc_et_le_mac#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/classement/tags/classement">classement</category>
<category domain="http://www.svmmac.fr/pc/tags/pc">pc</category>
<category domain="http://www.svmmac.fr/presse/tags/presse">presse</category>
<pubDate>Thu, 22 Nov 2007 00:14:33 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4391/la_presse_pc_et_le_mac</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>Des iPhone libres de tout contrat</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=ac3c52a3c757ba0f67f31a3c08ed5a14</link>
<description><![CDATA[<div class="field_vignette"></div><p>T-Mobile vendra bien des iPhone déverrouillés en Allemagne.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Des+iPhone+libres+de+tout+contrat&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Dac3c52a3c757ba0f67f31a3c08ed5a14" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Des+iPhone+libres+de+tout+contrat&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Dac3c52a3c757ba0f67f31a3c08ed5a14" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=af986692b8b9339a879ed58e478be812"/>]]></description>
<comments>http://www.svmmac.fr/news/4390/des_iphone_libres_de_tout_contrat#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/allemagne/tags/allemagne">allemagne</category>
<category domain="http://www.svmmac.fr/desimlocke/tags/desimlocke">désimlocké</category>
<category domain="http://www.svmmac.fr/deverrouille/tags/deverrouille">déverrouillé</category>
<category domain="http://www.svmmac.fr/iphone/tags/iphone">iPhone</category>
<category domain="http://www.svmmac.fr/t_mobile/tags/t_mobile">t-mobile</category>
<pubDate>Wed, 21 Nov 2007 23:43:15 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4390/des_iphone_libres_de_tout_contrat</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>Première sur iTunes</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=bf8026c665dc353b82bb7750e1acf450</link>
<description><![CDATA[<div class="field_vignette"></div><p>Le film &quot;Purple Violets&quot; sort directement sur l&#39;ITMS.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Premi%C3%A8re+sur+iTunes&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Dbf8026c665dc353b82bb7750e1acf450" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Premi%C3%A8re+sur+iTunes&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3Dbf8026c665dc353b82bb7750e1acf450" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img width="1" height="1" alt="" src="http://rss1.mediafed.com/feed/svmmac/news/img.gif?img=f6b3c2a83e9c97bc282965177475c929"/>]]></description>
<comments>http://www.svmmac.fr/news/4386/premiere_sur_itunes#comment</comments>
<category domain="http://www.svmmac.fr/categories/news">News</category>
<category domain="http://www.svmmac.fr/film/tags/film">film</category>
<category domain="http://www.svmmac.fr/tags/itunes">iTunes</category>
<category domain="http://www.svmmac.fr/premiere/tags/premiere">premiere</category>
<category domain="http://www.svmmac.fr/purple_violets/tags/purple_violets">purple violets</category>
<pubDate>Tue, 20 Nov 2007 23:20:45 +0100</pubDate>
<guid isPermaLink="false">http://www.svmmac.fr/news/4386/premiere_sur_itunes</guid>
<dc:creator>Thibault Marchal</dc:creator>
</item>
<item>
<title>Apple booste (un peu) .mac</title>
<link>http://rss1.mediafed.com/feed/svmmac/news/?link=1ecf5277aee2ca88135e72de4d432038</link>
<description><![CDATA[<div class="field_vignette"></div><p>Le service d&#39;Apple évolue enfin.</p>
]]><![CDATA[<p><a href="http://www.mediafed.com/sendemail2_fr.html?title=Apple+booste+%28un+peu%29+.mac&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D1ecf5277aee2ca88135e72de4d432038" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/partagez.gif" border="0" /></a>&nbsp;&nbsp;
<a href="http://www.mediafed.com/bookmark_fr.html?title=Apple+booste+%28un+peu%29+.mac&link=http%3A%2F%2Frss1.mediafed.com%2Ffeed%2Fsvmmac%2Fnews%2F%3Flink%3D1ecf5277aee2ca88135e72de4d432038" target="_blank"><img src="http://rss1.mediafed.com/xsl/images/bookmark.gif" border="0" /></a></p>
]]><![CDATA[<img wi

View File

View File

@ -0,0 +1,129 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Actus ciné : Vu sur le web</title>
<link>http://www.allocine.fr/article/rubarticle_gen_crubrique=23012.html</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Thu, 29 May 2008 23:20:00 GMT</lastBuildDate>
<pubDate>Thu, 29 May 2008 23:20:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine/vusurleweb" type="application/rss+xml" /><item>
<category />
<title>"He's just not that into you" : la bande-annonce</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/299918987/fichearticle_gen_carticle=18422720.html</link>
<description>&lt;p&gt;Ribambelle de stars pour la nouvelle comédie romantique pop et acidulée "He's just not that into you", dans lequel il est question d'amour, de sexe et de rendez-vous ratés. La bande-annonce est en ligne! &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18422720.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 28 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/299918987" height="1" width="1"/&gt;</description>
<pubDate>Wed, 28 May 2008 17:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18422720</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/70/66/18798888.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18422720.html</feedburner:origLink></item>
<item>
<category />
<title>"Choke": la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/299761223/fichearticle_gen_carticle=18422713.html</link>
<description>&lt;p&gt;Enfin en ligne, les premières images de "Choke", l'adaptation du roman du même nom écrit par Chuck Palahniuk, déjà auteur du "Fight Club" rendu célèbre par David Fincher.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18422713.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 28 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/299761223" height="1" width="1"/&gt;</description>
<pubDate>Wed, 28 May 2008 12:55:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18422713</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/61/11/18943539.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18422713.html</feedburner:origLink></item>
<item>
<category />
<title>"The Curious Case of Benjamin Button" : la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/298322181/fichearticle_gen_carticle=18422596.html</link>
<description>&lt;p&gt;Plus qu'attendu, "The Curious Case of Benjamin Button" se dévoile (enfin) en ligne, à travers une première bande-annonce. L'occasion d'avoir un premier aperçu du rajeunissement que subit Brad Pitt dans le nouveau film de David Fincher.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18422596.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 26 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/298322181" height="1" width="1"/&gt;</description>
<pubDate>Mon, 26 May 2008 13:17:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18422596</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18361776.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18422596.html</feedburner:origLink></item>
<item>
<category />
<title>"Eagle Eye" : la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/295725403/fichearticle_gen_carticle=18422413.html</link>
<description>&lt;p&gt;Découvrez les premières images de "Eagle Eye", dans lequel D.J. Caruso ("Paranoïak") plonge Shia LaBeouf au coeur des rouages d'une sombre machination.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18422413.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 22 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/295725403" height="1" width="1"/&gt;</description>
<pubDate>Thu, 22 May 2008 12:18:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18422413</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/36/87/18929351.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18422413.html</feedburner:origLink></item>
<item>
<category />
<title>"Australia" : la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/293422226/fichearticle_gen_carticle=18422177.html</link>
<description>&lt;p&gt;Nicole Kidman et Hugh Jackman façon cowboys en Australie, c'est la bande-annonce d'"Australia", le dernier film de Baz Luhrmann, qui s'affiche enfin sur la toile. &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18422177.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 19 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/293422226" height="1" width="1"/&gt;</description>
<pubDate>Mon, 19 May 2008 11:21:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18422177</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/57/07/18939922.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18422177.html</feedburner:origLink></item>
<item>
<category />
<title>"Voyage au centre de la terre 3D" : bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/292173576/fichearticle_gen_carticle=18422077.html</link>
<description>&lt;p&gt;Brendan Fraser reconverti en géologue se lance avec sa petite famille dans un périlleux "Voyage au centre de la Terre" à la sauce 3D . Humour et effets spéciaux High Tech au rendez-vous. Action !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18422077.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Samedi 17 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/292173576" height="1" width="1"/&gt;</description>
<pubDate>Sat, 17 May 2008 10:30:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18422077</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/56/19/18939439.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18422077.html</feedburner:origLink></item>
<item>
<category />
<title>"Vicky Cristina Barcelona" : la bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/290181101/fichearticle_gen_carticle=18421872.html</link>
<description>&lt;p&gt;Avant son passage par les marches du Festival de Cannes, le nouveau Woody Allen, "Vicky Cristina Barcelona", se dévoile sur la toile, à travers une première bande-annonce. Au programme : sexe, tromperies et jalousie, sous le soleil de Barcelone. Caliente !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18421872.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 14 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/290181101" height="1" width="1"/&gt;</description>
<pubDate>Wed, 14 May 2008 13:19:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18421872</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/54/72/18938737.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18421872.html</feedburner:origLink></item>
<item>
<category />
<title>"Igor" : la bande-annonce</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/288439076/fichearticle_gen_carticle=18421677.html</link>
<description>&lt;p&gt;Quand "Le Bossu de Notre-Dame" croise le héros de "Jimmy Neutron", ça donne "Igor", nouvelle pitrerie animée qui sortira fin décembre sur les écrans français. La bande-annonce est d'ores et déjà en ligne. &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18421677.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 12 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/288439076" height="1" width="1"/&gt;</description>
<pubDate>Mon, 12 May 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18421677</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/53/22/18938006.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18421677.html</feedburner:origLink></item>
<item>
<category />
<title>Première photo de Josh Brolin en George Bush !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/286795496/fichearticle_gen_carticle=18421628.html</link>
<description>&lt;p&gt;Alors que son casting ne cesse de s'étoffer, "W.", le biopic d'Oliver Stone sur l'actuel président américain, s'affiche enfin sur la toile via une première photo de Josh Brolin en George W. Bush. Attention, ressemblance plus que frappante !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18421628.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 9 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/286795496" height="1" width="1"/&gt;</description>
<pubDate>Fri, 9 May 2008 14:30:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18421628</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/52/60/18937816.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18421628.html</feedburner:origLink></item>
<item>
<category />
<title>"L'Incroyable Hulk" : nouvelle bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/250858623/fichearticle_gen_carticle=18418759.html</link>
<description>&lt;p&gt;Le géant vert est de retour ! Fallait pas énerver Edward Norton. Ni Tim Roth d'ailleurs...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18418759.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 8 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/250858623" height="1" width="1"/&gt;</description>
<pubDate>Thu, 8 May 2008 07:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18418759</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/19/58/18918001.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18418759.html</feedburner:origLink></item>
<item>
<category />
<title>"Love Gourou" : nouvelle bande-annonce !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/244891655/fichearticle_gen_carticle=18418138.html</link>
<description>&lt;p&gt;Découvrez dès maintenant les nouvelles images de "Love Gourou", la nouvelle comédie (forcément déjantée) de Mike Myers.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18418138.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 6 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/244891655" height="1" width="1"/&gt;</description>
<pubDate>Tue, 6 May 2008 12:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18418138</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/12/43/18912759.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18418138.html</feedburner:origLink></item>
<item>
<category />
<title>Bande-annonce : "Beverly Hills Chihuahua"</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/284543327/fichearticle_gen_carticle=18421400.html</link>
<description>&lt;p&gt;50 % guerrier, 50 % amoureux, 100 % chihuahua : le héros du prochain film des studios Disney se dévoile, à travers les premières images de "Beverly Hills Chihuahua", disponibles sur la toile. Une bande-annonce qui a du chien, forcément...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18421400.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 6 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/284543327" height="1" width="1"/&gt;</description>
<pubDate>Tue, 6 May 2008 11:45:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinevusurleweb18421400</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/50/23/18936502.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18421400.html</feedburner:origLink></item>
<item>
<category />
<title>Nouvelle bande-annonce pour le prochain Shyamalan !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~3/229590717/fichearticle_gen_carticle=18416744.html</link>
<description>&lt;p&gt;Découvrez la bande-annonce de "Phénomènes", le nouveau thriller surnaturel de M. Night Shyamalan, avec Mark Wahlberg en vedette. Inquiétant...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416744.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Lundi 5 Mai 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/vusurleweb/~4/229590717" height="1" width="1"/&gt;</de

View File

View File

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds2.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>FreeBSD - the unknown Giant</title>
<link>http://www.freebsdnews.net</link>
<description>FreeBSD is a free, open-source and UNIX-like operating system. Though relatively unknown, its a performing and powerful work-horse, capable of coping with massive work-loads whilest remaining fast, ultra-stable and rock-solid. Blogging about FreeBSD and operating systems based on this versatile, safe and secure OS, I want to generate more interest in FreeBSD and its dependants. If you need a reliable, rock-solid and performing system for either your desktop or servers, consider FreeBSD!</description>
<pubDate>Sat, 06 Jun 2009 10:25:55 +0000</pubDate>
<generator>http://wordpress.org/?v=2.7.1</generator>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds2.feedburner.com/FreeBSD-TheUnknownGiant" type="application/rss+xml" /><feedburner:emailServiceId>FreeBSD-TheUnknownGiant</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
<title>40 years of Unix</title>
<link>http://feedproxy.google.com/~r/FreeBSD-TheUnknownGiant/~3/H3h-MuwFHWc/</link>
<comments>http://www.freebsdnews.net/2009/06/06/40-years-unix/#comments</comments>
<pubDate>Sat, 06 Jun 2009 10:25:55 +0000</pubDate>
<dc:creator>Gerard</dc:creator>
<category><![CDATA[UNIX]]></category>
<guid isPermaLink="false">http://www.freebsdnews.net/?p=1759</guid>
<description>Timeline: 40 years of Unix 
Unix turns 40: The past, present and future of a revolutionary OS
On the shoulders of giants: Three Unix movers and shakers
The Unix family tree
This is a post by Gerard van Essen from: FreeBSD - the unknown Giant
40 years of Unix
&lt;p&gt;&lt;br /&gt;
This is a post by &lt;a href="www.freebsdnews.net/about?PHPSESSID=4e785f16c047134a32427c09a0655138"&gt;Gerard van Essen&lt;/a&gt; from: &lt;a href="http://www.freebsdnews.net"&gt;FreeBSD - the unknown Giant&lt;/a&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.freebsdnews.net/2009/06/06/40-years-unix/"&gt;40 years of Unix&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/FFQDFyYouhHccKg7ygzRmZX6-cc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FFQDFyYouhHccKg7ygzRmZX6-cc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/FFQDFyYouhHccKg7ygzRmZX6-cc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FFQDFyYouhHccKg7ygzRmZX6-cc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds2.feedburner.com/~ff/FreeBSD-TheUnknownGiant?a=H3h-MuwFHWc:9ewadZNzHy4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds2.feedburner.com/~ff/FreeBSD-TheUnknownGiant?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds2.feedburner.com/~ff/FreeBSD-TheUnknownGiant?a=H3h-MuwFHWc:9ewadZNzHy4:qj6IDK7rITs"&gt;&lt;img src="http://feeds2.feedburner.com/~ff/FreeBSD-TheUnknownGiant?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds2.feedburner.com/~ff/FreeBSD-TheUnknownGiant?a=H3h-MuwFHWc:9ewadZNzHy4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds2.feedburner.com/~ff/FreeBSD-TheUnknownGiant?i=H3h-MuwFHWc:9ewadZNzHy4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds2.fe

View File

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Actus ciné : Ca tourne !</title>
<link>http://www.allocine.fr/article/rubarticle_gen_crubrique=23001.html</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Wed, 13 Aug 2008 17:54:00 GMT</lastBuildDate>
<pubDate>Wed, 13 Aug 2008 17:54:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine/catourne" type="application/rss+xml" /><item>
<category />
<title>Charlotte Gainsbourg se fait peur chez Lars Von Trier</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/363814466/fichearticle_gen_carticle=18427304.html</link>
<description>&lt;p&gt;L'actrice française Charlotte Gainsbourg s'est engagée, aux côtés de Willem Dafoe, pour tenir le rôle principal du nouveau film de Lar Von Trier : "Antichrist". Un thriller à tendance horrifique...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18427304.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 13 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/363814466" height="1" width="1"/&gt;</description>
<pubDate>Wed, 13 Aug 2008 12:55:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18427304</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18388967.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18427304.html</feedburner:origLink></item>
<item>
<category />
<title>Cécile de France et Fred Testot aux amphets</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/363755201/fichearticle_gen_carticle=18427294.html</link>
<description>&lt;p&gt;Cécile de France, Fred Testot, Julien Boisselier et Foued Nassah seront réunis devant la caméra de Nicolas Boukhrief pour son prochain film policier, "Gardiens de l'ordre", qui traitera du trafic d'amphétamines.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18427294.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 13 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/363755201" height="1" width="1"/&gt;</description>
<pubDate>Wed, 13 Aug 2008 11:25:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18427294</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/12/22/18753582.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18427294.html</feedburner:origLink></item>
<item>
<category />
<title>Billy Bob... Krueger ???</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/362863400/fichearticle_gen_carticle=18427217.html</link>
<description>&lt;p&gt;C'est la rumeur du moment : Billy Bob Thornton pourrait se glisser sous les cicatrices et les griffes de Freddy Krueger dans le remake des "Griffes de la Nuit".&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18427217.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 12 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/362863400" height="1" width="1"/&gt;</description>
<pubDate>Tue, 12 Aug 2008 13:35:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18427217</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18602024.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18427217.html</feedburner:origLink></item>
<item>
<category />
<title>Angelina Cruise Vs. Tom Jolie</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/362846587/fichearticle_gen_carticle=18427192.html</link>
<description>&lt;p&gt;La jeune maman Angelina Jolie est en négociations pour remplacer Tom Cruise dans le film d'espionnage "Edwin A. Salt" de Phillip Noyce. Dans le même temps, Tom Cruise est annoncé en tête d'affiche d'une comédie : "Food Fight".&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18427192.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 12 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/362846587" height="1" width="1"/&gt;</description>
<pubDate>Tue, 12 Aug 2008 13:15:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18427192</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/21/19/18837403.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18427192.html</feedburner:origLink></item>
<item>
<category />
<title>Ca tourne ! Les projets &amp; castings de la semaine...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/360816300/fichearticle_gen_carticle=18426679.html</link>
<description>&lt;p&gt;Pendant la semaine, le petit monde du cinéma s'est activé et les projets se sont multipliés : petit tour d'horizon de la planète cinoche !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426679.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Dimanche 10 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/360816300" height="1" width="1"/&gt;</description>
<pubDate>Sun, 10 Aug 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18426679</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/05/36/18969952.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426679.html</feedburner:origLink></item>
<item>
<category />
<title>Brad Pitt dans le prochain Tarantino !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/359480356/fichearticle_gen_carticle=18426989.html</link>
<description>&lt;p&gt;C'est désormais officiel, Brad Pitt vient de signer pour tenir le rôle du lieutenant Aldo Raine dans le prochain film évènement de Quentin Trantino, "Inglorious Bastards." Retrouvez également toutes les dernières infos sur le casting du film...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426989.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 8 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/359480356" height="1" width="1"/&gt;</description>
<pubDate>Fri, 8 Aug 2008 16:40:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18426989</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18361776.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426989.html</feedburner:origLink></item>
<item>
<category />
<title>Thélonious Monk aura son film !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/359503295/fichearticle_gen_carticle=18426877.html</link>
<description>&lt;p&gt;Le réalisateur d'origine cubaine Leon Ichaso dirigera prochainement le biopic de Thelonious Monk. Et pour endosser le rôle du fameux jazzman, Wesley Snipes et Denzel Washington sont premiers sur la liste des favoris !&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426877.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 8 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/359503295" height="1" width="1"/&gt;</description>
<pubDate>Fri, 8 Aug 2008 15:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18426877</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/45/26/18933940.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426877.html</feedburner:origLink></item>
<item>
<category />
<title>Claude Perron face à une "Horde" de zombies</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/359286913/fichearticle_gen_carticle=18426965.html</link>
<description>&lt;p&gt;Claude Perron, Jean-Pierre Martins, Aurélien Recoing et Alain Figlarz joueront dans "La Horde", un polar horrifique de Yannick Dahan et Benjamin Rocher mêlant gunfights et zombies.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426965.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Vendredi 8 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/359286913" height="1" width="1"/&gt;</description>
<pubDate>Fri, 8 Aug 2008 11:35:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18426965</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/04/41/18969534.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426965.html</feedburner:origLink></item>
<item>
<category />
<title>Un remake de "Suspiria" pour Natalie Portman ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/358298562/fichearticle_gen_carticle=18426907.html</link>
<description>&lt;p&gt;Natalie Portman, vu dernièrement dans "Deux soeurs pour un roi", aurait pris en main le projet de remake du film culte de Dario Argento, "Suspiria". Elle devrait interpréter le rôle principal et même produire le film...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426907.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 7 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~4/358298562" height="1" width="1"/&gt;</description>
<pubDate>Thu, 7 Aug 2008 11:19:00 GMT</pubDate>
<guid isPermaLink="false">actualitescinecatourne18426907</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18351927.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426907.html</feedburner:origLink></item>
<item>
<category />
<title>Gilliam relance "Don Quichotte" !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/catourne/~3/357321378/fichearticle_gen_carticle=18426844.html</link>
<description>&lt;p&gt;Alors qu'il avait été forcé d'abandonner le tournage de

View File

View File

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.macbidouille.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.macbidouille.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>MacBidouille.com</title>
<link>http://www.macbidouille.com/</link>
<description>Bidouille Hardware sur Mac</description>
<language>fr</language>
<copyright>Copyright 2001-2002, Macbidouille.com</copyright>
<managingEditor>lionel@macbidouille.com (Lionel)</managingEditor>
<webMaster>w00kie@macbidouille.com (w00kie)</webMaster>
<pubDate>Thu, 20 Dec 2007 11:57:58 +0100</pubDate>
<lastBuildDate>Thu, 20 Dec 2007 18:26:52 +0100</lastBuildDate>
<generator>Custom RSS Generator by w00kie</generator>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://www.macbidouille.com/macbidouille.rss" type="application/rss+xml" /><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site, subject to copyright and fair use.</feedburner:browserFriendly><item>
<title>Une légende est née</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/203348355/</link>
<pubDate>Thu, 20 Dec 2007 11:57:58 +0100</pubDate>
<author>ewok@macbidouille.com (Ewok)</author>
<description>Le fameux site de rumeurs et d'informations sur Apple, ThinkSecret, ferme ses portes. &lt;a href="http://en.wikipedia.org/wiki/Nick_dePlume" target="_blank"&gt;&lt;i&gt;Nick de Plume&lt;/i&gt;&lt;/a&gt;, jeune rédacteur en chef et étudiant, avait été poursuivi en justice par Apple il y a près de 3 ans (&lt;a href="http://www.macbidouille.com/news/2005-01-18/#10309" target="_blank"&gt;ICI&lt;/a&gt;), pour avoir annoncé des produits avant leur sortie.&lt;br /&gt;
&lt;br /&gt;
Aujourd'hui un accord à l'amiable a été trouvé, la publication sur ThinkSecret a cessé. Les sources d'information (des employés ?) n'ont pas été révélées. Néanmoins, si Apple apprend comment éviter les fuites, certaines personnes risquent de perdre leur poste.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=ftRK5i"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=ftRK5i" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/203348355" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=248869&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15512</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-20%2F%2315512</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-20/#15512</feedburner:origLink></item>
<item>
<title>SFR a racheté Neuf Cegetel</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/203296931/</link>
<pubDate>Thu, 20 Dec 2007 10:11:02 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>C'est maintenant officiel, SFR qui détenait déjà un peu plus de 40% de Neuf Cegetel a continué ses emplettes pour en devenir l'actionnaire largement majoritaire.&lt;br /&gt;
Après Orange, SFR devient donc également un opérateur universel proposant Internet, télévision, téléphonie fixe et mobile.&lt;br /&gt;
On ignore si la marque commerciale Neuf va subsister ou si tous les produits seront commercialisés sous la seule marque SFR.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=b5ueed"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=b5ueed" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/203296931" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=248857&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15511</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-20%2F%2315511</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-20/#15511</feedburner:origLink></item>
<item>
<title>Les faux iPod nano 3 sont arrivés en Europe</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/203207633/</link>
<pubDate>Thu, 20 Dec 2007 06:38:51 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>Nous donnons la parole à Nicolas, qui a pris la photo en Belgique.&lt;br /&gt;
&lt;br /&gt;
&lt;Blockquote&gt;ca y est, les faux ipods sont là!&lt;br /&gt;
Le micropod et le mini pod (et le shufflepod???) !&lt;br /&gt;
Prix de 42 à 89 euros les modèles!&lt;br /&gt;
Même la neige autour est fausse!&lt;br /&gt;
&lt;/blockquote&gt;
&lt;br /&gt;
&lt;img src="http://files.macbidouille.com/news/200712/fauxpod.jpg" class="centered"/&gt;&lt;br /&gt;
La ressemblance est encore bien plus poussée sur ce dernier modèle qu'elle ne l'était pour les générations précédentes d'iPod copiés, tout particulièrement au niveau de la molette passée de grossière à strictement identique.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=nijnhS"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=nijnhS" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/203207633" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=248844&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15510</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-20%2F%2315510</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-20/#15510</feedburner:origLink></item>
<item>
<title>Face aux faiblesses d'AMD, Intel ralentit les sorties de prod</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/203207635/</link>
<pubDate>Thu, 20 Dec 2007 06:38:37 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>&lt;p class="source"&gt;Source : &lt;a href="http://www.digitimes.com/" target=_blank&gt;Digitimes&lt;/a&gt;&lt;/p&gt;AMD est dans une très mauvaise passe. La société se retrouve dans une situation financière critique suite à un rachat d'ATI qui s'est avéré une mauvaise affaire et se trouve surtout dans l'incapacité de produire des processeurs capables de lutter contre ceux d'Intel.&lt;br /&gt;
Devant cette situation, Intel aurait décidé de prendre son temps et de repousser la sortie de certains processeurs, des 4 coeurs haut de gamme préférant les garder sous le coude pour le jour où AMD aurait quelque chose de plus conséquent à mettre à son catalogue. En résumé, ils ne veulent pas gâcher ces jokers et se les réservent pour plus tard.&lt;br /&gt;
Si cette situation n'aura pas d'incidence sur l'évolution des Mac dans les prochains mois, elle prouve que la concurrence est un des plus gros moteurs de l'innovation et que sans des concurrents capables de le titiller, Intel risque de n'assurer que le minimum et de prendre son temps pour faire évoluer ses produits.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=xr7dyN"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=xr7dyN" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/203207635" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=248843&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15509</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-20%2F%2315509</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-20/#15509</feedburner:origLink></item>
<item>
<title>Des graveurs DVD de portables plus rapides</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/203207638/</link>
<pubDate>Thu, 20 Dec 2007 06:38:11 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>&lt;p class="source"&gt;Source : &lt;a href="http://www.cdrinfo.com" target=_blank&gt;CDR Info&lt;/a&gt;&lt;/p&gt;Depuis un bon moment, les graveurs de DVD des ordinateurs portables sont bloqués à la vitesse de 8x là où l'on atteint maintenant 20x.&lt;br /&gt;
L'un des obstacle à l'augmentation de la vitesse de gravure a été levé par Sharp.&lt;br /&gt;
&lt;br /&gt;
&lt;img src="http://files.macbidouille.com/news/200712/070314_2.jpg" class="centered"/&gt;&lt;br /&gt;
Ils ont réussi à fabriquer une diode laser ultra compacte dont la puissance est de 400 mW au lieu des 350 que l'on avait jusqu'à maintenant. La gravure 12x est donc à portée de main, tout du moins si les autres composants arrivent à évoluer. C'est en particulier le cas des moteurs qui devront faire tourner les disques plus vite sans que pour autant augmente le risque de casse en cas de choc du portable.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=vAMisP"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=vAMisP" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/203207638" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=248842&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15508</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-20%2F%2315508</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-20/#15508</feedburner:origLink></item>
<item>
<title>1% d'iPhone sur Macbidouille</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/203207641/</link>
<pubDate>Thu, 20 Dec 2007 06:37:49 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>L'un des avantages les plus importants dans l'utilisation quotidienne de l'iPhone par rapport à tous les autres "téléphones mobiles" est de pouvoir surfer sur Internet dans des conditions de confort satisfaisantes. On peut afficher n'importe quelle page et prendre plaisir à la lire sans avoir besoin d'en visualiser une version réduite et dénuée de mise en page.&lt;br /&gt;
Ainsi, sur le total des visiteurs fréquentant Macbidouille, 1,08% le font maintenant depuis leur iPhone.&lt;br /&gt;
Cette arrivée s'est faite en deux temps, mais très rapidement. Une première vague d'iPhones a débarqué au lendemain des lancements Anglais et Allemands. La seconde vague a été enregistrée les 29 et 30 novembre après le lancement français de l'appareil.&lt;br /&gt;
Pour vous donner une idée la part de Palm OS est stable à 0,01%, celle de Symbian à 0,03% et celle des différentes versions de Windows mobile à 0,08%.&lt;br /&gt;
Nous allons suivre dans les prochains mois cette progression afin de savoir si ce démarrage en fanfare préfigure réellement un nouveau moyen de consommer internet avec lequel il faudra compter.&lt;br /&gt;
Pour terminer, notez qu' l'iPod touch n'est pas en reste et représente 0,34% des visites.
&lt;p&gt;&lt;a href="http://feeds.macbidouille.com/~a/macbidouille?a=UyBCfd"&gt;&lt;img src="http://feeds.macbidouille.com/~a/macbidouille?i=UyBCfd" border="0"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.macbidouille.com/~r/macbidouille/~4/203207641" height="1" width="1"/&gt;</description>
<comments>http://forum.macbidouille.com/index.php?showtopic=248841&amp;view=getnewpost</comments>
<guid isPermaLink="false">macbidouille.com#15507</guid>
<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetItemData?uri=macbidouille&amp;itemurl=http%3A%2F%2Fwww.macbidouille.com%2Fnews%2F2007-12-20%2F%2315507</feedburner:awareness><feedburner:origLink>http://www.macbidouille.com/news/2007-12-20/#15507</feedburner:origLink></item>
<item>
<title>L'iPod Touch n'est pas seulement un iPhone castré</title>
<link>http://feeds.macbidouille.com/~r/macbidouille/~3/202875157/</link>
<pubDate>Wed, 19 Dec 2007 18:59:44 +0100</pubDate>
<author>lionel@macbidouille.com (Lionel)</author>
<description>&lt;p class="source"&gt;Source : &lt;a href="http://www.digitimes.com/" target=_blank&gt;Digitimes&lt;/a&gt;&lt;/p&gt;iSuppli s'est penché sur l'iPod Touch et l'a décortiqué. Ils estiment ainsi que le modèle 8 Go vendu 299$ coûte en fait à Apple 155,04$.&lt;br /&gt;
Ils ont aussi constaté que contrairement à ce l'on peut penser, cet appareil n'est pas seulement un iPhone auquel on a retiré la partie téléphonie et le bluetoo

View File

@ -0,0 +1,163 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="http://www.musiciens.biz/xml/rss.xsl" type="text/xsl" media="screen"?>
<?xml-stylesheet href="http://www.musiciens.biz/xml/rss.css" type="text/css" media="screen"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:photo="http://www.pheed.com/pheed/">
<channel>
<title>Musiciens.biz, mp3, musique à écouter ou télécharger, culture alternative, podcast</title>
<description><![CDATA[Paru sur Musiciens.biz, le portail des musiciens...]]></description>
<link>http://www.musiciens.biz</link>
<language>fr</language>
<dc:date>2007-02-26T01:02:54+01:00</dc:date>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="alternate" href="http://www.musiciens.biz/xml/atom.xml" type="text/xml" />
<item>
<guid isPermaLink="false">tag:www.musiciens.biz,2007:rss-572453</guid>
<title>Katerine en concert à Bourg Lès Valence, notre compte rendu !</title>
<pubDate>Sun, 25 Feb 2007 18:22:00 +0100</pubDate>
<dc:language>fr</dc:language>
<dc:creator>Tom Gardano &amp; Mike</dc:creator>
<dc:subject>Chroniques et interviews</dc:subject>
<description><![CDATA[Nous avions dépêché Tom et Mike au concert de Katerine organisé par Zigoto Production vendredi 23 février à Bourg-Lès-Valence. Voici les impressions de nos envoyés spéciaux extatiques…
]]></description>
<content:encoded>
<![CDATA[
<div>
Il est à peu près 20 h 30 quand « Fruit Veg » (la première partie) débarque sur scène. Dégaine rétro-modernes, univers de contes de fées pour chansons légèrement déjantées, mêlant pop ; musique traditionnelle de l'ouest et de l'est et psychédélisme léger. <br />
Vers les 21 h 30, le « bonhomme Katerine » se fait attendre. En effet, il arrive avec une heure de retard après les réclamations d'un public impatient d'assister au cirque. Au rythme d'un show 100% rock'n roll, ponctuées d'interventions hilarantes de l'animal, les chansons s'enchaînent et gagnent le public, déjà conquis en majorité. Son jeu de scène sans gêne et complètement débridé y est pour beaucoup. En plus la musique tourne et le groupe joue à merveille. Vers la fin du concert, on peut assister à un interlude solo du bonhomme, interlude qui est en fait un exercice de compositions instantanées très surréalistes, absurdes mais surtout hilarantes. A la fin du show, sa peinture a bien dégouliné, des éclats de rire ont éclaté et surtout beaucoup de monde a chanté, dansé : j'adore ! <br />
</div>
<br style="clear:both;"/>
]]>
</content:encoded>
<link>http://www.musiciens.biz/Katerine-en-concert-a-Bourg-Les-Valence,-notre-compte-rendu-!_a1570.html</link>
</item>
<item>
<guid isPermaLink="false">tag:www.musiciens.biz,2007:rss-572143</guid>
<title>The Plimsouls à des millions miles away</title>
<pubDate>Sat, 24 Feb 2007 18:48:00 +0100</pubDate>
<dc:language>fr</dc:language>
<dc:creator>musiciens .biz</dc:creator>
<dc:subject>La madeleine</dc:subject>
<description><![CDATA[La Madeleine revient sur l'épopée des Plimsouls, superbe combo emmené par Peter Case dont nous vous proposons une vidéo : "A million miles away"]]></description>
<content:encoded>
<![CDATA[
<div>
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/0Tys5rKyzSc"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/0Tys5rKyzSc" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
</div>
<br style="clear:both;"/>
<div>
Peter Case, après les Nerves (groupe formé avec Jack Lee et Paul Collins et auteurs d'un EP séminal sur lequel on trouvait la version originale du futur tube de Blondie "Hanging on the telephone), forma the Plimsouls avec Eddie Munoz, Lou Ramirez et Dave Pahoa. Le premier album, "the Plimsouls", le voyait poser les fondations de ce qui allait faire leur style, des harmonies inspirées des groupes anglais des sixties, des arpèges de rickenbacker, un rien de soul ou de psychédelisme, et surtout, une forte dose d'énergie. "A million miles away" sortit sur un single avant de figurer sur" Everywhere at once" leur deuxième album paru en 1983. Case quitta le groupe pour entamer une carrière solo à la suite de la sortie de celui-ci. Leur reformation tardive pour un album en 1997 montra les Plimsouls en petite forme.
</div>
<br style="clear:both;"/>
]]>
</content:encoded>
<link>http://www.musiciens.biz/The-Plimsouls-a-des-millions-miles-away_a1569.html</link>
</item>
<item>
<guid isPermaLink="false">tag:www.musiciens.biz,2007:rss-569506</guid>
<title>Hedwig and The Angry Inch à l'Espace P. Cardin le 7 mars</title>
<pubDate>Fri, 23 Feb 2007 19:21:00 +0100</pubDate>
<dc:language>fr</dc:language>
<dc:creator>alienor@hedwigfrance.com</dc:creator>
<dc:subject>Evènements</dc:subject>
<description><![CDATA[De John Cameron Mitchell & Stephen Trask - Compagnie Frères Poussière.
Dans le cadre de louverture de lédition 2007
du festival « Ici et Demain » de la ville de Paris
Mercredi 7 mars 2007 (20H00)
Espace Pierre Cardin
1-3 av Gabriel Paris 8e
]]></description>
<content:encoded>
<![CDATA[
<div><b>Représentation exceptionnelle, et gratuite!</b></div>
<div>
<P>Créée à New York en 1997, la comédie musicale rock Hedwig and the Angry Inch<BR>rapidement connu sur scène un succès sans précédent jusqu'à son adaptation au cinéma<BR>2001.<BR>La rockeuse déjantée raconte en musique son enfance de petit garçon à Berlin Est,<BR>opération et son destin volé de star aux Etats-Unis. Son histoire a fait le tour du monde<BR>avant d'atterrir pour la première fois en France en 2006 : elle vous invite à découvrir<BR>show qui emprunte à la fois à David Bowie, Platon et Rocky Horror Show&#8230;<BR><BR><STRONG>Reservation obligatoire</STRONG><BR><EM>Merci d'envoyer un mail avec vos coordonnées (nom, adresse,<BR>numéros de téléphone) ainsi que le nombre de places que vous souhaitez.<BR>Contact production : Alienor Bressac </EM><A href="mailto:alienor@hedwigfrance.com"><EM>alienor@hedwigfrance.com</EM></A><BR><BR>Plus d'infos : <A href="http://www.hedwigfrance.com">www.hedwigfrance.com</A></P>
</div>
<br style="clear:both;"/>
]]>
</content:encoded>
<link>http://www.musiciens.biz/Hedwig-and-The-Angry-Inch-a-l-Espace-P-Cardin-le-7-mars_a1568.html</link>
</item>
<item>
<guid isPermaLink="false">tag:www.musiciens.biz,2007:rss-566337</guid>
<title>Jazz Ô Zèbre 1ère édition</title>
<pubDate>Tue, 20 Feb 2007 07:31:00 +0100</pubDate>
<dc:language>fr</dc:language>
<dc:creator>musiciens .biz</dc:creator>
<dc:subject>Evènements</dc:subject>
<description><![CDATA[Zèbre de Belleville, Paris 11ème
Jazz Ô Zèbre : un rendez-vous régulier autour d'une musique de
création, un jazz contemporain qui tire ses influences du jazz, du rock et
de la musique contemporaine.]]></description>
<content:encoded>
<![CDATA[
<div>
La programmation s'articule autour d'une musique d'aujourd'hui, un jazz joué par des musiciens dont la culture musicale s'est forgée autant au contact de Led Zeppelin que de John Coltrane, de Messiaen que d'Aretha Franklin, des musiques traditionnelles du Berry-sud que des chants des pygmées AKA. <br />
<br />
<b>Présentation</b> <br />
Le festival Jazz Ô Zèbre a pour ambition de proposer à Paris un rendez vous régulier autour <br />
d'une musique de création, un jazz actuel qui tire ses influences du jazz, du rock et de la <br />
musique contemporaine. Cette musique est en effet, et déjà depuis quelques années, mal <br />
représentée dans la programmation des clubs de jazz parisiens. <br />
L'objectif à moyen terme est de créer un réseau alternatif et complémentaire à celui des <br />
clubs de jazz parisiens qui monopolisent à quelques exceptions près (New Morning, Mains <br />
d'oeuvres, Point éphémère, Studio de l'Ermitage, Le triton &#8230;) la programmation jazz à Paris <br />
intra muros. Une qualité d'accueil variable, des tarifs de billetterie et de consommations <br />
élevés, des conditions techniques, acoustiques et financières parfois discutables sont <br />
reprochés aux clubs de jazz par le public mais aussi par les artistes qui n'ont souvent pas <br />
d'autre choix de programmation à Paris. <br />
Ces éléments sont à l'origine d'un cloisonnement de cette musique et constituent souvent <br />
une barrière difficile à franchir pour un public non nécessairement passionné. Les différents <br />
courants actuels en jazz et musiques improvisées sont largement méconnus du public. <br />
Ici, pour Chi chi et à travers Jazz Ô Zèbre, c'est l'occasion de présenter cinq soirées dans <br />
une salle de concert, à la jauge conséquente (199 places), dans un cadre différent d'un club <br />
de jazz traditionnel ou d'une arrière-salle de café concert. Le Zèbre de Belleville, <br />
probablement l'une des plus belles salles parisiennes de cette catégorie, dispose de <br />
conditions techniques et acoustiques de grande qualité. <br />
Le Zèbre de Belleville est une salle à l'histoire chargée, puisqu'elle est l'une des plus <br />
anciennes de Paris, au départ cinéma de quartier, elle accueille aujourd'hui des spectacles <br />
de cabaret, de cirque et des concerts de chanson française. C'est aussi l'occasion pour cette <br />
salle mythique de s'ouvrir à de nouveaux horizons musicaux et à un nouveau public. Arthur <br />
Schoeller, codirecteur du Zèbre s'implique personnellement dans la première édition de Jazz <br />
Ô Zèbre. <br />
La programmation s'articule autour d'une musique d'aujourd'hui, un jazz joué par des <br />
musiciens dont la culture musicale s'est forgée autant au contact de Led Zeppelin que de <br />
John Coltrane, de Messiaen que d'Aretha Franklin, des musiques traditionnelles du Berrysud <br />
que des chants des pygmées AKA. <br />
Jazz Ô Zèbre fait délibérément la part belle aux créations, aux premières inédites ou encore <br />
aux formations dont l'actualité (sortie de disque, tournée...) renforce l'événement d'un <br />
concert à Paris. On retrouve dans la programmation Jazz Ô Zèbre une &#8220;famille&#8221; de musiciens <br />
dont les parcours se sont souvent croisés au sein de différents projets. Les créations <br />
présentées à Jazz Ô Zèbre associent des musiciens confirmés et reconnus à la jeune <br />
génération prometteuse. <br />
<b>Infos pratiques</b> <br />
Lieu : Zèbre de Belleville <br />
Horaire : 21h - ouverture des portes à 20h30 - Petite restauration et bon vin <br />
Tarif unique : 13 euros <br />
63 Bd de Belleville Paris 11ème - M° Belleville ou Couronnes <br />
Infos &amp; résas : Fnac &amp; Virgin &amp; 01 43 555 555 <br />
[Sites internet :]url:http:// www.lezebre.com <a class="link" href="http://www.chichi.fr" onclick="window.open(this.href,'_blank');return false;">Sites internet </a> <br />
<b>La programmation</b> <br />
14 mars 2007 <br />
François Corneloup solo <br />
François CORNELOUP, saxophoniste, est un artiste-musicien, avec ce que cela suppose <br />
d'engagement de l'individu dans une action collective : l'écoute, une certaine attitude à l'égard de l'autre, et du sens qui s'exprime par cette rencontre; une communication. Goût de donner, goût de risquer, depuis la simplicité d'un thème populaire jusqu'aux constructions les plus vertigineuses... <br />
Dominique Pifarely Trio <br />
avec Julien Padovani (org. hammond), Eric Groleau (batt.) <br />
Cette toute nouvelle formation rassemble deux musiciens déjà aux côtés de Dominique Pifarely dans l'ensemble Dédales un de ses derniers projets : Eric Groleau, batteur au jeu franc et minutieux mélangeant les genres, les timbres et les intentions, et Julien Padovani, pianiste au style enthousiaste et imaginatif et aux nombreuses expériences artistiques. Avec ce trio Dominique Pifarely choisit de rompre avec ses démarches artistiques jusque-là suivies. Ce projet pour lequel les musiciens font preuve d'une énergie spontanée, se veut plus électrique, plus rock, sans perdre l'équilibre entre improvisation et composition. Une aventure plus électrique, donc, où les trois musiciens construisent des formes rigoureusement libres et énergiques. <br />
<br />
<b>11 avril 2007</b> <br />
<b>&#8220;Des sons, Desnos&#8221;</b> <br />
Duo Christelle Sery (gtr,vx), Eric Groleau (batt) <br />
Guitare, batterie et voix se prêtent aux textes surréalistes de Robert Desnos dans des compositions originales mêlées d'improvisation. <br />
<b> <br />
Emile Parisien Quartet</b> <br />
Emile Parisien (saxs), Sylvain Darrifourcq (batt), Ivan Gelugne (cb), Julien Touery (p). <br />
Inspiré des compositeurs du 20° siècle mais aussi d e John Coltrane ou Wayne Shorter, Emile Parisien donne un caractère expressionniste à sa musique où prime l'improvisation : repoussant les limites du concret il atteint grâce à la complicité des musiciens qui l'entourent, une expression très personnelle mais résolument moderne. <br />
<br />
<b>02 mai 2007</b> <br />
Sébastien LLado Tryo [Ut] <br />
avec Didier Ithursarry (acc), Manu Brunet (cb)

View File

View File

View File

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
"http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91">
<channel>
<title>PortaLinux.org</title>
<link>http://www.portalinux.org</link>
<description>Les news de PortaLinux.org</description>
<language>fr_BE</language>
<item>
<title>Software Developpers Journal Extra - guide complèt e-commerce est arrivé !</title>
<link>http://www.portalinux.org/article.php?sid=1396</link>
</item>
<item>
<title>Nouveau numéro de PHP Solutions est déjà en vente !</title>
<link>http://www.portalinux.org/article.php?sid=1395</link>
</item>
<item>
<title>Découvrez la dernière OpenSuSE 11.0 grâce au magazine Linux Identity !</title>
<link>http://www.portalinux.org/article.php?sid=1394</link>
</item>
<item>
<title>Fedora 9 en kiosque !</title>
<link>http://www.portalinux.org/article.php?sid=1393</link>
</item>
<item>
<title>Nouveau numéro de Linux+ DVD en kiosques !</title>
<link>http://www.porta

View File

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Toute l'actualité Ciné</title>
<link>http://www.allocine.fr/article/</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Fri, 8 Aug 2008 02:48:00 GMT</lastBuildDate>
<pubDate>Fri, 8 Aug 2008 02:48:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine" type="application/rss+xml" /><item>
<category />
<title>Box-office : tous fans de "WALL-E"</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/358397764/fichearticle_gen_carticle=18426893.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; Le petit robot Pixar prend logiquement la tête du box-office hebdomadaire cette semaine... mais reste très en-deçà des derniers succès du studio.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426893.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 7 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/358397764" height="1" width="1"/&gt;</description>
<pubDate>Thu, 7 Aug 2008 15:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426893</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/66/61/88/18944260.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426893.html</feedburner:origLink></item>
<item>
<category />
<title>Un remake de "Suspiria" pour Natalie Portman ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/358308202/fichearticle_gen_carticle=18426907.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23001.html"&gt;Tournages&lt;/a&gt; &gt; Natalie Portman, vu dernièrement dans "Deux soeurs pour un roi", aurait pris en main le projet de remake du film culte de Dario Argento, "Suspiria". Elle devrait interpréter le rôle principal et même produire le film...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426907.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 7 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/358308202" height="1" width="1"/&gt;</description>
<pubDate>Thu, 7 Aug 2008 11:19:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426907</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/images/actus/18351927.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426907.html</feedburner:origLink></item>
<item>
<category />
<title>Momies, Vampires, etc...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/358041451/fichearticle_gen_carticle=18426757.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23144.html"&gt;Dossiers&lt;/a&gt; &gt; La monstrueuse bande des Universal Monsters a fait son chemin... et des petits ! A l'occasion de la sortie de "La Momie 3" et des "Dents de la Nuit", petit quiz en images autour de ces créatures de l'ombre...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426757.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 7 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/358041451" height="1" width="1"/&gt;</description>
<pubDate>Thu, 7 Aug 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426757</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/18/18968405.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426757.html</feedburner:origLink></item>
<item>
<category />
<title>1ères séances : une momie timide</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/357596100/fichearticle_gen_carticle=18426890.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; "La Momie : la tombe de l'Empereur Dragon" débute timidement dans les salles parisiennes avec 1 972 entrées à 14h00, loin derrière "Le Retour de la momie" (3 241 entrées) et "La Momie" (2 763 entrées).&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426890.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/357596100" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Aug 2008 19:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426890</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/36/20/18856735.gif" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426890.html</feedburner:origLink></item>
<item>
<category />
<title>Le téléchargement illégal de films gagne du terrain</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/357339776/fichearticle_gen_carticle=18426814.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; C'est une nouvelle plus qu'inquiétante pour l'industrie cinématographique : selon une étude rendue publique par l'ALPA, il se téléchargerait illégalement autant de films en France qu'il y a d'entrées en salles.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426814.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/357339776" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Aug 2008 17:30:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426814</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/62/18968574.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426814.html</feedburner:origLink></item>
<item>
<category />
<title>Bande-annonce : "Appaloosa"</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/357361424/fichearticle_gen_carticle=18426859.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23012.html"&gt;Vu sur le web&lt;/a&gt; &gt; Adversaires dans "A history of violence", Viggo Mortensen et Ed Harris prennent les armes ensemble dans le western "Appaloosa". Premières images, en attendant Deauville...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426859.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/357361424" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Aug 2008 14:20:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426859</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/91/18968792.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426859.html</feedburner:origLink></item>
<item>
<category />
<title>Gilliam relance "Don Quichotte" !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/357320257/fichearticle_gen_carticle=18426844.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23001.html"&gt;Tournages&lt;/a&gt; &gt; Alors qu'il avait été forcé d'abandonner le tournage de "L'Homme qui tua Don Quichotte" il y a quelques années, Terry Gilliam vient d'annoncer la renaissance de son projet d'adaptation de l'oeuvre de Cervantes. Il n'attend plus que Johnny Depp soit disponible pour lancer la production du film.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426844.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/357320257" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Aug 2008 11:35:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426844</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/86/18968761.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426844.html</feedburner:origLink></item>
<item>
<category />
<title>Ghibli recrute !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/357339775/fichearticle_gen_carticle=18426832.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23006.html"&gt;Business&lt;/a&gt; &gt; Hayao Miyazaki et son célèbre studio d'animation japonais, Ghibli, ont lancé un appel à candidatures pour recruter des apprentis techniciens d'animation et préparer la relève.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426832.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/357339775" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Aug 2008 10:19:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426832</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/67/02/89/18968815.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18426832.html</feedburner:origLink></item>
<item>
<category />
<title>Sales gosses !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/~3/357036359/fichearticle_gen_carticle=18426420.html</link>
<description>&lt;p&gt;&lt;a href="http://www.allocine.fr/article/rubarticle_gen_crubrique=23144.html"&gt;Dossiers&lt;/a&gt; &gt; A l'âge où ils devraient jouer à la poupée, ils s'amusent à nous effrayer...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18426420.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Août 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/~4/357036359" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Aug 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescine18426420</guid>
<enc

View File

@ -0,0 +1,128 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://rss.allocine.fr/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://rss.allocine.fr/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>
<title>Actus ciné : Interviews</title>
<link>http://www.allocine.fr/article/rubarticle_gen_crubrique=23005.html</link>
<description>Toute l'actualité du cinéma</description>
<copyright>Copyright 2008 AlloCiné</copyright>
<category>Cinema</category>
<language>fr-fr</language>
<lastBuildDate>Sun, 10 Feb 2008 21:26:00 GMT</lastBuildDate>
<pubDate>Sun, 10 Feb 2008 21:26:00 GMT</pubDate>
<ttl>20</ttl>
<image>
<title>AlloCiné</title>
<link>http://www.allocine.fr</link>
<url>http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/skin/allocinev5/habillage/partnership/allocine_logo.png</url>
</image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://rss.allocine.fr/ac/actualites/cine/interviews" type="application/rss+xml" /><item>
<category />
<title>"Les Faussaires" : rencontre avec Adolf Burger</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/232591670/fichearticle_gen_carticle=18416579.html</link>
<description>&lt;p&gt;Nommé aux Oscars dans la catégorie Meilleur film étranger, le film allemand "Les Faussaires", actuellement en salles, est inspiré du livre autobiographique du témoin Adolf Burger. AlloCiné l'a rencontré...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416579.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Samedi 9 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/232591670" height="1" width="1"/&gt;</description>
<pubDate>Sat, 9 Feb 2008 10:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416579</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/92/44/18897534.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416579.html</feedburner:origLink></item>
<item>
<category />
<title>Elsa Zylberstein par elle-même</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230813122/fichearticle_gen_carticle=18416859.html</link>
<description>&lt;p&gt;Héroïne de "La Fabrique des sentiments", en salles ce mercredi, la comédienne Elsa Zylberstein s'est prêtée pour AlloCiné au jeu de la "bio commentée". Interview vidéo en forme de flashback.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416859.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 7 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230813122" height="1" width="1"/&gt;</description>
<pubDate>Thu, 7 Feb 2008 08:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416859</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/95/42/18899320.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416859.html</feedburner:origLink></item>
<item>
<category />
<title>Son nom est Juno...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230203310/fichearticle_gen_carticle=18416816.html</link>
<description>&lt;p&gt;Révélation américaine de ce début d'année, Ellen Page nous présente "Juno", le "Little Miss Sunshine" de 2008...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416816.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230203310" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Feb 2008 10:42:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416816</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/95/16/18898973.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416816.html</feedburner:origLink></item>
<item>
<category />
<title>"Les Liens du sang" par François Cluzet</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230203311/fichearticle_gen_carticle=18416815.html</link>
<description>&lt;p&gt;Dans "Les Liens du sang", François Cluzet retrouve son compère Guillaume Canet. Il évoque pour nous leurs relations fraternelles...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416815.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230203311" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Feb 2008 10:35:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416815</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/95/15/18898972.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416815.html</feedburner:origLink></item>
<item>
<category />
<title>Si "Ca se soigne ?" : la réponse !</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230454437/fichearticle_gen_carticle=18416872.html</link>
<description>&lt;p&gt;Rencontre avec Laurent Chouchan, le réalisateur de la comédie "Ca se soigne ?", en salles aujourd'hui, et son actrice Julie Ferrier.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416872.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230454437" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Feb 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416872</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/95/43/18899328.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416872.html</feedburner:origLink></item>
<item>
<category />
<title>Révélations sur le mystère "Cloverfield"...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230185480/fichearticle_gen_carticle=18416812.html</link>
<description>&lt;p&gt;Rencontre avec Matt Reeves, le réalisateur du film-catastrophe "Cloverfield". A vos risques et périls...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416812.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230185480" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Feb 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416812</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/39/71/18860154.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416812.html</feedburner:origLink></item>
<item>
<category />
<title>"John Rambo" par Stallone</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/225830685/fichearticle_gen_carticle=18415617.html</link>
<description>&lt;p&gt;La guerre, la violence, la Birmanie, la spiritualité, le cinéma, Jason Bourne, Arnold Schwarzenegger, George W. Bush : à l'occasion du retour de Rambo, Sly se confie...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18415617.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 6 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/225830685" height="1" width="1"/&gt;</description>
<pubDate>Wed, 6 Feb 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18415617</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/80/88/18889701.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18415617.html</feedburner:origLink></item>
<item>
<category />
<title>Dans la "Brume" avec Stephen King</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/229336452/fichearticle_gen_carticle=18415618.html</link>
<description>&lt;p&gt;Le maître de l'horreur nous parle de l'adaptation de "Brume", signée Frank Darabont. Rencontre avec le King...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18415618.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mardi 5 Février 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/229336452" height="1" width="1"/&gt;</description>
<pubDate>Tue, 5 Feb 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18415618</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/80/89/18889714.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18415618.html</feedburner:origLink></item>
<item>
<category />
<title>"Mes amis, mes amours" par Lorraine Levy</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/226298828/fichearticle_gen_carticle=18414180.html</link>
<description>&lt;p&gt;Après "La Première fois que j'ai eu 20 ans" en 2004, Lorraine Levy signe avec "Mes amis, mes amours" son deuxième long-métrage, en adaptant le roman de son frère, Marc Levy. &lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18414180.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Jeudi 31 Janvier 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/226298828" height="1" width="1"/&gt;</description>
<pubDate>Thu, 31 Jan 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18414180</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/90/48/18896595.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18414180.html</feedburner:origLink></item>
<item>
<category />
<title>L'affaire Litvinenko : un crime d'Etat ?</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/225830677/fichearticle_gen_carticle=18416339.html</link>
<description>&lt;p&gt;Présenté in extremis au Festival de Cannes en mai dernier, "Litvinenko : empoisonnement d'un ex agent du KGB" sort sur nos écrans ce mercredi. Nous sommes allé à la rencontre de son réalisateur, Andreï Nekrassov, qui livre avec son documentaire une vision terrifiante de son pays et de la corruption du pouvoir. Entretien.&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416339.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 30 Janvier 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/225830677" height="1" width="1"/&gt;</description>
<pubDate>Wed, 30 Jan 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416339</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/90/30/18896482.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416339.html</feedburner:origLink></item>
<item>
<category />
<title>Souvenirs de "Astérix aux Jeux Olympiques"...</title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230185481/fichearticle_gen_carticle=18416809.html</link>
<description>&lt;p&gt;Gaulois et Romains évoquent pour nous le tournage de cette superproduction à la Française...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416809.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 30 Janvier 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230185481" height="1" width="1"/&gt;</description>
<pubDate>Wed, 30 Jan 2008 06:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416809</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/64/37/62/18774363.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416809.html</feedburner:origLink></item>
<item>
<category />
<title>Les "Souvenirs brûlés" de Halle Berry </title>
<link>http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~3/230185482/fichearticle_gen_carticle=18416811.html</link>
<description>&lt;p&gt;Halle Berry et la réalisatrice Susanne Bier évoquent leur expérience sur l'émouvant "Nos souvenirs brûlés"...&lt;/p&gt;&lt;p&gt;&gt;&gt; &lt;a href="http://www.allocine.fr/article/fichearticle_gen_carticle=18416811.html"&gt;Lire tout l'article&lt;/a&gt; | sur &lt;a href="http://www.allocine.fr"&gt;&lt;i&gt;AlloCiné&lt;/i&gt;&lt;/a&gt; - le Mercredi 30 Janvier 2008&lt;/p&gt;&lt;img src="http://rss.allocine.fr/~r/ac/actualites/cine/interviews/~4/230185482" height="1" width="1"/&gt;</description>
<pubDate>Wed, 30 Jan 2008 05:00:00 GMT</pubDate>
<guid isPermaLink="false">actualitescineinterviews18416811</guid>
<enclosure url="http://a69.g.akamai.net/n/69/10688/v1/img5.allocine.fr/acmedia/medias/nmedia/18/65/95/13/18898966.jpg" type="image/jpeg" />
<feedburner:origLink>http://www.allocine.fr/article/fichearticle_gen_carticle=18416811.html</feedburner:origLink></item>
<item>
<category />
<title>"Battle for Haditha" : rencontre avec Nick Broomfield</title>
<link>http://rss.allocine.fr/~r/ac/a

Some files were not shown because too many files have changed in this diff Show More