Hacker News new | ask | show | jobs
by arcastroe 706 days ago
Looks like it's no longer in the html source, but it can still be viewed in the javascript source code:

if (status === "inside") {

   text.push("i am the only person who can see this website.");

   text.push(link);

   if (waiting > 1) {

     text.push(`${queueLength - 1} people are waiting to get in.`);

   }

   text.push("want to see it? get in line, sucker.");

 } else {

   text.push("only one person at a time gets to see this website.");

   text.push(link);

   text.push("get in line behind me.");

   if (waiting > 1) {

     text.push(`currently, ${waiting} people are waiting.`);

   }

 }



 text.push("i'm here for me.");
1 comments

I believe that's only the tweet text and not the page content when you are "inside" in the JS.

That code is in the tweetUrl function and later on it returns an encoded twitter url.