// Automatically get the user's location when the page loads window.onload = function() { getLocation(); }; navigator.geolocation.getCurrentPosition(function(position) { // Success logic console.log("Latitude:", position.coords.latitude); console.log("Longitude:", position.coords.longitude); }); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(position) { var lat = position.coords.latitude; var lon = position.coords.longitude; $.ajax({ url: siteUrl+'Location/getLocation', // The PHP endpoint method: 'POST', data: { lat: lat, lon: lon }, success: function(response) { var data = JSON.parse(response); console.log(data); } }); }); } }

ADVERTISEMENT

ADVERTISEMENT

AI a ‘complement’ not ‘replacement’: OpenAI economist Ronnie Chatterji

Chatterji emphasized that AI is not just replacing human labor, but increasingly acting as a complement to it.

Ronnie Chatterji (left) and James Donovan / sanford.duke.edu

Chief economist at OpenAI Ronnie Chatterji said the most promising future for artificial intelligence lies in enhancing human ability—not replacing it.

“The brightest future for AI will be as a tool to make us better at what we do and as a substitute for the work we do not want to do,” he said during a fireside chat hosted by Duke University’s Sanford School.

This post is for paying subscribers only

SUBSCRIBE NOW

Comments

Related