From d4df49dcd79f9276c12f0f3e6d93fc8df75c4f2c Mon Sep 17 00:00:00 2001 From: Christine Date: Tue, 20 Jun 2023 23:20:21 +0000 Subject: [PATCH 1/4] setup Gitpod --- .gitpod.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..50d74aeb --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: pnpm install && pnpm run build + command: pnpm run start + + From ed04a4e92a9a1818ac6dbce54cd44f652cf52424 Mon Sep 17 00:00:00 2001 From: Christine Date: Tue, 20 Jun 2023 23:27:24 +0000 Subject: [PATCH 2/4] feat: Add myself as a member of Virtual Coffee --- members/CBID2.ts | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 members/CBID2.ts diff --git a/members/CBID2.ts b/members/CBID2.ts new file mode 100644 index 00000000..b9d53840 --- /dev/null +++ b/members/CBID2.ts @@ -0,0 +1,46 @@ +import type { MemberObject } from '../types'; +// import { profileMasks } from '../flare'; + +export const _CBID2: MemberObject = { + // GitHub username (required) + github: 'CBID2', + // + // 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: 'Your Name', + // + // 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://virtualcoffee.io', + // + // 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: `This is _my_ **bio** and [here is a link](https://virtualcoffee.io)`, + // + // 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: 'yourlinkedinUserName' }, + // { type: 'dev', username: 'yourUserName' }, + // { type: 'codenewbie', username: 'yourUserName' }, + // { type: 'twitter', username: 'yourUserName' }, + // { 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://virtualcoffee.io', title: 'Title of link' }, + ], + badges: [], +}; From 9d7c90ff5bd2285d8c839a2717eac8637f203065 Mon Sep 17 00:00:00 2001 From: Christine Date: Tue, 20 Jun 2023 23:36:37 +0000 Subject: [PATCH 3/4] Revert "setup Gitpod" This reverts commit d4df49dcd79f9276c12f0f3e6d93fc8df75c4f2c. --- .gitpod.yml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 50d74aeb..00000000 --- a/.gitpod.yml +++ /dev/null @@ -1,11 +0,0 @@ -# This configuration file was automatically generated by Gitpod. -# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) -# and commit this file to your remote git repository to share the goodness with others. - -# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart - -tasks: - - init: pnpm install && pnpm run build - command: pnpm run start - - From 9c6cb573c81e69bedcd6bf314039586b4f0a0bbc Mon Sep 17 00:00:00 2001 From: Dan Ott Date: Wed, 21 Jun 2023 12:03:41 -0400 Subject: [PATCH 4/4] move member file into members directory --- members/{ => members}/CBID2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename members/{ => members}/CBID2.ts (98%) diff --git a/members/CBID2.ts b/members/members/CBID2.ts similarity index 98% rename from members/CBID2.ts rename to members/members/CBID2.ts index b9d53840..e7a4ff78 100644 --- a/members/CBID2.ts +++ b/members/members/CBID2.ts @@ -1,7 +1,7 @@ import type { MemberObject } from '../types'; // import { profileMasks } from '../flare'; -export const _CBID2: MemberObject = { +export const CBID2: MemberObject = { // GitHub username (required) github: 'CBID2', //