Thursday, May 22, 2008

What Can Iron Tablets Do To Your Poo



Prius plant
Here we are, after so much thinking about how to do without spending a madness I think they finally reached a point with the audio system.
The strong points are: do not change (too) the aesthetics of the car, keep all the functionality of the machine and I think I succeeded. The pictures are commented and resume in a non-technical a bit 'all the characteristics of the plant except the integration of steering wheel that was made with the interface of the Pacific Audio SWI-JACK (found solo in Germania) e il vivavoce fatto in casa che consiste semplicemente nell'utilizzare l'ingresso aux sotto il bracciolo principale.
L'autoradio di serie è scollegata e presto (spero) verrà sostituita da un monitor touch screen e dietro di esso un pc mini-itx Atom per navigatore, ipod con uscita digitale e poi vedrò quant'altro riuscirò a fare prendendo spunto (o collaborando, chissà) con il progetto "Mobile Linux" sponsorizzato tanto negli ultimi tempi da Intel.
Per quanto riguarda invece l'audio in sè penso che la ricostruizione dei montanti e l'aggiunta dei medi passerà direttamente all'anno prossimo, sempre ovviamente che mi decida a fare il passo.

Monday, May 19, 2008

How Long Will Mayo Packets Last?

Florentine

Car Hi-Fi (Arezzo 05-2008)

Two Saturdays ago I went to a rally near Arezzo in a forum car hi-fi with Perry and his other friends. I must admit that I've heard a few of the machines in the room with hand bells and whistles starting from starter all'ammazzacaffè .. many ammazzacaffè: D All very good although the prices of Tuscan inns are not really affordable (I have no problems then saved on dinner). The menu consisted of toasted bread with salami, finocchiona, liver pate, hot sauce as an appetizer. Who took a Florentine (minimum 1kg) and who, like me, preferred as the first pappardelle with wild boar and roe deer as a second cut to oil and pepper. The day literally flew between talk and bottles of chianti.
A big thank you to all participants)
Car Hi-Fi Bagnolo 2008

The second album is of the following day to rally for Bagnolo race car hi-fi, 3rd place, with becks and Mitch who first came, taking me a bit 'warm beer by saving them from the car park (and Darius, gave to Laura and the rest of the day;)).
E 'was a day diversa ma se devo essere sincero non penso lo rifarei da solo, qualcuno vuole aggregarsi per un picnic al sole aspettando i giudici?

Sharp Pains 39 Weeks Pregnant

What Hi-Fi windows of balls M.!

Direi che è abbondantemente la frase che mi esce di bocca più spesso in ufficio, da buon linuxaro il passaggio del mio pc da linux a windows in ufficio è stato abbastanza drammatico (tant'è che tutt'ora stò lavorando sì con windows ma utilizzando Cygwin come shell emulando quella di linux.
Ho provato per un mese vista e nonostante pensassi fosse lento devo ammettere che graficamente non è male, non è una lumaca (ma nemmeno una lepre.. un rabbit piuttosto!) ma per molte cose è assolutamente insensato from that annoying feature that asks you if you're sure to do anything. The straw that broke the camel's back is fierce was trying to write to a pen drive: any file to be approved?!? ... uninstall ok: D
Moral: Now I'm downloading Ubuntu 8.04 LTS (LTS = Long Term Support) as I vent on the blog hoping that we have improved something. We'll see;)

Thursday, May 8, 2008

Cool Virtual Worlds Like Poptropica

improve the privacy of our browser. The sound system takes shape


For some 'time I decided to put all the applications I use most often on a USB key to be able to have my browser, messenger and whatever' other always with me. The most striking example
is to have both at work and at home on the same browser, the same configurations, extensions and bookmarks even if it could be extended to schools free internet point.
Sign in with your passwords from public places is still "dangerous" because many services do not use https and thus can be intercepted by some attacker on the same network.

To reduce the problem I decided to use Greasemonkey and a script that I created specifically for my needs. Greasmonkey is a plugin for firefox that allows you to execute javascript on the pages selected by the user, my goal is to check all the pages that are opened (exceptions made for https pages) and change all links to a list of http to https sites. In so doing qunado select a link to gmail page will load automatically and safely shut-off test (.. or at least complicates the lives of those who would like to intercept these pages).
 / / == == UserScript 
/ / @ name Google
Utilities / / @ namespace http://riekr.blogspot.com/
/ / @ description Some nice utilities
google / / @ include http:/ / *
/ / @ exclude https: / /
* / / == / == UserScript

scrollIGoogleDown = true;
fixHTTPLinks = true;

if (scrollIGoogleDown) {
scrollIGoogleDown= false;
if(location.href.match("\.google\.com/ig")!=null)
scroll(0,25);
}
if(fixHTTPLinks) {
fixHTTPLinks= false;
var patterns= [
'http://mail.google.',
'http://www.google.com/calendar',
'http://groups.google.com/group/il-conclave-della-bassa'
];
for(var p = 0; p < patterns.length; p++) {
var pageLinks = document.evaluate("//a[@href[contains(.,'"+patterns[p]+"')]]", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null); Var
currentLink;
for (var i = 0; i \u0026lt;pageLinks.snapshotLength i + +) {
currentLink pageLinks.snapshotItem = (i);
currentLink.href currentLink.href.replace = (/ ^ http:/, ' https: ');

}}}
If you install greasemonkey can copy and paste the javascript Rise up here in a new script (I called it my "Google Utilities"). Maybe I'll post up userscripts.org even though I've noticed that unfortunately many scripts for greasmonkey are sketchy, incomplete or even create more problems than it would solve.

Links:
Applications for USB Flash Drive , Greasemonkey, Greasemonkey user scripts (!) .