Vai al contenuto
View in the app

A better way to browse. Learn more.

Autopareri

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

F1 2018 - Baku

Featured Replies

Inviato
Spoiler

Se qualche mese fa mi avessero detto che mi sarei rammaricato per una mancata terza prima fila Ferrari consecutiva mi sarei fatto una risata. 

Domani bisogna portarla a casa, SC e mentecatto olandese permettendo. 

 

Schermata 2021-05-22 alle 10.10.43.png

  • Risposte 189
  • Visite 29.3k
  • Creato
  • Ultima Risposta

I più attivi nella discussione

Most Popular Posts

Immagini Pubblicate

Inviato
Spoiler

Minki@! Prima del "fattaccio", al primo intertempo aveva 225 millesimi in meno sul tempo della pole di Vettel....:lol:. Secondo me, è quel popò di mugliere che gli ha fatto bene....:lol:

 

Spoiler

Comunque Raikko parte con US e con quel rettilineo non dovrebbe essere un'impresa proibitiva dare la paga ai bibitari, anche se quest'ultimi viaggiano belli scarichi al retrotreno...

 

. “There are varying degrees of hugs. I can hug you nicely, I can hug you tightly, I can hug you like a bear, I can really hug you. Everything starts with physical contact. Then it can degrade, but it starts with physical contact." SM su Autonews :rotfl:

Inviato
Spoiler

Ma poi, vedendo il tempo che stava facendo l’arzillo vegliardo, che razza di potenziale ha questa macchina in qualifica? ?

 

Schermata 2021-05-22 alle 10.10.43.png

Inviato
3 minuti fa, Unperdedor dice:
  Nascondi Contenuto

Ma poi, vedendo il tempo che stava facendo l’arzillo vegliardo, che razza di potenziale ha questa macchina in qualifica? ?

 

Spoiler

Infatti Vettel ha ammesso di non aver fatto un giro perfetto...peccato per l’errore di Kimi e comunque ha fatto un gran controllo per tenerla.

 

Inviato
17 minuti fa, Unperdedor dice:
  Nascondi Contenuto

Ma poi, vedendo il tempo che stava facendo l’arzillo vegliardo, che razza di potenziale ha questa macchina in qualifica? ?

 

Spoiler

Io credo che possiamo dire a questo punto quale sia la vittima principale delle nuove regole 2018 sul consumo dell'olio. E' possibile/probabile che sia una macchina non rossa diciamo così.....:mrgreen:

 

13 minuti fa, hot500abarth dice:
  Nascondi Contenuto

Infatti Vettel ha ammesso di non aver fatto un giro perfetto...peccato per l’errore di Kimi e comunque ha fatto un gran controllo per tenerla.

 

Spoiler

Ricorda che è pur sempre di un rallista che parliamo, per di più finlandese....;)

 

8b56c69324c2eddd1330b305420e6ae8.jpg

 

>:):rotfl:

 

 

 

Modificato da pennellotref

. “There are varying degrees of hugs. I can hug you nicely, I can hug you tightly, I can hug you like a bear, I can really hug you. Everything starts with physical contact. Then it can degrade, but it starts with physical contact." SM su Autonews :rotfl:

Inviato
7 minuti fa, GL91 dice:

Anche se il timer non mi pare molto preciso, dice che l'ultimo crash risale a 6 ore fa (o mi sono perso io qualcosa?)

 

deve esserci qualche errore nella compilazione dello script (manca il numero dei giorni? :dubbio:)

 

Spoiler
setInterval(function() {
  var lastCrash = moment('2018-04-27 10:34');
  var diff = moment().diff(lastCrash, 'minutes');
  $('.time-since-crash').html('Time since last crash: ' + moment.utc(moment().diff(lastCrash)).format('HH [hours] mm [minutes] ss [seconds] [ago]'));
  }, 1000);

 

 

Quello della Mclaren è un poco più complesso ;)

 

Spoiler
 
   
  upTimeVar = 'nov,25,2012,00:00:00';
  where = 'Interlagos, Brazil';
  who = 'Jenson Button';
   
   
   
  showWin = 0;
  once = 0;
  /*
  * Basic Count Up from Date and Time
  * Author: @mrwigster / trulycode.com
  */
  function viewWin() {
  if (showWin == 0) {
  showWin = 1;
  document.getElementById('bg').style.opacity = "0.3";
  document.getElementById('whereJS').firstChild.nodeValue = where;
  document.getElementById('whoJS').firstChild.nodeValue = who;
  document.getElementById('where').style.display = "block";
  document.getElementById('who').style.display = "block";
  document.getElementById('viewWin').firstChild.nodeValue = 'Hide Last Win';
  } else {
  showWin = 0;
  document.getElementById('bg').style.opacity = "0";
  document.getElementById('where').style.display = "none";
  document.getElementById('who').style.display = "none";
  document.getElementById('viewWin').firstChild.nodeValue = 'Show Last Win';
  } }
  function upTime(countTo) {
  nowLocal = new Date();
  nowLocalTimestamp = nowLocal.getTime();
  timezone = nowLocal.getTimezoneOffset() * 60000;
  now1 = nowLocalTimestamp + timezone;
  now = new Date(now1);
  countTo = new Date(countTo);
  difference = (now-countTo);
   
  years=Math.floor(difference/(60*60*1000*24*365)*1);
  months=(Math.floor(difference/((60*60*1000*24*365)/12)*1))-(years*12);
  days=Math.floor((difference/(60*60*1000*24)*1)-(years*365)-((months/12)*365));
   
  document.getElementById('years').firstChild.nodeValue = years;
  document.getElementById('months').firstChild.nodeValue = months;
  document.getElementById('days').firstChild.nodeValue = days;
   
  if (showWin == 1) {
  document.getElementById('bg').style.opacity = "0.3";
  } else {
  document.getElementById('bg').style.opacity = "0";
  }
   
  answer='Nope';
  quip="But they've got the 'best chassis'";
  document.body.style.background = "#FFCCCC";
   
  if (years == 0 && months == 0 && days < 7 && once == 0) {
  showWin = 0;
  viewWin();
  once = 1;
  }
   
  if (years == 0 && months == 0 && days < 7) {
  answer='Yes!';
  quip='Wait, who are McLaren again?';
  document.body.style.background = "#CCFFCC";
  }
   
  document.getElementById('answer').firstChild.nodeValue = answer;
  document.getElementById('quip').firstChild.nodeValue = quip
  clearTimeout(upTime.to);
  upTime.to=setTimeout(function(){ upTime(countTo); },1000);
  }

 

 

Crea un account o accedi per lasciare un commento

Background Picker
Customize Layout

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.