Skip to content

Commit

Permalink
Convert thumbnails to jpgs
Browse files Browse the repository at this point in the history
  • Loading branch information
wcedmisten committed Apr 22, 2024
1 parent 48a926e commit 706f1d0
Show file tree
Hide file tree
Showing 20 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion articles/analyzing-keycap-estimates.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Evaluating Mechanical Keyboard Delivery Estimates with Python Web Scraping"
date: "2022-07-13"
thumbnail: "/thumbnails/analyzing-keycap-estimates.png"
thumbnail: "/thumbnails/analyzing-keycap-estimates.jpg"
thumbnailAlt: "Novelkeys.com product updates page"
description: "Evaluating the accuracy of Novelkeys.com's delivery estimates using beautifulsoup and matplotlib"
tags: ["python", "web scraping", "data visualization", "matplotlib", "beautifulsoup"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Comparing User Activity on two OSM Data Imports Communication Channels"
date: "2023-06-19"
thumbnail: "/thumbnails/comparing-communication-on-osm-imports.png"
thumbnail: "/thumbnails/comparing-communication-on-osm-imports.jpg"
thumbnailAlt: "A comparison of two OSM import communication channels"
description: "Comparing two different channels that OpenStreetMap contributors use to discuss data imports."
tags: ["openstreetmap", "python", "web scraping", "data visualization", "matplotlib"]
Expand Down
2 changes: 1 addition & 1 deletion articles/isochrone-walkability.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Measuring Walkability with Openstreetmap and Isochrone Maps"
date: "2022-10-20"
thumbnail: "/thumbnails/isochrone-walkability.png"
thumbnail: "/thumbnails/isochrone-walkability.jpg"
thumbnailAlt: "Pedestrian isochrone map of Richmond, Virginia. Map copyright Openstreetmap."
description: "Measuring urban walkability using isochrone maps and Valhalla on openstreetmap data"
tags: ["openstreetmap", "python", "postgis", "isochrone"]
Expand Down
2 changes: 1 addition & 1 deletion articles/keyboard-shortcuts-userscripts.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Adding Keyboard Shortcuts to a 24 Year Old Government Website with Userscripts"
date: "2024-02-19"
thumbnail: "/keyboard-shortcuts-userscripts/fda-510k-2000.png"
thumbnail: "/thumbnails/keyboard-shortcuts-userscripts.jpg"
thumbnailAlt: "A screenshot of the FDA's 510k databse in October, 2000"
description: "Writing userscripts to optimize my data entry workflow with the FDA's 510k database."
tags: ["javascript", "userscripts", "510k"]
Expand Down
2 changes: 1 addition & 1 deletion articles/medical-device-analysis.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "A Copy of a Copy of a Copy: the Story of FDA Medical Device Clearances"
date: "2024-03-10"
thumbnail: "/medical-device-analysis/thumbnail.png"
thumbnail: "/thumbnails/medical-device-analysis.jpg"
thumbnailAlt: ""
description: "Uncovering medical device ancestry from the FDA's 510k data and creating a free website for exploring it."
tags: ["python", "sqlite", "510k"]
Expand Down
2 changes: 1 addition & 1 deletion articles/self-hosting-osm.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Self Hosting a Google Maps Alternative with OpenStreetMap"
date: "2022-11-20"
thumbnail: "/thumbnails/self-hosting-osm.png"
thumbnail: "/thumbnails/self-hosting-osm.jpg"
thumbnailAlt: "Routing from DC to Seattle on my Self Hosted Setup."
description: "Self hosting a software stack to replace Google Maps on an unused gaming PC."
tags: ["openstreetmap", "valhalla", "self-hosting", "docker"]
Expand Down
2 changes: 1 addition & 1 deletion articles/upgrading-with-headway-maps.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Upgrading My Self Hosted Maps with Headway"
date: "2022-12-11"
thumbnail: "/thumbnails/upgrading-with-headway-maps.png"
thumbnail: "/thumbnails/upgrading-with-headway-maps.jpg"
thumbnailAlt: "A screenshot of a map showing Denver"
description: "Improving my self hosted maps stack by moving to Headway."
tags: ["openstreetmap", "valhalla", "pelias", "vector-tiles", "self-hosting", "headway"]
Expand Down
2 changes: 1 addition & 1 deletion articles/visualizing-hospital-accessibility.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Mapping Hospital Accessibility with OpenStreetMap"
date: "2023-04-03"
thumbnail: "/og-images/virginia-hospital-distance.png"
thumbnail: "/thumbnails/virginia-hospital-distance.jpg"
thumbnailAlt: "A map of Virginia showing driving distance to hospitals."
description: "Using OpenStreetMap data to craft a self-hosted interactive map of hospital accessibility in Virginia."
tags: ["openstreetmap", "valhalla", "isochrones", "python", "planetiler", "protomaps"]
Expand Down
8 changes: 7 additions & 1 deletion components/PostItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ interface PostItemProps {
location?: string | JSX.Element
}

declare module "react" {
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
fetchPriority?: 'high' | 'low' | 'auto';
}
}

export default function PostItem(props: PostItemProps
) {
const { href, thumbnailURL, title, description, date, thumbnailAlt, readingLength, location } = props;
Expand All @@ -31,7 +37,7 @@ export default function PostItem(props: PostItemProps
<Image
src={thumbnailURL}
fluid
width={"100%"}
width="400px"
rounded
alt={thumbnailAlt}
className="post-thumbnail border" />
Expand Down
Binary file added public/thumbnails/analyzing-keycap-estimates.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/isochrone-walkability.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/medical-device-analysis.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/medical-device-analysis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/self-hosting-osm.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/upgrading-with-headway-maps.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/virginia-hospital-distance.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thumbnails/virginia-hospital-distance.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 706f1d0

Please sign in to comment.