<?xml-stylesheet href="/rss.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Erika Owens</title>
    <link>http://localhost:1313/</link>
    <description>Recent content on Erika Owens</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <copyright>This work is licensed under a CC BY 4.0 license</copyright>
    <lastBuildDate>Thu, 19 Jun 2025 08:47:11 -0400</lastBuildDate>
    
        <atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
    
    
    
        <item>
        <title>Hosting a Hugo site on Mayfirst</title>
        <link>http://localhost:1313/blog/hosting-a-hugo-site-on-mayfirst/</link>
        <pubDate>Thu, 19 Jun 2025 08:47:11 -0400</pubDate>
        
        <guid>http://localhost:1313/blog/hosting-a-hugo-site-on-mayfirst/</guid>
        <description>Erika Owens http://localhost:1313/blog/hosting-a-hugo-site-on-mayfirst/ -&lt;p&gt;Woohoo, this website is finally updated! I will document my Drupal -&amp;gt; static site saga at some point, but first, a brief description of how to host a Hugo static site on &lt;a href=&#34;https://mayfirst.org/&#34;&gt;Mayfirst.org&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;getting-setup-with-hugo-generally&#34;&gt;Getting setup with Hugo generally&lt;/h2&gt;
&lt;p&gt;So, why Hugo? Well, it&amp;rsquo;s what Mayfirst uses for their own static site content. I just followed &lt;a href=&#34;https://gohugo.io/getting-started/quick-start/&#34;&gt;the Hugo docs&lt;/a&gt; to set it up locally first. This was great. Really easy to follow, ran out of the box easily and I just used the default theme. Then I searched for simple themes, and found &lt;a href=&#34;https://www.reddit.com/r/gohugo/comments/xl3qca/what_is_your_goto_theme/&#34;&gt;some helpful posts&lt;/a&gt;. I eventually &lt;a href=&#34;https://github.com/amazingrise/hugo-theme-diary&#34;&gt;found one&lt;/a&gt; I liked and began adjusting things. Given my really incomplete styling knowledge, I eventually complained on Bluesky and got some extremely patient and kind and amazing help from &lt;a href=&#34;https://matienzo.org/&#34;&gt;María A. Matienzo&lt;/a&gt; (thanks again, María!!!).&lt;/p&gt;
&lt;h2 id=&#34;getting-hugo-onto-mayfirst-servers&#34;&gt;Getting Hugo onto Mayfirst servers&lt;/h2&gt;
&lt;p&gt;This process was made possible by some more help, this time from the incredibly patient Jaime Villarreal from Mayfirst. (Thank you Jaime for YEARS of patient support!) Since I was trying to migrate content from my current site, I didn&amp;rsquo;t want to take down my current site while I setup this new site. Jaime helped me setup a staging site, which involved &lt;a href=&#34;https://help.mayfirst.org/en/guide/how-to-create-a-new-website-in-the-control-panel&#34;&gt;creating a new hosting order&lt;/a&gt; to setup a staging site, which created its own new website essentially. I was then able to &lt;a href=&#34;https://help.mayfirst.org/en/guide/how-to-connect-to-your-website-host-with-ssh-or-sftp&#34;&gt;SFTP files&lt;/a&gt; onto this staging site.&lt;/p&gt;
&lt;p&gt;Side note: when I was organizing my folders to be ready to be on the Mayfirst servers I changed things slightly and couldn&amp;rsquo;t get the Hugo server to load anymore, but it was just that, &lt;a href=&#34;https://www.reddit.com/r/gohugo/comments/1gyjp6e/hugo_not_serving/&#34;&gt;like commenter number 1 here&lt;/a&gt;, I was not loading the server in the right place. I did run into a few snags like that where I was just doing something slightly wrong, but from a combination of searching for answers and retrying a bunch, I did figure things out.&lt;/p&gt;
&lt;p&gt;But where was I supposed to put the files on the Mayfirst server?&lt;/p&gt;
&lt;p&gt;In the Hugo default file structure:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the &lt;code&gt;files&lt;/code&gt; directory -&amp;gt; &lt;code&gt;site/files&lt;/code&gt; on the Mayfirst server&lt;/li&gt;
&lt;li&gt;the &lt;em&gt;contents&lt;/em&gt; of &lt;code&gt;files/public&lt;/code&gt; -&amp;gt; &lt;code&gt;site/web&lt;/code&gt; on the Mayfirst server (note: the contents of the public folder, not the folder itself!)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I also edited the hugo.toml file:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;config = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files&amp;rdquo;&lt;/p&gt;
&lt;p&gt;archetypeDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files/archetypes&amp;rdquo;&lt;/p&gt;
&lt;p&gt;contentDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files/content&amp;rdquo;&lt;/p&gt;
&lt;p&gt;layoutDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files/layouts&amp;rdquo;&lt;/p&gt;
&lt;p&gt;dataDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files/data&amp;rdquo;&lt;/p&gt;
&lt;p&gt;staticDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files/static&amp;rdquo;&lt;/p&gt;
&lt;p&gt;themesDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/files/themes&amp;rdquo;&lt;/p&gt;
&lt;p&gt;source = &amp;quot;&amp;quot;&lt;/p&gt;
&lt;p&gt;publicDir = &amp;ldquo;/home/users/[your-mayfirst-user]/site/web/public&amp;rdquo;&lt;/p&gt;
&lt;p&gt;publishDir = &amp;ldquo;../&amp;rdquo;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;And this got the site up on the staging site! One other tiny thing was that the home button was misbehaving so in my theme I edited it in the sidebar.html layout to hardcode the nav to go to the specific site (staging or live) and not the base URL.&lt;/p&gt;
&lt;h2 id=&#34;finishing-the-migration&#34;&gt;Finishing the migration&lt;/h2&gt;
&lt;p&gt;I let out an audible cheer when everything was up and working on my staging site. It was so exciting to have it completed, and be able to show it to people and get help on the finer details. The final step in the process was to move my site from the staging site to the &amp;ldquo;live&amp;rdquo; site.&lt;/p&gt;
&lt;p&gt;Jaime advised the easiest way to do this is through the Mayfirst Control Panel.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;delete your web configuration (and the associated server access account)&lt;/li&gt;
&lt;li&gt;delete the existing databases (don&amp;rsquo;t need those anymore with a static site!)&lt;/li&gt;
&lt;li&gt;restore your web configuration (it creates a clean folder structure on the Mayfirst servers)&lt;/li&gt;
&lt;li&gt;re-add your server access account&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Then, logout and log back in again, and you&amp;rsquo;ll be able to SFTP the files over following the same process as the staging site. I changed the config to the live site instead of staging. Waited for the upload, and, it worked! Woohoo!&lt;/p&gt;
&lt;p&gt;Let me know if you have any questions or if there&amp;rsquo;s anything I can describe in better detail (please &lt;a href=&#34;mailto:hello@erikaowens.com&#34;&gt;email me&lt;/a&gt; till I get comments setup here).&lt;/p&gt;
&lt;p&gt;Thanks again to María and Jaime for all the help. Really glad to have my site in a more simplified format. Yay!&lt;/p&gt;
- http://localhost:1313/blog/hosting-a-hugo-site-on-mayfirst/ - This work is licensed under a CC BY 4.0 license</description>
        </item>
    
    
    
        <item>
        <title>Cutting the cord from Google: It&#39;s not just you</title>
        <link>http://localhost:1313/blog/cutting-the-cord-from-google-its-not-just-you/</link>
        <pubDate>Tue, 11 Feb 2025 08:47:11 -0400</pubDate>
        
        <guid>http://localhost:1313/blog/cutting-the-cord-from-google-its-not-just-you/</guid>
        <description>Erika Owens http://localhost:1313/blog/cutting-the-cord-from-google-its-not-just-you/ -&lt;p&gt;Maybe these days you&amp;rsquo;re thinking about weaning yourself off of Google products and services. Recently, May First &lt;a href=&#34;https://mayfirst.coop/en/post/2024/gmail-survey/&#34;&gt;conducted a survey&lt;/a&gt; to better understand what the barriers are to people leaving Google products, especially gmail. They&amp;rsquo;ve &lt;a href=&#34;https://mayfirst.coop/en/audio/cutting-the-cord/&#34;&gt;released an early look&lt;/a&gt; at the findings (full report coming this month).&lt;/p&gt;
&lt;p&gt;Some highlights:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Lots of people have this question&lt;/li&gt;
&lt;li&gt;&amp;hellip;but the #1 barrier is all of us&lt;/li&gt;
&lt;li&gt;Tech may be less of a barrier than itself&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The survey received 450 responses (I was one of them), which was more than the organizers had estimated and reflects the intensity of interest in the topic. I was very excited to see this raised as a pragmatic question—the fact that the survey was trying to understand why people used these tools to me made it clear this is going to be an honest conversation and not just about the way we wish things were.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;http://localhost:1313/files/cord-chart-updated.png&#34; alt=&#34;a chart showing responses for the single biggest barrier by percentage, with existing collaborations about 30% of the responses across all subgroups (average, US, international, and broken out by individual and org) with the next most popular response about 15% for lack of information&#34;&gt;&lt;/p&gt;
&lt;p&gt;The &lt;em&gt;we&lt;/em&gt; is pretty critical here though. By a long way, the top barrier listed was &amp;ldquo;existing collaborations,&amp;rdquo; meaning, all of us. We can&amp;rsquo;t get off these platforms cause we&amp;rsquo;re already on these platforms and even if one of us leaves, if the rest of us stay it just gets so difficult! I don&amp;rsquo;t think this result is a huge surprise, but it does underline why individual choices alone are not a solution.
In addition, in reviewing the results, Jamie McClelland pointed out that tech-related reasons were reported as comparatively less of a barrier. This could indicate that the challenges with &amp;ldquo;cutting the cord&amp;rdquo; are less with training or functionality and more with, again, how we &lt;em&gt;collectively&lt;/em&gt; are organized and collaborate.&lt;/p&gt;
&lt;p&gt;In &lt;a href=&#34;https://mayfirst.coop/en/audio/cutting-the-cord/&#34; title=&#34;https://mayfirst.coop/en/audio/cutting-the-cord/&#34;&gt;this survey update&lt;/a&gt;, they shared the audio from a presentation of the results and a transcription of the Q+A session that followed, which includes a lot of great tips and links to resources around secure communications, how to be conscientious about data acquisition and tracking, and related topics. It also included a shout out to the &lt;a href=&#34;https://aspirationtech.org/events/devsummit&#34; title=&#34;https://aspirationtech.org/events/devsummit&#34;&gt;NP Dev Summit&lt;/a&gt;, which is a similarly great place to talk about the intersection of tech and values in a candid and aspirational way.&lt;/p&gt;
&lt;p&gt;In the closing, another speaker (whose name I did not catch, sadly) explained how the movement tech providers are not looking to replace corporate providers but instead to offer &amp;ldquo;good functionality and &lt;strong&gt;great&lt;/strong&gt; politics.&amp;rdquo; I&amp;rsquo;m excited to see the recommendations that come out from this research about how those of us who are still muddling through these questions can bring our politics into better alignment with how we organize our digital lives.&lt;/p&gt;
- http://localhost:1313/blog/cutting-the-cord-from-google-its-not-just-you/ - This work is licensed under a CC BY 4.0 license</description>
        </item>
    
    
    
        <item>
        <title>A question as an offering</title>
        <link>http://localhost:1313/blog/a-question-as-an-offering/</link>
        <pubDate>Tue, 03 Dec 2024 08:47:11 -0400</pubDate>
        
        <guid>http://localhost:1313/blog/a-question-as-an-offering/</guid>
        <description>Erika Owens http://localhost:1313/blog/a-question-as-an-offering/ -&lt;p&gt;&lt;img src=&#34;http://localhost:1313/files/aunt-debby-sm.jpg&#34; alt=&#34;a photo of debbie cooney (coursey)&#34;&gt;&lt;/p&gt;
&lt;h5 id=&#34;my-aunt-debby-cooney-this-summer-photo-by-her-brother-rich-coursey&#34;&gt;&lt;em&gt;My Aunt Debby Cooney this summer. (Photo by her brother Rich Coursey)&lt;/em&gt;&lt;/h5&gt;
&lt;p&gt;My aunt passed away yesterday. After having a diagnostic test come back ok this summer, she suddenly faced a stage four cancer diagnosis in mid-September. Getting third-hand information from my mom, it sounded like they were still trying to understand what was happening medically and then she took a sudden turn and was gone.&lt;/p&gt;
&lt;p&gt;This summer she had organized a family reunion and I&amp;rsquo;m so glad I was able to make it to that. She really enjoyed bringing everyone together. Another relative this time knit together a bunch of old family films, where my aunt popped up from time to time as a toddler. I didn&amp;rsquo;t get to see her again after that, even though I could have gone home for Thanksgiving. My mom told me it was probably ok to wait till early December (I had some deadlines I was stressing about), so I did. Just before my grandma died, my aunt made a sudden appearance at her mom&amp;rsquo;s house, five hours away from where she lived. She said she just had a feeling and so made the trip. It was surprising, and a bit unnerving, to see her so unexpectedly, but it turned out she was right to come. Her mom had a stroke shortly after and died. I have really tried to live that lesson, to make the trip when you can, but clearly have not learned it well enough. I will try even harder in the future to stick to it.&lt;/p&gt;
&lt;p&gt;We spent every summer at my aunt&amp;rsquo;s house in Harrisburg, for at least a week. Lazing around in their air conditioning (fancy!) and cable TV with a different assortment of stations than ours. In recent years, she&amp;rsquo;d taken to sending cards for nearly every holiday. I didn&amp;rsquo;t even always remember to acknowledge them with a text. Probably cause her kids are a bit younger than me, she also got pretty into texting, complete with emoji. I could take a week to reply. I dunno, I just didn&amp;rsquo;t get why she was saying hi in all these ways! And it&amp;rsquo;s only now it&amp;rsquo;s dawning on me: you should have asked.&lt;/p&gt;
&lt;p&gt;My aunt took so much delight in asking. I guess in acquiring things by many means (yes, shopping), but also cultivating friendships and information and recipes and ideas. She asked me about all sorts of things in my life. When I converted to Judaism, she was supportive. She came to the service commemorating my conversion. She asked me about Judaism, even if her questions were a little weird like what do Jews think of Jesus. (&amp;hellip;they don&amp;rsquo;t, really, which is kind of the idea?) But when she got really into Catholicism, I never asked her much about it and honestly found it a mix of silly and worrying. It wouldn&amp;rsquo;t have cost me anything to ask her what she enjoyed about it or how her Bible study was going. But I didn&amp;rsquo;t.&lt;/p&gt;
&lt;p&gt;This is also a lesson I should have learned sooner. My aunt lived a couple hours from where I went to college and would come see me from time to time just to get dinner or hang out. She&amp;rsquo;d ask me about my life. Just pleasant, nice. Nothing heavy or that I thought much of. But then it would get back to my mom that my aunt already knew about some update in my love life. My mom would be so offended I told my aunt before her, but I wasn&amp;rsquo;t playing favorites, it&amp;rsquo;s just that my aunt had asked a question and I answered! At the time, I just thought it was funny sibling rivalry stuff, but clearly could have done a bit of self reflection about the importance of asking questions, too.&lt;/p&gt;
&lt;p&gt;I don&amp;rsquo;t really know what to make of all this. I hope it reminds me to be a little more curious about people and generous with my attention. I often think, &amp;ldquo;Why would people want to hear from me anyhow?&amp;rdquo; and don&amp;rsquo;t think there&amp;rsquo;s much worth sharing, but I guess a question can be its own offering.
I know my aunt always had my back, even if I was sometimes confused by how she interpreted my interests. But I guess that is also its own lesson—she could only get so far asking on her own, I had to open up more and learn about about her and her interests for us to really connect. An embarrassing case in point: when I was a teenager, she gave me a Carole King CD for Christmas. All I could think of the CD was the big SALE sticker on it from Media Play, muttering to myself about how could she think so little of me to just get me some bargain bin crap. I don&amp;rsquo;t think I said that out loud, but I was also not effusive (or conversant) in my thank you. Come to find out, it was one of her favorite albums and I was a huge, self centered asshole who could only see everything in the worst possible light. (Some things never change.) Probably about 20 years later, I had by then realized I had been a jerk and wanted to try to reciprocate sharing music, so I invited her to an Aimee Mann and Ted Leo show in Harrisburg because I love them both (heh) and thought she&amp;rsquo;d enjoy it too. It was a fun show, but I can&amp;rsquo;t say we came away with some new profound understanding or resolution (I do think she understood I was being a regular teenager).&lt;/p&gt;
&lt;p&gt;Who knows, maybe now is the time to finally, actually listen to Tapestry.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Header image: My Aunt Debby Cooney this summer. (Photo by her brother Rich Coursey)&lt;/li&gt;
&lt;/ul&gt;
- http://localhost:1313/blog/a-question-as-an-offering/ - This work is licensed under a CC BY 4.0 license</description>
        </item>
    
    
    
        <item>
        <title>Moving from the US to the UK</title>
        <link>http://localhost:1313/blog/moving-from-the-us-to-the-uk/</link>
        <pubDate>Sun, 01 Sep 2024 08:47:11 -0400</pubDate>
        
        <guid>http://localhost:1313/blog/moving-from-the-us-to-the-uk/</guid>
        <description>Erika Owens http://localhost:1313/blog/moving-from-the-us-to-the-uk/ -&lt;p&gt;I once tried to write a travel diary and it was the most boring writing I&amp;rsquo;ve ever seen in my life. Hopefully this won&amp;rsquo;t be &lt;em&gt;quite&lt;/em&gt; so bad.
In just over a month, I will be moving from the US to the UK. I realized it might be useful to document some parts of this process like:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;getting a visa&lt;/li&gt;
&lt;li&gt;getting ready socially&lt;/li&gt;
&lt;li&gt;oh my gosh, all the life admin stuff&lt;/li&gt;
&lt;li&gt;moving an 18-year-old cat across an ocean (some of the &lt;a href=&#34;https://www.wheelingit.us/2018/03/09/moving-to-europe-v-pet-transport-options-by-sea-by-air-pet-carriers-more/&#34;&gt;existing documentation&lt;/a&gt; pointed us in the direction of taking the cat over on a boat)&lt;/li&gt;
&lt;li&gt;how the hell you pack your stuff to take it on a boat&lt;/li&gt;
&lt;li&gt;how the hell you decide what, of the absurd amount of random things people have bought you and you yourself have accumulated over several decades, you actually take to another country&lt;/li&gt;
&lt;li&gt;and probably other, maybe even emotional (gasp) things about moving for the first time in nearly twenty years&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Part of my preparation (/procrastination) appears to be re-watching both Slow Horses and Industry, and enjoying the Paralympics! We&amp;rsquo;ll see how this goes. If you have any advice, or requests of things to document, &lt;a href=&#34;mailto:hello@erikaowens.com&#34;&gt;please reach out&lt;/a&gt;. (I had to turn off comments on this site years ago cause of runaway spam, but welcome conversation always!)&lt;/p&gt;
- http://localhost:1313/blog/moving-from-the-us-to-the-uk/ - This work is licensed under a CC BY 4.0 license</description>
        </item>
    
    
    
        <item>
        <title>A socialist approach can work in business</title>
        <link>http://localhost:1313/blog/a-socialist-approach-can-work-in-business/</link>
        <pubDate>Thu, 30 May 2024 08:47:11 -0400</pubDate>
        
        <guid>http://localhost:1313/blog/a-socialist-approach-can-work-in-business/</guid>
        <description>Erika Owens http://localhost:1313/blog/a-socialist-approach-can-work-in-business/ -&lt;p&gt;&lt;em&gt;(originally published in &lt;a href=&#34;https://medium.com/jsk-class-of-2023/a-socialist-approach-can-work-in-business-e1bd75eba408&#34;&gt;JSK fellows&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;In Philly’s activist circles, heading to the &lt;a href=&#34;https://amc.alliedmedia.org/&#34;&gt;Allied Media Conference&lt;/a&gt; in Detroit was an annual tradition. I accompanied colleagues from the &lt;a href=&#34;https://movementalliance.org/mediamobilizing/&#34;&gt;Media Mobilizing Project&lt;/a&gt; there one year and on one of the many field trips throughout Detroit, we visited an enormous abandoned factory. It was astonishing in its vastness and emptiness. We were the only ones there in the shell of a building that used to be part of what made Detroit Motor City. In our travels, we also learned about the unionization efforts at factories like that one and organizing efforts led by &lt;a href=&#34;https://www.aaihs.org/why-we-need-james-and-grace-lee-boggs-now/&#34;&gt;Grace Lee and James Boggs&lt;/a&gt;. It was a really formative trip for me, witnessing both the ravages of capitalism as well as the perseverance of the communities that remained.&lt;/p&gt;
&lt;p&gt;About a decade later, I found myself in another place with an especially intense perspective of capitalism. As a 2024 John S. Knight Journalism Fellow at Stanford, it has been just as jarring to be immersed in a place where its local industry is seemingly running the world. The exploited workers that power much of the internet we know are &lt;a href=&#34;https://restofworld.org/2023/ai-revolution-outsourced-workers/&#34;&gt;not located here in Silicon Valley&lt;/a&gt; (and therefore harder to organize than meeting people at the factory gates), but the riches being reaped into this region are similarly astonishing. The fancy cars on every single block, the endless startup pitches droning on in the background at coffee shops, the sense I get in so many interactions that the rest of the world should really just be grateful that it gets to benefit from the concentration of intellect and innovation gathered in this one place. It shouldn’t surprise me, but the oppressive certainty (of the importance of money! the existence of meritocracy! the faith in continual growth!) of this place has (further) radicalized me.&lt;/p&gt;
&lt;p&gt;Silicon Valley has just made it so clear: This isn’t the only way. I know it’s not because I’ve learned from activist communities about how to infuse values and justice into my work as a nonprofit leader. Our industries, including journalism, don’t have to follow boom and bust cycles. And as leaders, we can make our budgets work in ways that are collaborative, fair, sustainable, and push back on the actually quite fragile narrative we’ve been sold that the market is the only way to succeed.&lt;/p&gt;
&lt;h2 id=&#34;start-with-solidarity&#34;&gt;Start with solidarity&lt;/h2&gt;
&lt;p&gt;I’m not going to claim to have solved the question of how to keep moving while everything burns around us, but spending 10 months in the town feeding that fire has only made it more clear to me that solidarity must be part of the answer . Solidarity, meaning understanding that our struggles are shared and working in coalition, is a concept I value in community organizing, but I think it can (and should!) be expressed in business as well, including in the journalism industry.&lt;/p&gt;
&lt;p&gt;How solidarity can show up in business:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Redistribution&lt;/strong&gt;: The concept of giving what you can and taking what you need can truly, I promise, be a sound business strategy.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Economic justice&lt;/strong&gt;: We must value workers and have their needs central in budget planning.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Centering relationships&lt;/strong&gt;: Let’s organize around people and our ability to learn from and support one another.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Not trying to do it all&lt;/strong&gt;: Know your role, stick to it, and expand impact through collaboration&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I’ve tried to experiment with these strategies in my own work as co-director at &lt;a href=&#34;https://opennews.org/&#34;&gt;OpenNews&lt;/a&gt;, drawing inspiration and urgency from what I’ve seen in Detroit, Silicon Valley, and beyond. I share these ideas in the hope that the more we talk about &lt;a href=&#34;https://medium.com/what-does-it-take-to-disrupt-the-status-quo-be5580a82c6d&#34;&gt;alternatives to the status quo&lt;/a&gt;, the more we try out new ideas, the more we &lt;em&gt;take action together&lt;/em&gt;, the closer we’ll get to finding ways to sustain journalism and the people within it.&lt;/p&gt;
&lt;h2 id=&#34;redistribute-resources-that-includes-money&#34;&gt;Redistribute resources (that includes money)&lt;/h2&gt;
&lt;p&gt;I know it can be hard to believe, but it really is true that all of us giving what we are able can create abundance. Thinking about money can immediately make everything feel scary and scarce. But…who has ever gone to a potluck that ran out of food? (Ok, maybe you didn’t &lt;em&gt;like&lt;/em&gt; all the food, but I bet it was there.) Most of us have had plenty of experiences of people showing up for each other when someone has a need, and then that person showing up for their community the next time. It actually can work that way in business, too. You just have to do it.&lt;/p&gt;
&lt;p&gt;In one small example at OpenNews, &lt;a href=&#34;https://source.opennews.org/articles/one-easy-way-make-conference-ticket-prices-more-eq/&#34;&gt;we changed our conference ticket structure&lt;/a&gt; to make it easier for some people to pay more, some people to pay less, and some people &lt;a href=&#34;https://source.opennews.org/articles/stop-making-people-prove-they-need-free-ticket/&#34;&gt;to not pay at all&lt;/a&gt;. And you know what? We brought in a ton more money than when there was just one ticket price. In addition, the overall event budget structure included funds for scholarship payments to participants who needed funds for travel or participation.&lt;/p&gt;
&lt;p&gt;Through this experiment, I saw how it was not only okay to bring solidarity values into a business plan, but it could be profitable for us and support the needs of even more participants. I don’t need every experiment like this to succeed to know that it is definitely worth the attempt.&lt;/p&gt;
&lt;h2 id=&#34;budgets-are-moral-documents&#34;&gt;Budgets are moral documents&lt;/h2&gt;
&lt;p&gt;The pressure with constructing an overall organizational budget can be immense, especially if you’re trying to layer in values-driven decisions. For most of the budgets I’ve worked with, staffing was the majority of the budget so that’s where I focus. I’ve learned a lot about different benchmarks and models and ways of thinking about salaries, but here’s how I try to understand fairness:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What is the lowest payscale? Is it meaningfully above minimum wage? (Currently &lt;a href=&#34;https://www.dir.ca.gov/DIRNews/2023/2023-66.html&#34;&gt;in California the minimum wage for an exempt salaried position is $66,560&lt;/a&gt;, and in January 2025 &lt;a href=&#34;https://www.foley.com/insights/publications/2024/04/dol-increases-compensation-threshold-exempt-employees/&#34;&gt;nationally it will be going up to $58,656&lt;/a&gt;.)&lt;/li&gt;
&lt;li&gt;What is the highest a staff member can make at the org? So, for a journalism org, what’s the highest a senior reporter makes?&lt;/li&gt;
&lt;li&gt;What is the differential between the lowest pay and the top leadership of the organization?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These factors and the needs of workers should be central to any planning around budget adjustments, too. For example, if an org feels it needs to increase the pay for leadership to compete for top candidates, what is the plan to similarly raise other salaries so as not to exacerbate the gap between roles? &lt;a href=&#34;https://www.wgaeast.org/guild-contracts/staff-digital/&#34;&gt;Unions are also obviously hugely important&lt;/a&gt; in setting the terms for compensation for employees. It’s been great how many negotiations have also covered related topics like limiting the amount of time freelancers/contractors can work before they must be given the opportunity to become a full employee.&lt;/p&gt;
&lt;p&gt;It’s critical that we compensate workers for all of the time they spend doing journalism, including the often invisible and unpaid work that many journalists do, especially people of color and women. This background work of advising, network building, research, and relationship support is what powers reporting and the sustainability of our organizations.&lt;/p&gt;
&lt;h2 id=&#34;center-relationships&#34;&gt;Center relationships&lt;/h2&gt;
&lt;p&gt;Even though it’s often less visible: Work is all about relationships. I have seen it throughout my career, whether it’s tutoring kids, talking to voters, producing journalism to inform audiences, or facilitating events. All of these activities are ultimately about people. How to connect people with each other, with resources, with their power to learn and change the world around them. These relationships are already the foundation of the work that we do in journalism, and yet they are often not seen as central in &lt;em&gt;how&lt;/em&gt; we do that work.&lt;/p&gt;
&lt;p&gt;Hierarchies and received wisdom determine how many of our workplaces are constructed. Ideas of leadership often conjure an image of a single person. This simplistic idea of leadership driven by one person alone is another capitalistic narrative of scarcity and exceptionalism that infects many workplaces, but there are other options.&lt;/p&gt;
&lt;p&gt;I’ve been experimenting with different modes of shared leadership, and have become really interested in scholarship around “&lt;a href=&#34;https://www.sciencedirect.com/science/article/abs/pii/S1048984306001135?via%3Dihub=&#34;&gt;relational leadership&lt;/a&gt;,” the idea that leadership is something that we ALL enact, together. Why not construct our organizations in a way that serves the needs of the entire staff? With back to the office mandates, we hear so much about the importance of informal discussions. That’s relationship building time! But it doesn’t have to just happen around a virtual or physical water cooler, it can be infused into how meetings are conducted, who makes decisions and how, into the structure and plan for the entire organization.&lt;/p&gt;
&lt;p&gt;Part of what I’ve appreciated about scholarship on this style of leadership is that it has demonstrated that it actually makes good business sense. People with &lt;a href=&#34;https://hbr.org/2019/05/cross-silo-leadership&#34;&gt;strong networks inside and outside of their organizations&lt;/a&gt; are powerful change agents who &lt;a href=&#34;https://www.sciencedirect.com/science/article/abs/pii/S1048984312001014?via%3Dihub=&#34;&gt;help to ensure new efforts succeed&lt;/a&gt; and don’t waste time and money. Let’s start making these relational skills core to our organizational structures.&lt;/p&gt;
&lt;h2 id=&#34;sometimes-it-is-ok-to-stay-small&#34;&gt;Sometimes it is ok to stay small&lt;/h2&gt;
&lt;p&gt;One of the ways I managed to keep OpenNews’ budget going in recent years was by keeping the organization small. Staying small is always an option.&lt;/p&gt;
&lt;p&gt;Chasing grants, chasing growth, chasing new projects, these are not the only ways to keep an organization afloat. Growth is also not the only way for an organization to evolve and flourish. I was really cautious about when to hire new employees and how. When so many people seem to measure success by growing budgets and team sizes, it can feel like it’s not really an option to stay small or that it is a failure somehow. But I don’t think that’s true (even if the imposter syndrome does continue to tug at me). In addition to having a more manageable budget to fundraise for, one of the other benefits of staying small is that it makes it easier to focus on your organization’s specific remit.&lt;/p&gt;
&lt;p&gt;When I’ve shared this idea with other journalism leaders, I’ve heard responses like “but there’s so much more that needs to be done than our current level of staffing has capacity for!” And I can see that, but I think that’s where we get right back to solidarity being expressed through coalitions: you can get the other stuff done in collaboration and community with other people.&lt;/p&gt;
&lt;p&gt;Expanding your own organization isn’t the only path to greater impact. When we collaborate across orgs, industries, and disciplines, we can find new ideas and ways to tackle the problems with journalism. &lt;a href=&#34;https://medium.com/jsk-class-of-2023/what-does-it-take-to-disrupt-the-status-quo-be5580a82c6d&#34;&gt;As I’ve written before&lt;/a&gt;, public funding may not solve all our problems, but the coalitions building to experiment there &lt;a href=&#34;https://www.freepress.net/blog/building-worker-community-power-transform-local-journalism&#34;&gt;are going to teach us a lot&lt;/a&gt;. Artists and activists rely on our journalism for their work, might there be ways to partner so we can strengthen the social impact we all seek?&lt;/p&gt;
&lt;h2 id=&#34;operating-from-a-place-of-values-requires-taking-action&#34;&gt;Operating from a place of values requires taking action&lt;/h2&gt;
&lt;p&gt;Through my JSK Fellowship, I’ve learned from &lt;a href=&#34;https://explorecourses.stanford.edu/search?view=catalog&amp;amp;filter-coursestatus-Active=on&amp;amp;q=TAPS+362%3A+Political+Performance&amp;amp;academicYear=20232024&#34;&gt;theatre&lt;/a&gt; and &lt;a href=&#34;https://medium.com/jsk-class-of-2023/what-makes-a-journalist-839727f79e2f&#34;&gt;history,&lt;/a&gt; conversations and workshops. I am continuing to build an understanding of the kind of leader I want to be and the type of journalism I want to support.&lt;/p&gt;
&lt;p&gt;Especially in a place of such deep economic disparity, I did not expect business strategy to become something I kept coming back to. But I guess in that way it actually makes complete sense: when faced with such blatant injustice, I want to do something in response. And, in the solidaristic mode of working from where I am in collaboration with others, I know how to make budgets work in a values-driven way and it seems like that is a useful skill. In addition, I have a willingness to not just talk about theory and ideas, but to find ways to put them into action. I love creating processes and procedures that center equity, access, and justice and get results. Working for justice and making organizations sustainable are not mutually exclusive goals.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;If you’re curious about similar questions,&lt;/em&gt; &lt;a href=&#34;mailto:hello@erikaowens.com&#34;&gt;&lt;em&gt;please do reach out&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;/em&gt; &lt;em&gt;I may come back to update this piece later as these thoughts are very much in progress. Thanks to Mago Torres and Krista Almanzan for feedback on this piece, and to&lt;/em&gt; &lt;a href=&#34;https://www.hamiltonnolan.com/p/selling-your-house-for-firewood&#34;&gt;&lt;em&gt;this piece&lt;/em&gt;&lt;/a&gt; &lt;em&gt;from Hamilton Nolan for the unexpected inspiration.&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Header image description: the word &amp;ldquo;solidarity&amp;rdquo; in cursive writing on an orange striped background&lt;/li&gt;
&lt;li&gt;Header image: Image credit: &lt;a href=&#34;https://www.flickr.com/photos/tartantastic/25805090827/&#34;&gt;Tartantastic&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
- http://localhost:1313/blog/a-socialist-approach-can-work-in-business/ - This work is licensed under a CC BY 4.0 license</description>
        </item>
    
    
  </channel>
</rss> 