After three overtimes, Tyler Reddick won the NASCAR race in Austin
https://formula.hu/parc-ferme/35127
Great anticipation preceded the first race of the NASCAR Cup Series on a built-in track this year, hosted by COTA in Austin. Many participants took part in the race, such as world champions Formula 1 Kimi Raikkonen and Jenson Button, Jordan Taylor, known for sports cars, who was Chase Elliott’s deputy, but seven-time champion Jimmy Johnson was also in the field again. After qualifying, William Byron took pole position, with Tyler Reddick starting next to him, Austin Cindrick and Taylor could occupy the second row, while Johnson and the Formula 1 stars had to be found deep in the field.
After the start, nothing worthwhile happened yet, but going into lap two, the first yellow flag came right away. Then there was the incident before the final corner after a foul by Brad Keselowski ended the race between Jimmy Johnson and Ty Dillon. Byron won the first stage, but it was already under another yellow due to two consecutive crashes by Kyle Larson, and the second stage was already closed by Riddick in the lead. The final stage of the race then came with a great battle between the two, but it flared up with many dramatic events. At first it seemed that everyone would have to conserve fuel, but the car stalled under Keselowski, so almost everyone came to the pits, which was good for Christopher Bell, Kyle Busch, Ryan Preece, Hamlin and Räikkönen.
They all went into the lead, but Bosch was the only one who could stay up there against the others. Then the yellow came first for Ross Chastain, then a little later because of the amount of debris on the track, so in the end the decision was left to the two-lap overtime, but things didn’t go smoothly there either, as three times were run due to the constant crashes and the condition of track when the race is over. However, Tyler Reddick was able to stay in the lead every time and eventually deserved the win over Kyle Busch and Alex Bowman.
As for the former Formula 1 drivers, Jenson Button was always in the second half of the field, waved the checkered flag in 18th place, Kimi Raikkonen was not lucky this time either. The Finnish rider completed the majority of the race with a broken distributor, though he was in the top five thanks to the strategy, but he crashed in the last race and also got a time penalty, thus finishing only 29th.
function fb__setCookie(name, value, expireMin) { if( parseInt(expireMin) > 0 ){ var date = new Date(); date.setTime(date.getTime()+(parseInt(expireMin)*60*1000)); var expires = "; expires="+date.toGMTString(); } else { var date=new Date(); date.setDate(date.getDate() + 300); var expires = "; expires="+date.toGMTString(); } document.cookie = name+"="+value+expires+"; path=/"; }
function statusChangeCallback(response) { console.log(response); if (response.status === 'connected') { testAPI(); } else { } }
function checkLoginState() { console.log(2); FB.getLoginStatus(function(response) { statusChangeCallback(response); }); }
jQuery(document).ready(function(){ jQuery(document).on('click','#fb-cust',function(e){ e.preventDefault(); //FB.login(statusChangeCallback, {scope: 'email,public_profile', return_scopes: true}); FB.login(statusChangeCallback, { scope: 'email', return_scopes: true }); }); });
window.fbAsyncInit = function() { FB.init({ appId : '483335665730477', cookie : true, xfbml : true, version : 'v3.3' });
FB.getLoginStatus(function(response) { //statusChangeCallback(response); }); };
(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
function testAPI() { $('.fblogin_er').addClass('hidden'); var url = window.location.href; var parse_url = parseURL(url);
var redirect_to = decodeURIComponent(parse_url.params.redirect_to);
if( ( redirect_to == 'undefined' ) || ( validateURL( redirect_to ) == false ) ) { redirect_to = 'https://formula.hu/profil' }
FB.api('/me?fields=name,email,first_name,last_name', function(response) {
$.ajax({ type: "POST", url: "ajax.php", dataType: 'json', data: "act=fblogin&email=" + encodeURIComponent(response.email) + "&first_name=" + encodeURIComponent(response.first_name) + "&last_name=" + encodeURIComponent(response.last_name) + "&id=" + encodeURIComponent(response.id) + "&redirect_to=" + encodeURIComponent(redirect_to), cache: false, success: function(obj){ if (obj.msg == '#OK#') { if(fb__getCookie('quiz_backurl')){ window.location.replace(fb__getCookie('quiz_backurl')); } else { window.location.replace(obj.redirect_to); } } else { $('.fblogin_er').html(obj.msg); $('.fblogin_er').removeClass('hidden'); } }, error: function(ex,ey,ez){
} }); return false;
}); } }
function validateURL(surl) { var url = parseURL(surl); var urlHostname = url.hostname.trim();
if (urlHostname == '') { return true; } else { if (urlHostname.toUpperCase() == location.hostname.trim().toUpperCase()) { return true; } else return false; } }
function parseURL(url) { var a = document.createElement('a'); a.href = url; return { source: url, protocol: a.protocol.replace(':', ''), hostname: a.hostname, host: a.host, port: a.port, query: a.search, params: (function () { var ret = {}, seg = a.search.replace(/^\?/, '').split('&'), len = seg.length, i = 0, s; for (; i < len; i++) { if (!seg[i]) { continue; } s = seg[i].split('='); ret[s[0]] = s[1]; } return ret; })(), file: (a.pathname.match(/\/([^\/?#]+)$/i) || [, ''])[1], hash: a.hash.replace('#', ''), path: a.pathname.replace(/^([^\/])/, '/$1'), relative: (a.href.match(/tps?:\/\/[^\/]+(.+)/) || [, ''])[1], segments: a.pathname.replace(/^\//, '').split('/') }; }