I Built a One File Edge Probe to Tell Me When Time Is Lying
physical-ai.ghost.io
I Built a One File Edge Probe to Tell Me When Time Is Lying
1–9 of 9 posts
Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#2Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#3Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#4Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#5Interesting, but why not use the timestamp baked into response headers? There's also domain.tld/cdn-cgi/trace for cloudflare. I don't know how cloudflare will take using that page for this though.
Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#6
(you need to change "/time" to "/time.aspx" for the original HTML page to work)Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#7Interesting, but why not use the timestamp baked into response headers? There's also domain.tld/cdn-cgi/trace for cloudflare. I don't know how cloudflare will take using that page for this though.
Cross-origin stuff doesn’t always let you get access to those headers and they may not always be there. Some web servers don’t put that there, some do. Some frameworks add them, some don’t.
Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#8Interesting, but why not use the timestamp baked into response headers? There's also domain.tld/cdn-cgi/trace for cloudflare. I don't know how cloudflare will take using that page for this though.
Cross-origin stuff doesn’t always let you get access to those headers and they may not always be there. Some web servers don’t put that there, some do. Some frameworks add them, some don’t.
Access-Control-Allow-Origin: * (or site origin), and Cache-Control: no-store
Also, watch for mixed content (HTTPS page trying to fetch HTTP gateway), either serve the probe from the gateway or expose /time over HTTPS.
Re: I Built a One File Edge Probe to Tell Me When Time Is Lying
#9A simple (and stupid) /time.aspx in VB.NET, because that's what was easily available: (you need to change "/time" to "/time.aspx" for the original HTML page to work)