<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Darshan's Weblog &#187; Elettronica/Devices</title>
	<atom:link href="http://thedarshan.wordpress.com/category/elettronicadevices/feed/" rel="self" type="application/rss+xml" />
	<link>http://thedarshan.wordpress.com</link>
	<description>"Spero di non incrementare inutilmente l'entropia dell'universo"</description>
	<lastBuildDate>Sat, 07 Nov 2009 22:26:12 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='thedarshan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/6cf0f8a7a8b0b006015537ece7b9bbdf?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>The Darshan's Weblog &#187; Elettronica/Devices</title>
		<link>http://thedarshan.wordpress.com</link>
	</image>
			<item>
		<title>Esportare la rubrica dei vecchi telefoni lg in formato vcard (da csv a vcard)</title>
		<link>http://thedarshan.wordpress.com/2008/11/12/esportare-la-rubrica-dei-vecchi-telefoni-lg-in-formato-vcard-da-csv-a-vcard/</link>
		<comments>http://thedarshan.wordpress.com/2008/11/12/esportare-la-rubrica-dei-vecchi-telefoni-lg-in-formato-vcard-da-csv-a-vcard/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 18:19:22 +0000</pubDate>
		<dc:creator>thedarshan</dc:creator>
				<category><![CDATA[Elettronica/Devices]]></category>
		<category><![CDATA[Informatica]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[cvs]]></category>
		<category><![CDATA[lg]]></category>
		<category><![CDATA[lg phone manager]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[rubrica]]></category>
		<category><![CDATA[vcard]]></category>
		<category><![CDATA[vcf]]></category>

		<guid isPermaLink="false">http://thedarshan.wordpress.com/?p=45</guid>
		<description><![CDATA[Finalmente quel maledetto lg8330 ha cotto la sua seconda batteria!
adesso mi posso liberare di lui senza sentirmi dedito al consumismo.
L&#8217;ultima cosa da fare e copiare la rubrica&#8230;e qui cominciano i problemi
il programma di gestione della lg è il famigerato e multibuggato Lg Phone Manager in particolare la versione 1.3.0.18
Questo esempio di alta tecnologia corana (nn [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thedarshan.wordpress.com&blog=2352018&post=45&subd=thedarshan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Finalmente quel maledetto lg8330 ha cotto la sua seconda batteria!<br />
adesso mi posso liberare di lui senza sentirmi dedito al consumismo.</p>
<p>L&#8217;ultima cosa da fare e copiare la rubrica&#8230;e qui cominciano i problemi<br />
il programma di gestione della lg è il famigerato e multibuggato Lg Phone Manager in particolare la versione 1.3.0.18<br />
Questo esempio di alta tecnologia corana (nn sapevo che ci fossero le scimmie in corea) permette di esportare la rubrica in uno formato csv strutturato nel seguente modo:</p>
<pre>Nome,Telefono 1,Telefono 2,Telefono 3,Telefono 4,Telefono 5,E-mail 1,E-mail 2,Ufficio,Ruolo,Indirizzo ufficio,Indirizzo personale,Home Page,Appunti</pre>
<p>invece il modo ideale per spostare i contatti verso un altro telefono (qualunque esso sia purchè abbastanza evoluto) è il formato vcard.<br />
quindi ho scritto uno script che passa da quel formato csv al vcard standard.</p>
<p>lo script crea un vcard per ogni contatto. i vcard possono essere aggiunti alla rubrica dal software di gestione del telefono (mandarli tutti via bluetooth potrebbe essere una pessima idea)</p>
<pre class="brush: ruby;">
#converte le rubriche lg in formato csv in vcards
require 'csv'

$tail=&quot;END:VCARD&quot;
$head=&lt;&lt;AMMACCABANANE
BEGIN:VCARD
UID:
VERSION:2.1
AMMACCABANANE

def crea_vcard(linea)
    nome=linea[0]
    out=File.new(&quot;./vcf/#{nome}.vcf&quot;,&quot;w&quot;)
    out&lt;&lt;$head
    out.puts(&quot;N:#{nome};;;;&quot;)
    out.puts(&quot;TEL;CELL:#{linea[1]}&quot;)
    out.puts(&quot;TEL;PREF:#{linea[2]}&quot;) if linea[2].size&gt;5
    out.puts(&quot;TEL;HOME:#{linea[3]}&quot;) if linea[3].size&gt;5
    out.puts(&quot;X-CLASS:PRIVATE&quot;)#non credo sia un tag standard
    out.puts(&quot;NOTE:#{linea[13]}&quot;) if linea[13].size&gt;5
    out.puts($tail)
    out.close
end

array = CSV::parse(File.open(ARGV[0], 'r') {|f| f.read })
`mkdir vcf`
array.each{|linea| crea_vcard(linea)}
</pre>
<p>Nel caso il vostro telefono usasse un formato csv diverso da questo basta modificare l&#8217;ordine dei campi nella funzione crea_vcard()<br />
Se non sapete come farlo mandatemi le prime righe del file csv e una descrizione del modello del telefono e ci penso io</p>
<p>Ho aggiunto un link per scaricare direttamente il files, visto che lo script per evidenziare il codice di wordpress combina dei casini. [<a href="http://thedarshan.netsons.org/script/vcards.rb" target="_blank">DOWNLOAD</a>]</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thedarshan.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thedarshan.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thedarshan.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thedarshan.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thedarshan.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thedarshan.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thedarshan.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thedarshan.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thedarshan.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thedarshan.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thedarshan.wordpress.com&blog=2352018&post=45&subd=thedarshan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thedarshan.wordpress.com/2008/11/12/esportare-la-rubrica-dei-vecchi-telefoni-lg-in-formato-vcard-da-csv-a-vcard/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b38d49d538414927cd1c01ba4f49a135?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thedarshan</media:title>
		</media:content>
	</item>
		<item>
		<title>Copiare le memory card PlayStation sul pc</title>
		<link>http://thedarshan.wordpress.com/2007/12/29/copiare-le-memory-card-playstation-sul-pc/</link>
		<comments>http://thedarshan.wordpress.com/2007/12/29/copiare-le-memory-card-playstation-sul-pc/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 13:48:25 +0000</pubDate>
		<dc:creator>thedarshan</dc:creator>
				<category><![CDATA[Elettronica/Devices]]></category>
		<category><![CDATA[mc]]></category>
		<category><![CDATA[memory card]]></category>
		<category><![CDATA[memorycard]]></category>
		<category><![CDATA[playstation]]></category>
		<category><![CDATA[ps1]]></category>
		<category><![CDATA[psone]]></category>

		<guid isPermaLink="false">http://thedarshan.wordpress.com/2007/12/29/copiare-le-memory-card-playstation-sul-pc/</guid>
		<description><![CDATA[Da quando qualche anno fa una delle mie memory card &#8220;di concorrenza&#8221;
è subtaneamente deceduta ho cominciato a preoccuparmi di poter perdere
anche l&#8217;altra memory card che contiene i salvataggi di final fantasy 9.
Così ho cominciato a cercare una soluzione per creare un immagine della
memory card e alla fine ho trovato il sito di &#8220;Memory
card captor sakura&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thedarshan.wordpress.com&blog=2352018&post=6&subd=thedarshan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Da quando qualche anno fa una delle mie memory card &#8220;di concorrenza&#8221;<br />
è subtaneamente deceduta ho cominciato a preoccuparmi di poter perdere<br />
anche l&#8217;altra memory card che contiene i salvataggi di final fantasy 9.<br />
Così ho cominciato a cercare una soluzione per creare un immagine della<br />
memory card e alla fine ho trovato il sito di &#8220;<a href="http://www.gamesx.com/mccap/">Memory<br />
card captor sakura</a>&#8221; un miracoloso programma che permette di copiare<br />
le mc usando appositi device.</p>
<p>Tra i device da collegare al pc ho deciso di costruire il Direct Pad Pro perche<br />
mi sembra il più razionale di tutti.<br />
<img src="http://thedarshan.files.wordpress.com/2007/12/circuito.gif" alt="" /></p>
<div>Una memory card ps1 non è altro che un memoria flash grande<br />
128 miseri kbyte (quando scrivono sulle mc 1 mega intendono un megabit).</p>
<div><img src="http://thedarshan.files.wordpress.com/2007/12/card.jpg" alt="" align="middle" /></div>
<p>il circuito non fa altro che fornire un alimentazione appropriata (3.5V<br />
al pin 5 e 7.5V al pin 3) e collegare i pin di comunicazione alla parallela.<br />
pensa a tutto sakura.Il circuito necessita di un alimentazione stabilizzata a 7.5v. Le specifiche<br />
sul funzionamento delle mc (e sull hardware della playstation<br />
in genere) sono disponibili <a href="http://thedarshan.files.wordpress.com/2007/12/playstationtxt.doc" target="_blank">qui</a> .</div>
<h3>Costruzione del circuito</h3>
<ul>
<li> <strong>Le porte di comunicazione</strong><br />
La porta che si connette al pc è una semplice porta parallela<br />
femmina (DB25).<br />
<strong>NB:</strong>Si può usare come massa indifferentemente qualunque pin dal 18 al 25.La parte più difficile nella costruzione del circuito è<br />
sicuramente la porta di input della memory card.Ci sono molti modi per<br />
costruirla e io ho scelto il piu semplice:</p>
<ul>
<li>
<ul>
<li><strong>Usare un connettore per floppy (senza modifica)</strong><br />
<img src="http://thedarshan.files.wordpress.com/2007/12/169039.gif" alt="169039.gif" /><br />
Per collegare la memory card è possibile usare uno di quei connettori che collegano il floppy con la scheda madre.<br />
Una volta smontata la mc la scheda che la costituisce entra perfettamente in questa porta.<br />
il difetto principale di questa porta e che difficilissima da trovare nella versione da saldare su scheda.<br />
si trova solo per cavo quindi per saldarla bisogna perdere<br />
un pò di tempo.E soprattutto bisogna smontare la mc per inserirla<img src="http://thedarshan.files.wordpress.com/2007/12/169034.jpg" alt="169034.jpg" /><br />
<strong>NB:</strong>Il connettore contiene due file di<br />
pin ma la mc ne usa solo una quindi conviene piegare una<br />
delle due file per non ostacolare la saldatura.</p>
<p align="center">
</li>
<li><strong>Modificare un connettore per floppy </strong>E&#8217; possibile modificare un connettore da floppy in modo<br />
che la mc possa essere connessa senza bisogno di smontarla. Questa<br />
procedura è descritta in dettaglio in <a href="http://www.members.aol.com/playsaver/connect2.html">questo<br />
sito</a>. qui ne riporto solo alcune immagini giusto per dare<br />
un idea:</p>
<p align="center"><img src="http://thedarshan.files.wordpress.com/2007/12/build1.jpg" alt="" width="413" height="99" /></p>
<p><img src="http://thedarshan.files.wordpress.com/2007/12/build2.jpg" alt="" width="413" height="101" /></p>
<p>Il più grande difetto di questa soluzione e che è<br />
difficile da costruire</li>
<li><strong>Usare un vero connettore playstation. </strong><br />
<table border="0" width="87%">
<tbody>
<tr>
<td width="55%"><img src="http://thedarshan.files.wordpress.com/2007/12/sdlcam_pic00010.jpeg" alt="" width="320" height="240" /></td>
<td width="45%" valign="top">Avendolo è facile ma non<br />
sono in vendita.</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</li>
<li><strong>Stabilizzazione delle tensioni<br />
NB:</strong>La caduta di tensione di un diodo al silicio è minimo<br />
0.6V ma cresce al crescere della corrente.<br />
In questo documento si suppone che a regime un diodo abbia una caduta<br />
di <strong>0.7</strong>V.<br />
Esistono in giro circuiti che fanno regolazioni molto meno raffinate<br />
(come tensione al pin3 usano i 5v della parallela e come tensione al<br />
pin5 riducono la tensione di 5V a 4.3V usando un diodo).<br />
Questi circuiti dovrebbero funzionare ma io ho preferito fare in modo che il ciucuito<br />
fornisse esattamente le stesse tensioni di una playstation.All interno del circuito è presente uno stabilizzatore che abassa la tenzione in input a 3.5V attraverso un Lm317t</p>
<table border="0" width="525">
<tbody>
<tr>
<td width="41%"><img src="http://thedarshan.files.wordpress.com/2007/12/317t.gif" alt="" width="251" height="347" /></td>
<td width="59%" valign="top">Nell suo uso tipico l&#8217;lm317 richiede<br />
due condensatori per stabilizzare la corrente ma in questo caso considerato che la corrente è gia stabilizzata si possono omettere.<br />
<img src="http://thedarshan.files.wordpress.com/2007/12/317schema.gif" alt="" width="246" height="170" /><br />
La formula per calcolare le resistenze e la seguente<br />
<img src="http://thedarshan.files.wordpress.com/2007/12/formula.gif" alt="" width="260" height="49" /><br />
Dunque considerando trascurabile l&#8217;influsso della corrente si ha:3.4 = 1.25(1+820/470)</td>
</tr>
</tbody>
</table>
</li>
<li><strong>Alimentazione esterna </strong>Se non si dispone di un alimentatore stabilizzato si puo procedere<br />
nei seguenti modi:</p>
<ul>
<li> <strong>A partire da una batteria da 9V ridurla a 7.6V on due<br />
diodi.</strong></li>
<li><strong>Stabilizzare un alimentatore da 9V o più con un<br />
uA7808 o similare</strong>Il 7808 stabilizza tensioni positive a 8V e puo erogare massimo<br />
1Ala tensione si puo ridurre a 7.3V con un diodo</li>
</ul>
</li>
<li><strong>Assemblaggio</strong><br />
Purtroppo ho perso le foto della mia scheda <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /><br />
Allego una foto del lavoro di un utente, anche se purtroppo non si vede l&#8217;interno</p>
<table border="0" width="89%">
<tbody>
<tr>
<td>
<p><div id="attachment_262" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-262 " title="Carmax91" src="http://thedarshan.files.wordpress.com/2007/12/carmax91.jpg" alt="Assemblaggio" width="500" height="375" /><p class="wp-caption-text">Lettore realizzato da Carmax91 usando un connettore playstation</p></div></td>
<td valign="top"></td>
</tr>
</tbody>
</table>
<p><strong> </strong></li>
<li><strong>Scrittura dell immagine </strong><br />
<table border="0" width="89%">
<tbody>
<tr>
<td width="16%"><img src="http://thedarshan.files.wordpress.com/2007/12/proprieta.gif" alt="" width="159" height="63" /></td>
<td width="84%">Sakura nasce in giapponese. la versione che linko<br />
e una pessima traduzione in inglese&#8230;Per prima cosa andate su proprieta e settate il tipo di circuito<br />
su Direct Pad Pro</td>
</tr>
<tr>
<td colspan="2">Poi cliccate sul bottone slot1 per leggere la memorycard<br />
e su ImgR (image read) per copiare la mc su file.</td>
</tr>
<tr>
<td colspan="2" align="center"><img src="http://thedarshan.files.wordpress.com/2007/12/caricamento.jpg" alt="" width="330" height="127" /></td>
</tr>
</tbody>
</table>
<p>Adesso che ho copiato la mia memory card posso dormire sogni tranquilli<br />
e cominciare ad arrovellarmi su come copiare quelle della ps2 che contengono<br />
i salvataggi di Final Fantasy X.</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thedarshan.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thedarshan.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thedarshan.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thedarshan.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thedarshan.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thedarshan.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thedarshan.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thedarshan.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thedarshan.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thedarshan.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thedarshan.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thedarshan.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thedarshan.wordpress.com&blog=2352018&post=6&subd=thedarshan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thedarshan.wordpress.com/2007/12/29/copiare-le-memory-card-playstation-sul-pc/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b38d49d538414927cd1c01ba4f49a135?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thedarshan</media:title>
		</media:content>

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/circuito.gif" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/card.jpg" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/169039.gif" medium="image">
			<media:title type="html">169039.gif</media:title>
		</media:content>

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/169034.jpg" medium="image">
			<media:title type="html">169034.jpg</media:title>
		</media:content>

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/build1.jpg" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/build2.jpg" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/sdlcam_pic00010.jpeg" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/317t.gif" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/317schema.gif" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/formula.gif" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/carmax91.jpg" medium="image">
			<media:title type="html">Carmax91</media:title>
		</media:content>

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/proprieta.gif" medium="image" />

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/caricamento.jpg" medium="image" />
	</item>
		<item>
		<title>Resuscitare un router DLink-604+</title>
		<link>http://thedarshan.wordpress.com/2007/12/19/resuscitare-un-router-dlink-604/</link>
		<comments>http://thedarshan.wordpress.com/2007/12/19/resuscitare-un-router-dlink-604/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 16:49:38 +0000</pubDate>
		<dc:creator>thedarshan</dc:creator>
				<category><![CDATA[Elettronica/Devices]]></category>
		<category><![CDATA[dlink]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[router]]></category>

		<guid isPermaLink="false">http://thedarshan.wordpress.com/2007/12/19/resuscitare-un-router-dlink-604/</guid>
		<description><![CDATA[
Questo è un documento che ho scritto anni fà e non ho mai avuto occasione di publicare.
Descrive come riflashare un router dlink-604+ con il firmware corrotto  attraverso una scheda che realizza un interfaccia con la porta seriale del pc.
Include in appendice lo schema per la costruzione di un cavo nullmodem.
Le informazioni tecniche sul router [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thedarshan.wordpress.com&blog=2352018&post=4&subd=thedarshan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div style="text-align:center;"><img src="http://thedarshan.files.wordpress.com/2007/12/router.gif" alt="router" /></div>
<p>Questo è un documento che ho scritto anni fà e non ho mai avuto occasione di publicare.</p>
<p>Descrive come riflashare un router dlink-604+ con il firmware corrotto  attraverso una scheda che realizza un interfaccia con la porta seriale del pc.</p>
<p>Include in appendice lo schema per la costruzione di un cavo nullmodem.</p>
<p>Le informazioni tecniche sul router più che dal manuale di riferimento le ho ottenute girando su vari forum scritti in varie lingue (e io odio il francese)  quindi non ne posso garantire l&#8217;accuratezza. so solo che il metodo ha funzionato per me.</p>
<p>Il maledetto router è ormai obsoleto e poco diffuso ma probabilmente altri router della Dlink si riflashano in questo modo.</p>
<p>Per qualunque richiesta o correzione scrivetemi</p>
<p><a href="http://thedarshan.files.wordpress.com/2007/12/resuscitare-un-router-dlink.pdf" title="http://thedarshan.files.wordpress.com/2007/12/resuscitare-un-router-dlink.pdf" target="_blank">Download</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thedarshan.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thedarshan.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thedarshan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thedarshan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thedarshan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thedarshan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thedarshan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thedarshan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thedarshan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thedarshan.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thedarshan.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thedarshan.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thedarshan.wordpress.com&blog=2352018&post=4&subd=thedarshan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://thedarshan.wordpress.com/2007/12/19/resuscitare-un-router-dlink-604/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b38d49d538414927cd1c01ba4f49a135?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">thedarshan</media:title>
		</media:content>

		<media:content url="http://thedarshan.files.wordpress.com/2007/12/router.gif" medium="image">
			<media:title type="html">router</media:title>
		</media:content>
	</item>
	</channel>
</rss>