-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack.go
50 lines (47 loc) · 1.02 KB
/
stack.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
var Languages = []string{"JavaScript (ES6+)", "Go", "Semantic HTML", "CSS"}
var Libraries = []string{"Node.js", "npm", "React", "Express", "Next", "Gatsby", "Styled Components", "Firebase"}
var Databases = []string{"Postgresql", "Firestore", "Airtable"}
var Cicd = []string{"Netlify", "Heroku", "Vercel", "Github", "TravisCI"}
var Tools = []string{"Miro", "HackMD", "Figma"}
var Design = []string{"Adobe Photoshop", "Adobe Illustrator", "Adobe InDesign", "Adobe Premiere"}
var Testing = []string{"Jest", "React Testing Library", "Codecov"}
var Methodologies = []string{"Agile", "Scrum", "TDD", "Accessibility", "Responsive Design", "Prototyping", "Pair Programming"}
type category struct {
Categorytitle string
Categorylist []string
}
var Stack = []category{
{
"Languages",
Languages,
},
{
"Libraries",
Libraries,
},
{
"Databases",
Databases,
},
{
"CI/CD",
Cicd,
},
{
"Tools",
Tools,
},
{
"Design",
Design,
},
{
"Testing",
Testing,
},
{
"Methodologies",
Methodologies,
},
}