<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4824916769027301884</id><updated>2024-10-24T17:05:23.924+02:00</updated><title type='text'>Pepper grains online</title><subtitle type='html'>My life by the web: links, documents and other amenities... all the things that will cross my life.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-4078218209180324618</id><published>2012-10-07T20:07:00.001+02:00</published><updated>2012-10-07T20:08:57.682+02:00</updated><title type='text'>Leggere fumetti sul Kindle</title><content type='html'>&lt;br /&gt;
&lt;br /&gt;
Ho comprato un Kindle touch.&lt;br /&gt;
&lt;br /&gt;
Come chiunque puo&#39; immaginare ora il problema e&#39; la conversione da un formato ad un altro leggibile dal Kindle.&lt;br /&gt;
&lt;br /&gt;
A tal fine c&#39;e&#39; &lt;a href=&quot;http://calibre-ebook.com/&quot;&gt;calibre&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Il mio problema e&#39; il seguente: ho un fumetto in pdf. 100 pagine per 55 mega.&lt;br /&gt;
&lt;br /&gt;
Chiaramente non posso inviarlo al mio indirizzo kindle, viste le dimensioni del file.&lt;br /&gt;
&lt;br /&gt;
Procedura un po laboriosa, ma funzionante:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;passo. Togliere le eventuali pagine che non mi serviranno (pubblicita&#39;). Per questo ho usato pdftk. Ci sono anche software grafici: pdfshuffle ecc. ecc. &lt;/li&gt;
&lt;li&gt;&amp;nbsp; passo: Ridurre i bordi. A tal fine ho usato &lt;a href=&quot;http://briss.sourceforge.net/&quot;&gt;briss&lt;/a&gt;. Questo software molto semplice nell&#39;uso automaticamente predispone il taglio. Quando ho caricato il file gli ho detto di trattare diversamente alcune pagine, da pag 1 a pag 4 e poi pag 126. Il file da pag 5 a pag 125 componeva le pagine in modo molto sistematico: quelle dispari decentrate verso sx mentre quelle pari lo erano verso dx. Briss ha automaticamente aggiustato i parametri per aver il miglior taglio possibile. Pertanto all&#39;inizio ho detto di trattare le altre singolarmente.&lt;/li&gt;
&lt;li&gt;&amp;nbsp; passo. A questo punto il file pesava 54 M. Per comprimerlo ho usato una procedura descritta &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=1195847&quot;&gt;qui&lt;/a&gt;. che riporto per comodita&#39;&lt;/li&gt;
&lt;/ol&gt;
&lt;pre class=&quot;alt2&quot; dir=&quot;ltr&quot; style=&quot;border: 1px inset; height: 34px; margin: 0px; overflow: auto; padding: 6px; text-align: left; width: 640px;&quot;&gt;sudo apt-get install poppler-utils ghostscript&lt;/pre&gt;
&lt;br /&gt;
&amp;nbsp;e poi, in un file, chiamiamolo pdfopt.sh, si inserisce il seguente codice&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;alt2&quot; dir=&quot;ltr&quot; style=&quot;border: 1px inset; height: 498px; margin: 0px; overflow: auto; padding: 6px; text-align: left; width: 640px;&quot;&gt;#!/bin/bash

DPI=150
PDF_DESTINATION=&quot;&quot;

help() {
echo &quot;optimize_pdf help&quot;
echo &quot;-h : show this help&quot;
echo &quot;-d : (optional) output pdf document resolution, by default : 150&quot;
echo &quot;-s : pdf source file, this file must exist&quot;
echo &quot;-o : pdf output file&quot;
}

full_path() {
if [ -z $1 ]; then
exit;
else
if [ `expr substr ${1:-a} 1 2` != &quot;/&quot; ]; then
FULL_FILE=`pwd`&quot;/&quot;$1
fi
fi
echo $FULL_FILE
}

isNumeric(){ echo &quot;$@&quot; | grep -q -v &quot;[^0-9]&quot; ;}

while getopts &quot;s:o:d:h&quot; flag
do
case $flag in
#Source : source file
&quot;s&quot;)
PDF_FILE=`full_path $OPTARG`
if [ ! -e $PDF_FILE ]; then
echo &quot;Please provide a valid source file&quot;
exit=1
fi
;;
#Output : output file
&quot;o&quot;)
PDF_DESTINATION=$OPTARG
;;
#Dpi : desired resolution
&quot;d&quot;)
if [ -z `isNumeric $OPTARG` ]; then
DPI=$OPTARG
else
echo &quot;Please provide a numeric value for your DPI&quot;
exit=1
fi
;;
&quot;h&quot;)
exit=1
;;
esac
done

#Is there a target file?
if [ -z $PDF_DESTINATION ]; then
echo &quot;Please provide a file name for output&quot;
exit=1
fi

#At least one error, we&#39;re not going any further
if [ $exit ]; then
help
exit
fi

pdftops \
-paper match \
-nocrop \
-noshrink \
-nocenter \
-level3 \
-q \
&quot;$PDF_FILE&quot; - \
| ps2pdf14 \
-dEmbedAllFonts=true \
-dUseFlateCompression=true \
-dOptimize=true \
-dProcessColorModel=/DeviceRGB \
-dUseCIEColor=true \
-r72 \
-dDownsampleGrayImages=true \
-dGrayImageResolution=$DPI \
-dAutoFilterGrayImages=false \
-dGrayImageDownsampleType=/Bicubic \
-dDownsampleMonoImages=true \
-dMonoImageResolution=$DPI \
-dMonoImageDownsampleType=/Bicubic \
-dDownsampleColorImages=true \
-dColorImageResolution=$DPI \
-dAutoFilterColorImages=false \
-dColorImageDownsampleType=/Bicubic \
-dPDFSETTINGS=/prepress \
- &quot;$PDF_DESTINATION&quot;&lt;/pre&gt;
&lt;br /&gt;
al file gli si danno i permessi di esecuzione&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;&quot;&gt;chmod a+x pdfopt.sh&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
dopo di che lancio il mio comando&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace;&quot;&gt;pdfopt.sh -s in.pdf -o out.pdf&lt;/span&gt; &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;4.&amp;nbsp; passo. Ora il mio file pesa solo 13 M. Ma sono ricomparsi i bordi.&lt;br /&gt;
Per tagliarli uso nuovamente briss come nel punto 2. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Appena vedo il fumetto sul mio kindle vi faccio sapere com&#39;e&#39; il risultato.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/4078218209180324618/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2012/10/leggere-fumetti-sul-kindle-ho-comprato.html#comment-form' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/4078218209180324618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/4078218209180324618'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2012/10/leggere-fumetti-sul-kindle-ho-comprato.html' title='Leggere fumetti sul Kindle'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-6473378078946258707</id><published>2011-06-07T23:54:00.001+02:00</published><updated>2011-06-08T00:15:18.385+02:00</updated><title type='text'>Plagiarisms in mathematics</title><content type='html'>&lt;span class=&quot;f&quot;&gt;&lt;cite&gt;&lt;a href=&quot;http://www.merriam-webster.com/dictionary/plagiarized&quot;&gt;From merriam-webster dictionary&lt;/a&gt;&amp;nbsp;&lt;/cite&gt;&lt;/span&gt;&lt;br /&gt;
&lt;h2 class=&quot;def-header&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span&gt;Definition of &lt;em&gt;PLAGIARIZE&lt;/em&gt;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;/h2&gt;&lt;h2 class=&quot;def-header&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;transitive verb&lt;span class=&quot;ssens&quot;&gt;&lt;strong&gt;&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h2 class=&quot;def-header&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;ssens&quot;&gt;&lt;strong&gt;:&lt;/strong&gt; to steal and pass off (the ideas or words of another) as one&#39;s own &lt;strong&gt;:&lt;/strong&gt; use (another&#39;s production) without crediting the source &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;ssens&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.ams.org/notices/200206/from-ams-sec.pdf&quot;&gt;Here&lt;/a&gt; there is a&amp;nbsp; Ethical Guidelines of the AMS&lt;br /&gt;
&lt;br /&gt;
On AMS&#39; site there is also the following&lt;br /&gt;
&lt;span class=&quot;f&quot;&gt;&lt;cite&gt;&lt;a href=&quot;http://www.ams.org/notices/200206/commentary.pdf%20&quot;&gt;Theft of Words, Theft of Ideas&lt;/a&gt;&lt;/cite&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/6473378078946258707/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2011/06/plagiarisms-in-mathematics.html#comment-form' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/6473378078946258707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/6473378078946258707'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2011/06/plagiarisms-in-mathematics.html' title='Plagiarisms in mathematics'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-5933428681155189034</id><published>2010-12-29T22:31:00.000+01:00</published><updated>2010-12-29T22:31:26.985+01:00</updated><title type='text'>Per un viaggio in Patagonia</title><content type='html'>Vorrei raccogliere qui di seguito i link che ho trovato e mi sono stati utili nell&#39;organizzazzione del viaggio in Patagonia (la regione piu&#39; a sud dell&#39;America del sud tra Argentina e Cile).&lt;br /&gt;
&lt;br /&gt;
Siti di alcune guide &lt;br /&gt;
&lt;a href=&quot;http://www.frommers.com/destinations/argentina/&quot;&gt;Frommers: Argentina&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.lonelyplanetitalia.it/destinazioni/america-del-sud/argentina/&quot;&gt;Lonely Planet: Argentina&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.frommers.com/destinations/chile/&quot;&gt;Frommers: Cile&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.lonelyplanetitalia.it/destinazioni/america-del-sud/cile/&quot;&gt;Lonely Planet: Cile&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Altri siti per info&lt;br /&gt;
Per attraversare la patagonia via la celebre strada &quot;ruta 40&quot;:&amp;nbsp; &lt;a href=&quot;http://www.ruta40.net/&quot;&gt;ruta 40&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Info varie:&lt;br /&gt;
Il vulcano &lt;span style=&quot;font-size: small;&quot;&gt;Chaitén ha ripreso la sua attivita&#39; nel 2008:&lt;/span&gt;&lt;a href=&quot;http://www.volcano.si.edu/world/volcano.cfm?vnum=1508-041&quot;&gt; Situazione Vulcanica: Chaitén&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Cosa portare:&lt;br /&gt;
&lt;a href=&quot;http://www.exploringchile.com/FAQ%27s/Abbigliamento-viaggio-in-Patagonia/chile-s_17/chile.html&quot;&gt;Abbigliamento e ...&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Una piccola &lt;a href=&quot;http://peppergrains.blogspot.com/2010/12/farmacia-da-viaggio.html&quot;&gt;farmacia da viaggio&lt;/a&gt; (che non ho facilemente trovato in rete)</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/5933428681155189034/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2010/12/per-un-viaggio-in-patagonia.html#comment-form' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/5933428681155189034'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/5933428681155189034'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2010/12/per-un-viaggio-in-patagonia.html' title='Per un viaggio in Patagonia'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-4749497749916863375</id><published>2010-12-29T22:22:00.001+01:00</published><updated>2010-12-29T22:30:15.432+01:00</updated><title type='text'>Farmacia da viaggio</title><content type='html'>&lt;span style=&quot;font-size: small;&quot;&gt;(sintesi presa da vari siti + consultazione del Centro di Medicina dei Viaggi e delle Migrazioni)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt; &lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;In questo elenco le classi farmacologiche (antibiotici,  antipiretici eccetera) che dovrebbero far parte di una piccola «scorta»  ragionevole da portare con se&#39; quando si parte per le vacanze. I  principi attivi sono citati solo a titolo di esempio, in quanto fra i  più utilizzati nelle rispettive classi, ma la scelta va fatta seguendo  le indicazioni del proprio medico e modificata in base alla destinazione&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;Oltre che garze, cerotti e disinfettanti:&lt;/span&gt;&lt;br /&gt;
&lt;h2&gt;&lt;div class=&quot;p&quot;&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Antibiotico ad ampio spettro&lt;/b&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; (Amoxicillina+Ac. Clav da 1g / Augmaentin)   &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Antipiretico/analgesico&lt;/b&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;  (Paracetamolo compresse da 500 mg o Acido acetilsalicilico in compresse da 500 mg)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Analgesico/antinfiammatorio&lt;/b&gt;&lt;span class=&quot;b&quot;&gt; &lt;/span&gt;&lt;span class=&quot;b&quot;&gt;&lt;span class=&quot;b&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;(Ibuprofene compresse da 200 mg / Naproxene compresse da 500 mg / Nimesulide) &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;b&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Antistaminico locale&lt;/b&gt;&lt;span class=&quot;b&quot;&gt; &lt;/span&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;(Prometazina crema 2% / Formistin 20 cpr) &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Antitraumatico locale&lt;/b&gt;&lt;span class=&quot;b&quot;&gt; &lt;/span&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;(Diclofenac gel 1%)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;b&gt;Antibiotico Gastroenteriti&lt;/b&gt; (Bactrim) &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Antidiarroico &lt;/b&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;(Loperamide cpr / Imodium) &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Collirio&lt;/b&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; (per esempio Naftazolina)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;A seconda dei casi&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt; &lt;/b&gt;&lt;span class=&quot;b&quot;&gt;&lt;/span&gt;&lt;span class=&quot;b&quot; style=&quot;font-weight: normal;&quot;&gt;in base alle vostre precedenti esperienze:&lt;/span&gt;&lt;b class=&quot;b&quot;&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Lassativo  &lt;span class=&quot;span&quot; style=&quot;font-weight: normal;&quot;&gt; (Lattulosio&lt;/span&gt;&lt;/b&gt;&lt;span class=&quot;b&quot;&gt;&lt;span class=&quot;span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;span&quot; style=&quot;font-weight: normal;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;sciroppo 66,7 %) &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;h2&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;b class=&quot;b&quot;&gt;Antinausea e vomito&lt;/b&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; (Metoclopramide o Domperidone)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/h2&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;h2&gt;&lt;div class=&quot;p&quot;&gt;&lt;/div&gt;&lt;/h2&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-size: small;&quot;&gt;&lt;span class=&quot;b&quot;&gt;Anti Herpes&lt;/span&gt;&lt;span style=&quot;font-weight: normal;&quot;&gt; (Aciclovir crema labiale 5%)&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;/div&gt;&lt;div class=&quot;p&quot;&gt;&lt;/div&gt;&lt;/h2&gt;</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/4749497749916863375/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2010/12/farmacia-da-viaggio.html#comment-form' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/4749497749916863375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/4749497749916863375'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2010/12/farmacia-da-viaggio.html' title='Farmacia da viaggio'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-6873527128831904299</id><published>2010-11-30T22:08:00.001+01:00</published><updated>2010-11-30T22:09:18.163+01:00</updated><title type='text'>Bitcoins</title><content type='html'>Mi sono imbattuto nel sito &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;www.bitcoin.org&lt;/a&gt; Non mi e&#39; ancora chiaro cosa sia davvero. Ma e&#39; affascinante l&#39;idea che ci possa essere un mercato di moneta virtuale che funzioni senza super controllori ma che si basi davvero sul mercato stesso, che sia il suo progetto il suo stesso controllore. &lt;br /&gt;
C&#39;e&#39; da dire che e&#39; possibile guadagnare bitcoins e che questi siano poi scambiabili com altra moneta virtuale&amp;nbsp; o moneta vera. Un bitcoin si aggira intorno ai 0.20 - 0.24 dollari come si puio&#39; vedere nel &lt;a href=&quot;http://www.bitcoinwatch.com/&quot;&gt;mercato dei bitcoins&lt;/a&gt; che sono scambiati in varie borse &lt;a href=&quot;https://mtgox.com/&quot;&gt;mtgox.com&lt;/a&gt; (con un notevole scambio in USD via paypal), &lt;a href=&quot;https://www.bitcoinmarket.com/&quot;&gt;bitcoinmarket.com&lt;/a&gt; (con un volume piu&#39; limitato), &lt;a href=&quot;https://btcex.com/&quot;&gt;btcex.com&lt;/a&gt; (scambio in Rubli, dall&#39;apparenza piu&#39; professionale per l&#39;analista finanziario).&lt;br /&gt;
Ora l&#39;installo anch&#39;io e vi faro&#39; sapere meglio.&lt;br /&gt;
&lt;br /&gt;
PG&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
P.S. Il sito &lt;a href=&quot;http://freebitcoins.appspot.com/&quot;&gt;freebitcoins&lt;/a&gt; regala (come dice il nome del sito stesso) dei bitcoins (0.5 Bitcoins) per invogliare a usare il sistema</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/6873527128831904299/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2010/11/bitcoins.html#comment-form' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/6873527128831904299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/6873527128831904299'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2010/11/bitcoins.html' title='Bitcoins'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-4572153642423993442</id><published>2010-11-24T01:21:00.000+01:00</published><updated>2010-11-24T01:23:12.488+01:00</updated><title type='text'>Cartelli vietato fumare</title><content type='html'>Nell&#39;edificio dove lavoro c&#39;e&#39; qualche personaggio che decide di fumare nel suo ufficio nonostante ci sia una certa legge che lo vieti. Cercavo un file pdf da stampare con su &quot;Vietato Fumare&quot; da affiggere nell&#39;edificio ed in particolare dietro le porte dei fumatori inosservanti. Ecco un &lt;a href=&quot;http://www.moduli.it/item.php/151&quot;&gt;sito&lt;/a&gt; in cui ci sono i cartelli personalizzabili in modo automatico. C&#39;e&#39; anche la modulistica per denunciare e i verbali da accertamento (questi da far trovare dietro la porta dell&#39;incaricato alla sorveglianza)&lt;br /&gt;
&lt;br /&gt;
PG</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/4572153642423993442/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2010/11/cartelli-vietato-fumare.html#comment-form' title='0 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/4572153642423993442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/4572153642423993442'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2010/11/cartelli-vietato-fumare.html' title='Cartelli vietato fumare'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4824916769027301884.post-8409940174173740978</id><published>2010-11-23T01:08:00.000+01:00</published><updated>2010-11-23T01:08:49.804+01:00</updated><title type='text'>Primo Post</title><content type='html'>Questo e&#39; il primo post e dovrei scrivere le mie intenzioni. Per il momento l&#39;unica intenzione e&#39; quella di sperimentare come funziona un blog e tutti i suoi ammennicoli.&lt;br /&gt;
Cerchero&#39; di proporre quello che nella rete mi suscita interesse e anche il&amp;nbsp; viceversa, ossia quello che trovo sul web indotto dal vivere quotidiano.&lt;br /&gt;
Molti dei link e post saranno anche e soprattutto a mia futura memoria ma spero che le mie navigazioni&amp;nbsp; vi incuriosiscano almeno un po&#39;.&lt;br /&gt;
&lt;br /&gt;
PG</content><link rel='replies' type='application/atom+xml' href='http://peppergrains.blogspot.com/feeds/8409940174173740978/comments/default' title='Commenti sul post'/><link rel='replies' type='text/html' href='http://peppergrains.blogspot.com/2010/11/primo-post.html#comment-form' title='2 Commenti'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/8409940174173740978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4824916769027301884/posts/default/8409940174173740978'/><link rel='alternate' type='text/html' href='http://peppergrains.blogspot.com/2010/11/primo-post.html' title='Primo Post'/><author><name>P. Grain</name><uri>http://www.blogger.com/profile/00813779610335243898</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='31' height='23' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0QtKt2OXgNoR250S_pHDhhRy_2TV2_Y7Nwmu6lTolJrfNlqg71wNTee_OobHTqZv1FNMWCOxaIOX06qzgVHt-V4Npd-UDDj_PMw3mgRXlTzVlXuLbY5LpuCiiAhIPxQ/s220/multicolor-grains-of-pepper.jpg'/></author><thr:total>2</thr:total></entry></feed>