Skip to content

Commit

Permalink
Add blog post about event with TPG
Browse files Browse the repository at this point in the history
Fix glob in getBlogImage.ts to look in subdirectories as well.
  • Loading branch information
fwextensions committed Sep 22, 2024
1 parent e272ab4 commit 18c381d
Show file tree
Hide file tree
Showing 7 changed files with 72 additions and 1 deletion.
Binary file added src/assets/blog/2024-05-15/photo-1.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 src/assets/blog/2024-05-15/photo-2.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 src/assets/blog/2024-05-15/photo-3.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 src/assets/blog/2024-05-15/photo-4.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 src/assets/blog/2024-05-15/photo-5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 71 additions & 0 deletions src/content/blog/2024-05-15-crafting-impactful-narratives.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
---
title: "Crafting Impactful Narratives with Technologists for the Public Good"
description: >
SF Civic Tech and Technologists for the Public Good hosted their first in-person event post-Covid. The gathering featured insights from civic tech veterans Tom Dooner, Marnie Webb, and Nick Okafor, who shared expertise on effective storytelling, stakeholder engagement, and integrating STEM education with social equity to drive meaningful change in public interest technology.
image: 2024-05-15/photo-1.jpg
authors:
- Janice Tam
---

On May 15, 2024, SF Civic Tech, in collaboration with [Technologists for the Public Good](https://www.publicgood.tech/), hosted an inspiring event entitled *Crafting Impactful Narratives: Presenting on Public Interest Tech*. This event was our first in-person event post-Covid, bringing together cross-sector professionals and enthusiasts dedicated to making a difference in the public sector. Held alongside our [civic hack night](https://www.meetup.com/sfcivictech/), the event featured insightful presentations from leading voices in the field.


## Event Highlights

We had the privilege of hearing from three veterans in civic tech who shared their expertise on presenting work in public interest technology:


<h2>
Tom Dooner<br>
<span style="font-size: .65em; font-style: italic; font-weight: normal">
Senior Software Engineer at Nava Public Benefit Corporation
</span>
</h2>

![photo-2.jpg](../../assets/blog/2024-05-15/photo-2.jpg)

Tom emphasized the importance of storytelling in public applications. Drawing from Jennifer Pahlka’s book *Recoding America*, he highlighted why simplifying problems, humanizing stories, and focusing on transformative journeys are crucial. His five key qualities for impactful narratives include:

* Simplifying the problem
* Telling human stories
* Outlining the “before,” “during,” and “after”
* Answering “so what”
* Ending with a vision


<h2>
Marnie Webb<br>
<span style="font-size: .65em; font-style: italic; font-weight: normal">
Chief Impact Officer at TechSoup and CEO at Caravan Studios
</span>
</h2>

![photo-3.jpg](../../assets/blog/2024-05-15/photo-3.jpg)

Marnie shared five pieces of advice for strengthening worker welfare programs through design, data, delivery, impact, and community. Marnie’s insights emphasized stakeholder engagement, clear milestones, and the importance of leading with impact to foster an inclusive community.


<h2>
Nick Okafor<br>
<span style="font-size: .65em; font-style: italic; font-weight: normal">
Founder and Executive Director of Trubel & Co
</span>
</h2>

![photo-4.jpg](../../assets/blog/2024-05-15/photo-4.jpg)

Nick introduced us to the Liberatory Framework, a visionary approach integrating STEM education with social equity. His curriculum includes geospatial data analytics, race, power, and technology, and self-directed student capstones. Nick stressed the importance of documenting work, ensuring accessibility, and presenting narratives that connect and inspire action.


## Key Takeaways

The event underscored how each of us can make a significant impact on our communities. By understanding the power of effective storytelling, engaging with stakeholders, and focusing on measurable impact, we can drive meaningful change. It all starts with the desire to see a difference and the willingness to take action.


## Gratitude and Acknowledgements

![photo-5.jpg](../../assets/blog/2024-05-15/photo-5.jpg)

A heartfelt thank you to [Technologists for the Public Good](https://www.publicgood.tech/) for their partnership and invaluable contributions in making this event a success. We are also immensely grateful to GitHub for providing the space that made this gathering possible.

Together, we can continue to innovate and create a better future for our communities. Stay tuned for more events and opportunities to engage with SF Civic Tech.
2 changes: 1 addition & 1 deletion src/utils/getBlogImage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { ImageMetadata } from "astro";

// this Vite import method requires that its parameter be a literal string,
// not even one assembled from other literals
const images = import.meta.glob<{ default: ImageMetadata }>("/src/assets/blog/*.{jpeg,jpg,png,gif}");
const images = import.meta.glob<{ default: ImageMetadata }>("/src/assets/blog/**/*.{jpeg,jpg,png,gif}");

export async function getBlogImage(
imagePath: string): Promise<ImageMetadata | null>
Expand Down

0 comments on commit 18c381d

Please sign in to comment.