-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Create a Template for "Meet the Maintainer" Posts #6270
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Vidit-Kushwaha
wants to merge
22
commits into
layer5io:master
Choose a base branch
from
Vidit-Kushwaha:patch-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 6 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
97369d1
Create a Template for "Meet the Maintainer" Posts
Vidit-Kushwaha e933d8d
Merge branch 'master' into patch-1
Vidit-Kushwaha 23a6597
Update index.mdx
Vidit-Kushwaha aaa9648
Update index.mdx forklift svg
Vidit-Kushwaha d8d35b7
Merge branch 'master' into patch-1
vishalvivekm c5da7ea
Update index.mdx
ritzorama a7acb81
use real image
ritzorama d42289d
Update index.mdx
ritzorama 2eab4d1
Update src/collections/blog/meetTheMaintainer-template/index.mdx
ritzorama 68e2328
Update index.mdx
ritzorama 6c04482
Merge branch 'master' into patch-1
leecalcote 69756bf
Update interview date in Meet the Maintainer template
leecalcote a7bf70a
Refactor interview template for improved readability and structure
leecalcote 8ea8663
Clean up author and thumbnail fields in Meet the Maintainer template
leecalcote 17f414f
Update Meet the Maintainer template with new author, date, and thumbn…
leecalcote ea0e33e
Update Meet the Maintainer template with corrected author and date fo…
leecalcote aac407d
Merge branch 'master' into patch-1
vishalvivekm 81e5fd4
Merge branch 'master' into patch-1
Namanv0509 ba283cc
Merge branch 'master' into patch-1
Namanv0509 5ca6261
Merge branch 'master' into patch-1
Namanv0509 3cf6b47
Merge branch 'master' into patch-1
Rajesh-Nagarajan-11 3b9f681
Merge branch 'master' into patch-1
Rajesh-Nagarajan-11 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,91 @@ | ||
| --- | ||
| title: "Meet the Maintainer: [Maintainer Name]” | ||
| subtitle: "An interview series with Layer5 Maintainers" | ||
| date: YYYY-MM-DD HH:MM:SS -05:30:05 | ||
| author: [Your Name] | ||
| thumbnail: "./community/members/[first Name]-[last Name].png" | ||
| darkthumbnail: "./community/members/[first Name]-[last Name].png" | ||
| category: "Open Source" | ||
| published: false | ||
| --- | ||
|
|
||
| import { BlogWrapper } from "../Blog.style.js"; | ||
| import img from "./community/members/[first Name]-[last Name].png"; | ||
| import { MeetTheMaintainer } from "../MeetTheMaintainer.style"; | ||
| import { Link } from "gatsby"; | ||
| import ForkLift from "../../../assets/images/app/hero/forklift.svg"; | ||
|
|
||
| const MaintainerName = "[Maintainer Name]"; | ||
| const InterviewerName = "[Your Name]"; | ||
| const MaintainerArea = "[Area]"; | ||
|
|
||
| <BlogWrapper> | ||
| <MeetTheMaintainer> | ||
| <div class="intro"> | ||
| <p>Continuing in our Meet the Maintainer series, we have {MaintainerName}. {MaintainerName} is a [Brief introduction about the maintainer]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>{MaintainerName}, thank you for taking the time to join me today. While many people, both within and beyond the Layer5 community, have witnessed the impact of your contributions, they may not know the story behind who you are and how you became a maintainer. Could you share your journey with us? How did you discover the Layer5 community, and what inspired you to stay?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>You're a <Link to="/projects/meshery">Meshery {MaintainerArea}</Link> Maintainer. What does being a Meshery {MaintainerArea} maintainer mean to you?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>Have you worked with any other open source project? How does Layer5 compare?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p><Link to="/projects">Layer5</Link> has a number of active, open source projects. You've been consistently contributing to a few of them. Which one(s) are you currently focusing on?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>What's the coolest Meshery {MaintainerArea} demo you have done/seen?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>What is your favorite feature or aspect of {MaintainerArea} in this project, and why?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>What is your hot tip for working with Meshery that others may not know?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>Where do you see opportunities for contributors to actively engage and contribute to {MaintainerArea} within the Meshery and Layer5 community?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>Let's get to know you a bit better with some quick questions: What's the emoji you use most often? Do you prefer movies or books? Would you consider yourself a morning person or a night owl? Over the past year, what's a project or accomplishment you're particularly proud of?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="interviewer"> <span>{InterviewerName}:</span> | ||
| <p>Do you have any advice for individuals hopeful to become Meshery {MaintainerArea} contributors or potentially maintainers?</p> | ||
| </div> | ||
| <div class="interviewee"> <span>{MaintainerName}:</span> | ||
| <p>[Maintainer's response]</p> | ||
| </div> | ||
| <div class="note"> <img src={ForkLift} height="100px" /> | ||
| <p>The Meshery project moves at an impressive pace thanks to maintainers like {MaintainerName}. Be like {MaintainerName}. Join the <a href="https://slack.layer5.io">Layer5 Slack</a> and say "hi".</p> | ||
| </div> | ||
| </MeetTheMaintainer> | ||
| </BlogWrapper> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.