<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kate Pond</title>
    <description>The latest articles on DEV Community by Kate Pond (@ohkpond).</description>
    <link>https://dev.to/ohkpond</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F92083%2F8896d71b-534c-4942-a924-0050d5cd2b12.jpg</url>
      <title>DEV Community: Kate Pond</title>
      <link>https://dev.to/ohkpond</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ohkpond"/>
    <language>en</language>
    <item>
      <title>The Promotion Doc That Writes Itself</title>
      <dc:creator>Kate Pond</dc:creator>
      <pubDate>Fri, 03 Jul 2026 00:45:23 +0000</pubDate>
      <link>https://dev.to/ohkpond/the-promotion-doc-that-writes-itself-2g1i</link>
      <guid>https://dev.to/ohkpond/the-promotion-doc-that-writes-itself-2g1i</guid>
      <description>&lt;p&gt;&lt;strong&gt;TL;DR:&lt;/strong&gt; I set up a Claude Code skill that checks in with me about my workday, asks follow-up questions, and saves a structured markdown file I can use as promotion evidence. Here's why it works, and how to build one in about five minutes.&lt;/p&gt;




&lt;h2&gt;
  
  
  May 6th
&lt;/h2&gt;

&lt;p&gt;On May 6th I had an energy level of 2 out of 5.&lt;/p&gt;

&lt;p&gt;I got my Claude Certified Architect exam score back that day: 717 out of 1000. I needed 720. I missed it by three points.&lt;/p&gt;

&lt;p&gt;Four lines down in the same entry, my manager had told me: "your leadership is being felt around Artium. You're making a good impact."&lt;/p&gt;

&lt;p&gt;Here's the thing about that day: the bad number is vivid and self-evident. 717. Three points short. That number was going to live in my head rent-free for weeks. But the recognition? That quietly evaporates. Left to memory, May 6th is the day I failed the exam by three points. On the page, it's also the day my manager told me my leadership was landing across the company.&lt;/p&gt;

&lt;p&gt;The entry keeps the thing I'd lose otherwise.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem With Memory
&lt;/h2&gt;

&lt;p&gt;I've been bad at this for years. At performance review time, I'd stare at a blank document trying to remember what I'd actually done. I'd come up with four things instead of forty. My manager would advocate for me based on what she happened to see, which was never the full picture.&lt;/p&gt;

&lt;p&gt;The thing is, I did good work. I just didn't capture it.&lt;/p&gt;

&lt;p&gt;A few years ago I tried to solve this with &lt;a href="https://medium.com/@OhKPond/google-forms-for-self-evaluation-26737ca46870" rel="noopener noreferrer"&gt;Google Forms&lt;/a&gt;, a structured form I'd fill out at the end of each day that fed into a spreadsheet. It worked, kind of. The data was there, but it felt like homework. The form didn't ask follow-up questions. It didn't notice when I was being vague. I had to go somewhere specific to fill it out. And when review time came, I had to go back somewhere else to compile everything, figure out what mattered, and assemble it into something coherent. The friction wasn't just the daily entry. It was the whole chain: capture, retrieve, synthesize, present. I was on my own at every step.&lt;/p&gt;

&lt;p&gt;So I built something better.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I have a git repository called &lt;code&gt;daily_self_evals&lt;/code&gt;. Inside it, every workday gets its own markdown file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;entries/
└── 2026/
    └── 03/
        └── 2026-03-02.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each file has YAML frontmatter (date, day, energy level, tags) and sections for what I shipped, the impact of that work, wins, challenges I overcame, recognition I received, and what's next. Here's a representative example of what an entry looks like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;date&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;2026-02-12&lt;/span&gt;
&lt;span class="na"&gt;day&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Thursday&lt;/span&gt;
&lt;span class="na"&gt;week&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;7&lt;/span&gt;
&lt;span class="na"&gt;energy&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;4&lt;/span&gt;
&lt;span class="na"&gt;tags&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;shipped&lt;/span&gt;&lt;span class="pi"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;cross-team&lt;/span&gt;&lt;span class="pi"&gt;,&lt;/span&gt; &lt;span class="nv"&gt;recognition&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

&lt;span class="gh"&gt;# Daily Eval — Thursday, February 12, 2026&lt;/span&gt;

&lt;span class="gu"&gt;## Shipped&lt;/span&gt;
Wrapped up the LLM observability integration. Multi-turn conversation
history is now captured and agent tool calls are visible for evaluation.
This had been a gap in the platform for a while.

&lt;span class="gu"&gt;## Impact&lt;/span&gt;
The team called it out as a major win in our retro. Other engineers
can now actually see what the agent is doing across a full conversation,
not just at individual turns.

&lt;span class="gu"&gt;## Wins&lt;/span&gt;
Got the company spotlight award today. Wasn't expecting it.

&lt;span class="gu"&gt;## Recognition&lt;/span&gt;
My manager flagged it in the all-hands. A few people I don't work
with day-to-day sent messages saying they'd been waiting for this.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  The Skill
&lt;/h3&gt;

&lt;p&gt;In Claude Code, you can build a custom skill: a saved workflow with a description that tells Claude when to use it. I built one for journaling, and the nice part is I don't invoke it with any special syntax. I just talk to Claude Code the way I'd talk to a coworker:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Hey, let's make an entry for today."&lt;/p&gt;

&lt;p&gt;"Can you record this win I just had?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude recognizes that these match the journaling skill and runs it. (You can also invoke it manually with &lt;code&gt;/daily-eval&lt;/code&gt; if you prefer typing a command, but I never do.)&lt;/p&gt;

&lt;p&gt;When it runs, Claude first checks if an entry already exists for today. If it does, it reads what's there and asks what I want to add. If it doesn't, it starts fresh. Either way it appends and never overwrites, so I can log something at 2pm and add more at the end of the day, and it all lands in the same file.&lt;/p&gt;

&lt;p&gt;Then it asks me questions, one at a time, conversationally:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"What did you ship or move forward today, even if it was small?"&lt;/p&gt;

&lt;p&gt;"What effect did that have on your team or the product?"&lt;/p&gt;

&lt;p&gt;"Did anyone thank you or give you good feedback?"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It's not a form. It feels more like a five-minute debrief with a colleague who's genuinely curious. When we're done, it writes or updates the file and tells me where it saved it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why the Conversational Format Matters
&lt;/h3&gt;

&lt;p&gt;The STAR framework (Situation, Task, Action, Result) is embedded in the question flow without being named. When Claude asks "what effect did that have?" after I describe a task, I think harder. I give better answers than I would in a form. By the time I'm done, each entry reads like something I could hand to a hiring manager or drop into a performance review, because the prompts shaped it that way from the start.&lt;/p&gt;

&lt;h3&gt;
  
  
  What You Can Do With the Files
&lt;/h3&gt;

&lt;p&gt;Everything is plain markdown with YAML frontmatter. No app. No database. No lock-in.&lt;/p&gt;

&lt;p&gt;That means you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Export to Word or PDF: &lt;code&gt;pandoc entries/**/*.md -o accomplishments.docx&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Import the whole folder into Notion or Obsidian&lt;/li&gt;
&lt;li&gt;Ask Claude to summarize three months of entries before a performance review&lt;/li&gt;
&lt;li&gt;Paste any entry directly into a promotion packet or 1:1 doc&lt;/li&gt;
&lt;li&gt;Push it to a private GitHub repo for a permanent, timestamped record&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because the YAML frontmatter includes structured fields like energy level and tags, you can also ask Claude to generate charts and analysis across your entries. Energy level over time. Which weeks had the most wins. How often you shipped versus how often you were blocked. The Google Forms version of this system fed into a spreadsheet that could do exactly this kind of visualization. The Claude Code version can do the same thing, just by asking.&lt;/p&gt;

&lt;h3&gt;
  
  
  One More Use: When Someone Asks You for Feedback on a Colleague
&lt;/h3&gt;

&lt;p&gt;Peer feedback requests always arrive at the worst time. Someone asks you to fill out a survey about a teammate you worked closely with three months ago, and you stare at the form trying to remember anything specific.&lt;/p&gt;

&lt;p&gt;If you've been logging your interactions, you don't have to remember. You can ask your journal: "When did I work closely with [name] and what did I notice?" You'll have the actual moments, the specific things that helped you, the friction you observed. Your feedback becomes something a manager can actually act on, instead of the generic "great to work with, highly recommend" that tells everyone nothing.&lt;/p&gt;

&lt;p&gt;The record makes you a better peer, not just a better advocate for yourself.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Set This Up
&lt;/h2&gt;

&lt;p&gt;You need &lt;a href="https://claude.com/product/claude-code" rel="noopener noreferrer"&gt;Claude Code&lt;/a&gt; installed. Then just ask Claude to build it for you. You don't need to create any files manually. Open Claude Code and paste something like this:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"I want to set up a daily work journal to build promotion evidence. Create a &lt;code&gt;~/daily_self_evals/&lt;/code&gt; project with a &lt;code&gt;CLAUDE.md&lt;/code&gt;, an &lt;code&gt;entries/&lt;/code&gt; directory organized by year and month, and a global skill at &lt;code&gt;~/.claude/skills/daily-eval/SKILL.md&lt;/code&gt;. Give the skill a description so you'll recognize when I ask you to make a journal entry or record a win in plain language, and make it invocable as &lt;code&gt;/daily-eval&lt;/code&gt; too. When it runs, it should check if an entry already exists for the target date before asking questions, ask one question at a time about what I shipped, the impact, wins, challenges, recognition, and what's next, and save entries as markdown files with YAML frontmatter. All entries should be appendable and never overwrite existing content."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude will handle every file. You just review what it built, open a fresh conversation, and tell it you want to make today's entry. (Skills load at the start of a conversation, so open a new one after setup.)&lt;/p&gt;




&lt;h2&gt;
  
  
  What Happens After a Few Months
&lt;/h2&gt;

&lt;p&gt;I now have a body of evidence I've never had before. Specific accomplishments. Measurable impact. Quotes from colleagues. An energy rating that shows me my own patterns over time: what kinds of days light me up, what kinds drain me.&lt;/p&gt;

&lt;p&gt;When it's time to make the case for a promotion, or find a role that's more interesting and pays better, I won't be starting from memory. I'll be starting from a record.&lt;/p&gt;

&lt;p&gt;And on the days when I miss a certification by three points and want to believe the whole day was a loss, the record knows better.&lt;/p&gt;

&lt;p&gt;One last thing: this system isn't finished. I keep tweaking the questions, adjusting what the frontmatter captures, experimenting with how I ask for summaries. That's part of the point. It's a tool I own and can improve, and the more I use it, the better I get at using it. The version I'm running today is better than the one I started with, and the version I'll be running in six months will be even better.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Inspired by &lt;a href="https://jvns.ca/blog/brag-documents/" rel="noopener noreferrer"&gt;Get your work recognized: write a brag document&lt;/a&gt; by Julia Evans, and my earlier experiment with &lt;a href="https://medium.com/@OhKPond/google-forms-for-self-evaluation-26737ca46870" rel="noopener noreferrer"&gt;Google Forms for self-evaluation&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>productivity</category>
      <category>ai</category>
      <category>claudecode</category>
    </item>
    <item>
      <title>Not Enough SMEs or Customers to Make Your Evals? Make Some!</title>
      <dc:creator>Kate Pond</dc:creator>
      <pubDate>Thu, 25 Jun 2026 15:07:57 +0000</pubDate>
      <link>https://dev.to/ohkpond/not-enough-smes-or-customers-to-make-your-evals-make-some-11nc</link>
      <guid>https://dev.to/ohkpond/not-enough-smes-or-customers-to-make-your-evals-make-some-11nc</guid>
      <description>&lt;p&gt;&lt;strong&gt;TL;DR:&lt;/strong&gt; When you cannot reach real users or SMEs to build eval data, you can build realistic stand-ins instead. Gather everything you actually know about the user into a knowledge base, use Claude Code to synthesize personas from it, have the people closest to the user validate them, then turn the validated personas into agents that generate multi-turn conversations and edge cases for your eval set. The trick is grounding: a persona is only useful if it comes from real evidence and gets checked by someone who knows the user.&lt;/p&gt;

&lt;p&gt;If you have been building with AI for a while, you probably remember when personas were how everyone learned to prompt. Something like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You are Rob Pike, architecting a new service in Go. Be opinionated and concise, and explain the tradeoffs behind your choices. How should I structure the packages?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We all did some version of that.&lt;/p&gt;

&lt;p&gt;Then the field kind of moved on. We still hand agents a personality here and there, but persona prompting stopped being the headline move. It started to feel like a beginner trick.&lt;/p&gt;

&lt;p&gt;I think personas are coming back. Not for voice and flavor this time, but for something more serious: they are a way to manufacture a stand-in for a human you cannot actually reach. And it turns out that solves a real problem in evals.&lt;/p&gt;

&lt;h2&gt;
  
  
  The bind
&lt;/h2&gt;

&lt;p&gt;Here is the problem I keep running into.&lt;/p&gt;

&lt;p&gt;You need evals. Good evals need data that looks like real usage. And to make data that looks like real usage, you need access to real users or subject matter experts. But a lot of the time, you do not have enough of either, at least not yet.&lt;/p&gt;

&lt;p&gt;Maybe the product is early and there are not enough users to learn from. Maybe your SMEs are real but hard to reach, the kind of people who do not have time to sit with you for a thousand test cases.&lt;/p&gt;

&lt;p&gt;In my case it is often structural. I do consulting work, and a lot of the time we are building for a company that has its own clients. There is a layer between us and the people who will actually use the thing. I may never get in a room with the end user at all. That is not a budget problem or a laziness problem. It is just the shape of the engagement, and no amount of asking nicely changes it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The reframe
&lt;/h2&gt;

&lt;p&gt;You do not need real users to start. You need realistic ones. And realistic ones you can build.&lt;/p&gt;

&lt;p&gt;The key word is build, because the difference between a useful persona and a useless one is where it comes from. A persona you invent out of your own head is just your assumptions wearing a costume. The whole thing only works if the personas are grounded in the closest real humans you can actually reach.&lt;/p&gt;

&lt;h2&gt;
  
  
  The method
&lt;/h2&gt;

&lt;p&gt;Here is what I actually did.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Build a knowledge base.&lt;/strong&gt; I create a repo and fill it with everything I have learned about the end user. Meeting notes from discovery calls. Transcripts, when the client is comfortable being recorded. Research I have done on my own from public sources. Anything that tells me something true about who this user is and where they get stuck. The point is to triangulate across sources instead of leaning on a single conversation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Point Claude Code at it and generate personas.&lt;/strong&gt; I use Claude Code to read across the whole knowledge base and synthesize a small set of basic personas. Not a chat window, a repo. That matters, because the personas are coming out of a curated body of evidence rather than one prompt and a vibe.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Have the client validate them.&lt;/strong&gt; This is the step that does the real work, and it is the one I would not skip. I send the personas back to the client to correct, enrich, and push back on. Sometimes the client has a UX research team and real user data to check against. Sometimes the client just knows their customer in their bones from working with them for years. Both are legitimate. The human who cannot sit for a thousand eval cases can still look at five personas and say, no, this one would never do that. That validation is what turns the personas from my guesses into the client's real knowledge, captured and structured.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Turn the personas into agents that exercise the product.&lt;/strong&gt; Once a persona is validated, it goes back in the repo and becomes something I can use on demand. I can tell Claude Code, use this persona and hold a multi-turn conversation with the chatbot the way this user would. Out the other side I get user-phrased turns, full multi-turn conversations, and edge-case inputs. Those become cases in the eval set.&lt;/p&gt;

&lt;p&gt;I want to be honest about how simple this was. The first version was basic. I was not doing anything clever. And it still gave us genuinely interesting outputs, the kind of conversations and edge cases we would not have thought to write by hand.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where this breaks
&lt;/h2&gt;

&lt;p&gt;A validated persona is a proxy, not ground truth, and it is worth being clear-eyed about that.&lt;/p&gt;

&lt;p&gt;The personas are only as good as the evidence underneath them and the client's willingness to correct them. If your discovery was thin, your personas will be confidently wrong, and a confidently wrong eval is worse than no eval. They will also tend to miss the genuinely weird stuff, the inputs no one anticipated, because they are built from what people already expect their users to do. Real humans are stranger than any persona you will validate in a meeting.&lt;/p&gt;

&lt;p&gt;So I do not treat this as a replacement for real user data. I treat it as a way to start before you have it, and as a complement once you do. The day real users show up, you check your personas against them and find out how close you got.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who should try this
&lt;/h2&gt;

&lt;p&gt;If you are building an AI product and you are stuck on evals because you cannot get to your users yet, this is worth an afternoon. You do not need a research team or a big budget. You need whatever real signal you can gather, a place to put it, and a willingness to let the people closest to the user tell you where you got it wrong.&lt;/p&gt;

&lt;p&gt;Start small. One knowledge base, a handful of personas, one validation pass, one multi-turn conversation generated from a persona you trust. See what comes out. You can make it fancier later, or you may find, like I did, that the basic version already earns its keep.&lt;/p&gt;

&lt;p&gt;Now I am exploring whether the same personas can serve as a regression harness for product improvements. More on that if it pans out.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>evals</category>
      <category>testing</category>
      <category>personas</category>
    </item>
    <item>
      <title>“Where Tech Meets Planet: A Quickstart Glossary for Climate Tech - Curious”</title>
      <dc:creator>Kate Pond</dc:creator>
      <pubDate>Thu, 24 Apr 2025 05:13:12 +0000</pubDate>
      <link>https://dev.to/ohkpond/where-tech-meets-planet-a-quickstart-glossary-for-climate-tech-curious-5364</link>
      <guid>https://dev.to/ohkpond/where-tech-meets-planet-a-quickstart-glossary-for-climate-tech-curious-5364</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fupsuoxdi2w29whnc1wh3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fupsuoxdi2w29whnc1wh3.png" alt="Wetlands in Western Washington" width="800" height="1066"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🌿 Start Here: What Is Climate Tech?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Climate tech&lt;/strong&gt; refers to technologies that reduce greenhouse gas emissions or help people adapt to the effects of climate change. That includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Software for tracking carbon emissions
&lt;/li&gt;
&lt;li&gt;Hardware like smart sensors or solar panels
&lt;/li&gt;
&lt;li&gt;Tools that help protect biodiversity and ecosystems
&lt;/li&gt;
&lt;li&gt;Platforms that connect people to climate action and jobs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But it’s not just for scientists or environmental orgs, it needs &lt;strong&gt;designers, devs, analysts, writers, community builders, and dreamers&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 What’s That Mean? — A Tiny Climate Glossary
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Carbon Accounting
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Tracking how much carbon a product, company, or activity emits.&lt;/em&gt;  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Think of it like a budget, but for the atmosphere.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  Mitigation vs Adaptation
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Mitigation&lt;/strong&gt; = slowing down climate change (e.g. reducing emissions)&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Adaptation&lt;/strong&gt; = dealing with its effects (e.g. flood-proofing cities)&lt;/p&gt;

&lt;h3&gt;
  
  
  Regenerative
&lt;/h3&gt;

&lt;p&gt;A step beyond “sustainable.” It means designing systems that &lt;em&gt;restore&lt;/em&gt;, not just &lt;em&gt;maintain&lt;/em&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Greenwashing
&lt;/h3&gt;

&lt;p&gt;When something is marketed as eco-friendly... but it’s mostly vibes. Learn to spot it.&lt;/p&gt;




&lt;h2&gt;
  
  
  📌 Communities &amp;amp; Resources
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Communities to Join
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;🌱 &lt;a href="https://9zero.com/" rel="noopener noreferrer"&gt;9Zero&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;🌎 &lt;a href="https://www.workonclimate.org/" rel="noopener noreferrer"&gt;Work on Climate&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🛠 &lt;a href="https://climatebase.org/" rel="noopener noreferrer"&gt;Climatebase&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;🎙 &lt;a href="https://www.mcjcollective.com/" rel="noopener noreferrer"&gt;My Climate Journey&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Job Boards &amp;amp; Learning
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://jobs.mcjcollective.com/" rel="noopener noreferrer"&gt;MCJ Job Board&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://techjobsforgood.com/" rel="noopener noreferrer"&gt;Tech Jobs for Good&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.climatedraft.org/" rel="noopener noreferrer"&gt;Climate Draft&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.terra.do/" rel="noopener noreferrer"&gt;Terra.do&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Want to listen instead?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.volts.wtf/" rel="noopener noreferrer"&gt;Volts&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🔍 Where Tech Meets Planet: Examples
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tech Skill&lt;/th&gt;
&lt;th&gt;Climate Use Case&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Backend Dev&lt;/td&gt;
&lt;td&gt;APIs for emissions tracking platforms&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;UX Design&lt;/td&gt;
&lt;td&gt;Interfaces for electric grid visualization&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Data Analytics&lt;/td&gt;
&lt;td&gt;Mapping climate risks by neighborhood&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI/ML&lt;/td&gt;
&lt;td&gt;Forecasting wildfires or extreme heat&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Storytelling&lt;/td&gt;
&lt;td&gt;Helping people &lt;em&gt;care&lt;/em&gt;, not just understand&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  💬 Let’s Connect
&lt;/h2&gt;

&lt;p&gt;I used to be a park ranger. Now I’m a software engineer building systems that (I hope) make the world a little better. If you're curious, overwhelmed, excited, or unsure, I'm happy to chat.&lt;/p&gt;

&lt;p&gt;🌱 &lt;a href="https://thepondsedge.com/" rel="noopener noreferrer"&gt;Find me at The Pond's Edge&lt;/a&gt;&lt;br&gt;
💌 &lt;a href="https://www.linkedin.com/in/katepond/" rel="noopener noreferrer"&gt;Message me on LinkedIn&lt;/a&gt;&lt;/p&gt;

</description>
      <category>climatetech</category>
      <category>techforgood</category>
      <category>sustainability</category>
    </item>
  </channel>
</rss>
