|
|
|
|
|
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.");
|
|
That code is in the tweetUrl function and later on it returns an encoded twitter url.