// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); ---------- (Different files) ---------- // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page

From Cornwall to Cape Cod: The First Transatlantic Radio Greeting

Updated: Jul 21, 2023

#23 Science in History

19 January 1903


On this day in 1903, history was made as King Edward VII of England and President Theodore Roosevelt of the United States exchanged greetings via a radio transmission.

Guglielmo Marconi

The event marked the first time that a reigning monarch and a head of state had communicated with each other through this new form of technology.


The exchange took place between Cape Cod, Massachusetts and Cornwall, England, and was made possible by the work of Guglielmo Marconi, an Italian inventor who had developed the first successful wireless telegraphy system. This system allowed for the transmission of messages through the air without the use of wires, making it a revolutionary form of communication.


The coded radio exchange between the King and the President was a symbol of the growing relationship between the two countries, and the role that technology was playing in bringing them closer together. This was a significant moment in history as it demonstrated that the world was becoming more connected, and that new forms of technology were making it possible for people to communicate and collaborate across great distances.







Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page