top | item 39072107

Placemark is now open source

3 points| lbutler | 2 years ago |macwright.com

3 comments

order

dartos|2 years ago

Redirects to google?

daenney|2 years ago

Yes. In their JS, they check if you're coming from HN:

      if (document.referrer) {
        const ref = new URL(document.referrer);
        if (ref.host === 'news.ycombinator.com') {
          window.location.href = 'https://google.com/';
        }
      }

You can copy-paste the link instead and it loads as expected.