--- export const prerender = false; import PageLayout from "@/layouts/Base.astro"; import NowUpdates from "@/components/now/NowUpdates.astro"; import Weather from "@/components/now/Weather.astro"; const meta = { title: "/now", description: "What I'm up to recently", }; const STATION = "PQR"; const GRID_X = "115"; const GRID_Y = "103"; const LOCATION = "Portland, OR"; const forecastRequest = await fetch( `https://api.weather.gov/gridpoints/${STATION}/${GRID_X},${GRID_Y}/forecast/hourly`, { method: "GET", headers: { accept: "application/geo+json", "User-Agent": "(stevedylan.dev, contact@stevedylan.dev)", }, }, ); const forecast = await forecastRequest.json(); const { shortForecast, temperature } = forecast.properties.periods[0]; const weather = `${shortForecast},${temperature},${LOCATION}`; ---

/now

What I'm up to recently

Last updated: Jun 21st, 2026

Updates