Skip to content

Commit f8ff472

Browse files
authored
Merge pull request #76 from albertbori/main
Sort projects and add VSM
2 parents 0b208c9 + f98fc90 commit f8ff472

File tree

1 file changed

+27
-18
lines changed

1 file changed

+27
-18
lines changed

src/components/ProjectList/projects.js

Lines changed: 27 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const languages = [
66
"JavaScript",
77
"Markdown",
88
"TypeScript",
9+
"Swift",
910
]
1011

1112
const [
@@ -16,9 +17,17 @@ const [
1617
javascript,
1718
markdown,
1819
typescript,
20+
swift
1921
] = languages
2022

2123
const projects = [
24+
{
25+
name: "Backstage (Spotify)",
26+
language: typescript,
27+
description:
28+
"Backstage is an open platform for building developer portals. Powered by a centralized software catalog, Backstage restores order to your microservices and infrastructure and enables your product teams to ship high-quality code quickly — without compromising autonomy.",
29+
href: "https://github.com/wayfair-contribs/backstage",
30+
},
2231
{
2332
name: "Brikkit-Android",
2433
language: kotlin,
@@ -27,11 +36,17 @@ const projects = [
2736
href: "https://github.com/wayfair/brickkit-android",
2837
},
2938
{
30-
name: "Git-Parse",
31-
language: javascript,
39+
name: "Brooklin (LinkedIn)",
40+
language: java,
41+
description: "Brooklin is a distributed system intended for streaming data between various heterogeneous source and destination systems with high reliability and throughput at scale. Designed for multitenancy, Brooklin can simultaneously power hundreds of data pipelines across different systems and can easily be extended to support new sources and destinations.",
42+
href: "https://github.com/wayfair-contribs/brooklin",
43+
},
44+
{
45+
name: "Columbo",
46+
language: python,
3247
description:
33-
"Javascript library which generates an array of javascript objects representing the current branch of a local git repository's commit history",
34-
href: "https://github.com/wayfair/git-parse",
48+
"Specify a dynamic set of questions to ask a user and get their answers. Columbo's feature set allows a program to ask multiple types of questions, validate the response provided by the user, use answers from earlier questions, and accept answers from the command line in addition to prompting the user. ",
49+
href: "https://github.com/wayfair-incubator/columbo",
3550
},
3651
{
3752
name: "DociQL",
@@ -55,11 +70,11 @@ const projects = [
5570
href: "https://github.com/wayfair-incubator/gbq",
5671
},
5772
{
58-
name: "Columbo",
59-
language: python,
73+
name: "Git-Parse",
74+
language: javascript,
6075
description:
61-
"Specify a dynamic set of questions to ask a user and get their answers. Columbo's feature set allows a program to ask multiple types of questions, validate the response provided by the user, use answers from earlier questions, and accept answers from the command line in addition to prompting the user. ",
62-
href: "https://github.com/wayfair-incubator/columbo",
76+
"Javascript library which generates an array of javascript objects representing the current branch of a local git repository's commit history",
77+
href: "https://github.com/wayfair/git-parse",
6378
},
6479
{
6580
name: "OSS-Template",
@@ -83,17 +98,11 @@ const projects = [
8398
href: "https://github.com/tremor-rs",
8499
},
85100
{
86-
name: "Backstage (Spotify)",
87-
language: typescript,
101+
name: "VSM for iOS",
102+
language: swift,
88103
description:
89-
"Backstage is an open platform for building developer portals. Powered by a centralized software catalog, Backstage restores order to your microservices and infrastructure and enables your product teams to ship high-quality code quickly — without compromising autonomy.",
90-
href: "https://github.com/wayfair-contribs/backstage",
91-
},
92-
{
93-
name: "Brooklin (LinkedIn)",
94-
language: java,
95-
description: "Brooklin is a distributed system intended for streaming data between various heterogeneous source and destination systems with high reliability and throughput at scale. Designed for multitenancy, Brooklin can simultaneously power hundreds of data pipelines across different systems and can easily be extended to support new sources and destinations.",
96-
href: "https://github.com/wayfair-contribs/brooklin",
104+
"VSM is a reactive architecture for iOS that is unidirectional, highly type-safe, behavior-driven, and clean.",
105+
href: "https://github.com/wayfair/vsm-ios",
97106
},
98107
]
99108

0 commit comments

Comments
 (0)