Watch our free webinar: Building AI software teams? Do you hire, rent… or upskill?

This 45 minute session will help CTOs to understand why equipping their software teams with AI skills is essential for staying competitive in today’s tech landscape. Throughout we provide ideas on how AI can boost your team’s productivity and help you build smarter, AI-driven applications.

Join Edifai co-founder Nick Villani and expert Tom Szekeres as they explore the following:

  • Why AI projects often fail
  • How to effectively deploy AI
  • Changing talent requirements

Tom Szekeres

Our special guest:

Tom Szekeres

Tom Szekeres is an AI & Marketing Strategy Director with experience across North America, Europe, and Asia. He has worked with companies like Orange, BBC, and Google, and has delivered over 350 training courses. He also built Subship, an AI-powered grocery delivery service, and founded This Here, a social media agency.

// This will run on every page load window.addEventListener('load', function() { // Log which page we're on console.log('Page URL:', window.location.href); // Check if Calendly exists console.log('Calendly loaded:', typeof Calendly !== 'undefined'); // Find all Calendly buttons on the page const calendlyButtons = document.querySelectorAll('[data-calendly]'); console.log('Found Calendly buttons:', calendlyButtons.length); // Log each button's URL calendlyButtons.forEach(button => { console.log('Button URL:', button.getAttribute('data-calendly')); }); document.addEventListener('click', function(e) { const calendarLink = e.target.closest('[data-calendly]'); if (calendarLink) { console.log('Button clicked!'); e.preventDefault(); const calendlyUrl = calendarLink.getAttribute('data-calendly'); console.log('Trying to open:', calendlyUrl); Calendly.initPopupWidget({url: calendlyUrl}); return false; } }); });