Skip to content
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

Add tarynmcmillan to the member list #1002

Merged
merged 5 commits into from Oct 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
53 changes: 53 additions & 0 deletions members/members/tarynmcmillan
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Taryn, I'm guessing you want all the info you filled in to be part of your profile! Right now everything except your github (line 6) is still commented out. Can you go through and comment back in anything you want on the site? Lines 11, 14, 17, etc. are the actual properties of MemberObject and won't show up as they are right now!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since it's making personal info public, I don't want to assume anything! But if you want me to do it, that's fine too - just let me know explicitly!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@juliaseid @TarynMcMillan just as a note, nothing other than github is required. If it's left empty, it will be populated by info from the github API.

@@ -0,0 +1,53 @@
import type { MemberObject } from '../types';
// import { profileMasks } from '../flare';

export const _EXAMPLE: MemberObject = {
// GitHub username (required)
github: 'TarynMcMillan',
//
// Everything below here is optional. By default, we pull most profile data from your GitHub profile. You can override that data here, as well as provide some additional account links below.
//
// Name - If not defined here, it will default to your display name on GitHub. If that's not defined, then your GitHub username.
// name: 'Taryn McMillan',
//
// Main URL - If not defined here, it will default to the website displayed on your GitHub profile. If that's not defined, then a link to your GitHub profile will be displayed.
// mainUrl: 'https://tarynmcmillan.com',
//
// Bio - Accepts [markdown](https://spec.commonmark.org/0.30/). Please keep your bio to a reasonable length. Refer to our [members page](https://virtualcoffee.io/members/) for examples.
// bio: `Unity C# Developer | Educator | Writer | Canadian 🇨🇦 `,
//
// flare - If you want to add a flare to your profile, you can do so here.
// Uncomment the `import { profileMasks } from '../flare';` line at the top of this file to use the profileMasks.
// So far all we have is a profile mask, which makes your profile picture a different shape from the default square.
// Leave this out if you prefer the default square.
// You can choose from the following profile masks:
// profileMasks.octogon, profileMasks.hexagon, profileMasks.triangle,
// profileMasks.circle, profileMasks.rabbet, profileMasks.star
// you can also use a custom string. the profileMask values are [css clipPath values](https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path)
flare: {
// example:
// profileMask: profileMasks.triangle,
},
//
// Links - You can add one of each type, except website - you can add as many `website` accounts as you wish.
accounts: [
// { type: 'linkedin', username: 'taryn-mcmillan-7187b74b' },
// { type: 'dev', username: 'tarynmcmillan' },
// { type: 'codenewbie', username: 'yourUserName' },
// { type: 'twitter', username: 'TarynWritesCode' },
// { type: 'twitch', username: 'yourUserName' },
// { type: 'youtube', channelId: 'yourChannelId' }, OR { type: 'youtube', customUrl: 'https://www.youtube.com/c/yourCustomUrl' },
// { type: 'polywork', username: 'yourUserName' },
// { type: 'medium', username: 'yourUserName' },
// { type: 'hashnode', username: 'yourUserName' },
// { type: 'website', url: 'https://tarynmcmillan.com', title: 'Portfolio' },
],
badges: ['Hacktoberfest2023'],

location:
{
longitude: -85.323212,
latitude: 51.253777,
title: 'Ontario, Canada',
},
};