diff --git a/src/content/newsletters/2024-10.jsx b/src/content/newsletters/2024-10.jsx new file mode 100644 index 000000000..24d8d7742 --- /dev/null +++ b/src/content/newsletters/2024-10.jsx @@ -0,0 +1,386 @@ +import Link from 'next/link'; +import LeadText from '@/components/content/LeadText'; + +export const handle = { + meta: { + title: 'Virtual Coffee Newsletter, October 2024', + description: "We're halfway through Hacktoberfest at Virtual Coffee! 💝", + }, + date: '2024-10-01', + listTitle: 'October 2024', +}; + +export const meta = () => { + return handle.meta; +}; + +export default function Issue() { + return ( + <> +
+ Hacktoberfest is here! It’s been a long road of preparation, + encouragement, and support. As always, shoutout to all our volunteers + who’ve spread the good word about getting our members geared up to + contribute! +
++ To start the month off in the true spirit of Hacktoberfest, we’ve done + something big. We open-sourced our{' '} + + VC Community Docs + + ! By sharing our playbook, we're not just supporting our immediate + community—we're extending a hand to community builders everywhere. + We're living our values of creating a positive, inclusive community + and removing tech barriers on a broader scale. +
++ Spotlighting some of the kindness happening in our community. +
++++ "I am grateful for everyone at Virtual Coffee. ☕️❤️ I want to give a + special shout-out to Megan though! We had an awesome 'coffee chat' + yesterday and she let me pick her brain about developer education + roles." +
+ +
+++ "I'm super grateful for Bekah for her continuous support in many ways. + 💖 " +
+ +
++ ++ "So grateful to have met Stephanie in person!! 🙌" +
+ +
+ Every year since 2020, we’ve tried to get involved in some way with the + Hacktoberfest initiative. Virtual Coffee aligns with the spirit and + ethos of open source and tries every year to be an accessible avenue to + learning, supporting, and tending to open-source projects. +
++ Learn more about this challenge in{' '} + + + this blog post + + + . +
+Check out the workshops we ran to prepare for Hacktoberfest:
++ This challenge is always run during October and was our first-ever + monthly challenge. In many ways, we think of Hacktoberfest as the event + that solidified Virtual Coffee beyond a pandemic meetup. +
++ We have three tracks: approved maintainers will provide issues labeled + for Hacktoberfest, contributors will solve issues, and mentors will help + contributors and maintainers be successful. +
++ They provide the repositories with "hacktoberfest" topic(s) and issues + labeled "hacktoberfest" on their repositories. They will also answer the + contributors' questions, review the pull requests (PRs), and validate + and merge them following the contest rules. +
++ They find repositories with "hacktoberfest" topic(s) and issues they + want to solve. The contest's goal is to have four (4) pull requests + (PRs) approved during October. +
++ A mentor will be paired with a mentee (contributor or maintainer). They + provide support through a 1:1, a pairing session, Slack, or whatever + works best for the team! +
++ Learn more about this challenge in{' '} + + this blog post. + +
++ To view all of the details of this year's challenge,{' '} + + check out the September 2024 challenge page + + . +
+ +#goals-and-wins
+ #game-night
+ #general
+ #general
+
+ Note: These are the currently scheduled times for these
+ events at the time of this publication. Please check the official VC{' '}
+ #announcements
Slack channel, or other noted channels, for
+ any updates and links to event rooms. For the full list of events, check
+ out our events page.
+
+ We've added three new private channels — Senior+
,{' '}
+ Mid-level
, Early-career
— to our Slack for
+ peer-to-peer conversation, because we know that it's good to be able to
+ support and nurture conversations specific to your career level. If
+ you're interested in joining the one you identify with most, DM Bekah or
+ Meg on Slack.
+
+ We're very excited to continue open membership with the support of our + active volunteers! All our active volunteers have an invite to send out + to someone interested in joining Virtual Coffee. If you're interested in + joining the volunteer team, check out{' '} + + some the roles + + ! +
+ ++ + Our members are making the internet a better place with their words + and wisdom! + +
+ +++"Just got accepted to speak at CodeMash!"
+ +
++"I hit my goal weight of 180."
+ +
+++ "Did my very first Open-Source contribution last week." +
+ +
+++ "Exciting week—started a new contract-to-hire role and just + received another job offer." +
+ +
+ + Hacktoberfest 2024: Why You Should Participate + {' '} + — Ayu Adiati +
+ ++ If you're a member and you’d like to give a Lunch & Learn or Workshop, + you can{' '} + + submit your idea here + + . +
++ Have a question, suggestion, or want to nominate someone’s act of + kindness or blog post? Email us at{' '} + hello@virtualcoffee.io. +
+ > + ); +} diff --git a/src/data/newsletters.ts b/src/data/newsletters.ts index 4216e818a..92d1a8ebd 100644 --- a/src/data/newsletters.ts +++ b/src/data/newsletters.ts @@ -1,5 +1,6 @@ 'use server'; +import { handle as issue202410 } from '@/content/newsletters/2024-10'; import { handle as issue202409 } from '@/content/newsletters/2024-09'; import { handle as issue202408 } from '@/content/newsletters/2024-08'; import { handle as issue202407 } from '@/content/newsletters/2024-07'; @@ -47,6 +48,7 @@ import { handle as issue202102 } from '@/content/newsletters/2021-02'; import { handle as issue202101 } from '@/content/newsletters/2021-01'; const newsletters = [ + { handleData: issue202410, slug: '2024-10' }, { handleData: issue202409, slug: '2024-09' }, { handleData: issue202408, slug: '2024-08' }, { handleData: issue202407, slug: '2024-07' },