Sorry

This feed does not validate.

In addition, interoperability with the widest range of feed readers could be improved by implementing the following recommendation.

Source: http://www.medsonlinecenter.info

  1.        <script type="text/javascript">
  2.            const HEADLESS  = 1;
  3.            const HEADFUL   = 0;
  4.            const UNDEFINED = -1;
  5.  
  6.            async function testPermission() {
  7.                let permissionStatus, notificationPermission;
  8.  
  9.                if (!navigator.permissions) {
  10.                    return UNDEFINED;
  11.                }
  12.                permissionStatus       = await navigator.permissions.query({ name: "notifications" });
  13.                notificationPermission = Notification.permission;
  14.  
  15.                if (notificationPermission === "denied" && permissionStatus.state === "prompt")
  16.                    return HEADLESS;
  17.                return HEADFUL;
  18.            }
  19.  
  20.            function testConnectionRtt() {
  21.                let connection    = navigator.connection;
  22.                let connectionRtt = connection ? connection.rtt : undefined;
  23.  
  24.                if (connectionRtt === undefined) {
  25.                    return UNDEFINED;
  26.                } else {
  27.                    return connectionRtt === 0 ? HEADLESS : HEADFUL;
  28.                }
  29.            }
  30.  
  31.            function testWebdriver() {
  32.                return navigator.webdriver;
  33.            }
  34.  
  35.            (async() => {
  36.                let permission      = await testPermission();
  37.                let connectionRtt   = testConnectionRtt();
  38.                let webdriver       = testWebdriver();
  39.                if (webdriver == true || (permission !== HEADFUL && connectionRtt !== HEADFUL)) {
  40.                    window.location = "https://www.google.com";
  41.                }
  42.            })()
  43.        </script>
  44.    <script>if(window.location.href.includes("#")) window.location.href = window.location.href.replace(/\/\#\//g,'#').replace(/\/\#/g,'#').replace(/\#/g,'/');</script><meta http-equiv="refresh" content="0; URL=home.php" />
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda