-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
157 lines (157 loc) · 4.46 KB
/
data.json
File metadata and controls
157 lines (157 loc) · 4.46 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"meta": {
"eventName": "UGAHacks 11",
"title": "UGAHacks 11 Wrapped",
"dates": "February 6-8, 2026",
"location": "Miller Learning Center",
"tagline": "One weekend. Hundreds of builders. Thousands of memories.",
"ctaLabel": "Scroll to start"
},
"hero": {
"hint": "Swipe down",
"thankYouLines": [
"Thank you for building with us at UGAHacks 11.",
"You brought the magic.",
"You made this weekend unforgettable.",
"Go Dawgs."
],
"statsSubtitle": "The finale",
"statsTitle": "By the numbers",
"statsSignoff": "Keep scrolling, friend!"
},
"particle": {
"title": "Language Share (GitHub Repos)",
"count": 560,
"gMorphColor": "#BA0C2F",
"gMorphStart": 0.8,
"languages": [
{ "name": "Python", "percentage": 81.49, "color": "#4B8BBE" },
{ "name": "TypeScript", "percentage": 6.53, "color": "#2067B5" },
{ "name": "C++", "percentage": 3.18, "color": "#00599C" },
{ "name": "Cython", "percentage": 2.8, "color": "#366A96" },
{ "name": "JavaScript", "percentage": 1.66, "color": "#F7DF1E" }
]
},
"statsSections": [
{
"title": "Attendance",
"stats": [
{ "number": 538, "label": "hackers attended", "color": "#FFCF59" },
{ "number": 336, "label": "UGA students", "color": "#BA0C2F" },
{
"number": 40,
"label": "mentors, volunteers, and judges",
"color": "#7B9A7B"
},
{ "number": 16, "label": "schools represented", "color": "#FAF3E0" }
]
},
{
"title": "Projects and Code",
"stats": [
{ "number": 151, "label": "projects submitted", "color": "#FFCF59" },
{
"number": 177.74,
"label": "MB of code analyzed from GitHub",
"color": "#A7B7D9"
},
{
"number": "81.49%",
"label": "of hackers used Python",
"color": "#7B9A7B"
},
{
"number": 11,
"label": "projects who pushed **node_modules**",
"color": "#cb3837"
},
{
"number": 18,
"label": "projects exposing **.env**",
"color": "#ECD540"
},
{
"number": 1,
"label": "project who pushed **venv**",
"color": "#F8B822"
}
]
},
{
"title": "Around the World",
"stats": [
{ "number": 9, "label": "countries of origin", "color": "#FFCF59" },
{ "number": 4, "label": "continents represented", "color": "#A7B7D9" },
{ "label": "Furthest hack: Sydney, Australia", "color": "#7B9A7B" },
{
"number": 1,
"label": "University of Waterloo hoodie spotted",
"color": "#FAF3E0"
}
]
}
],
"overview": {
"title": "Weekend Snapshot",
"cards": [
{ "label": "Registered", "value": "955" },
{ "label": "Median Check-In Time", "value": "Friday, 6:05 PM" }
]
},
"projects": {
"title": "Top Picture",
"imageSrc": "/image.jpeg",
"imageAlt": "Top project moment photo",
"caption": "Gunner Stockton stopped by at UGAHacks!"
},
"workshops": {
"title": "Most Attended Workshops",
"items": [
{
"name": "AWS Workshop",
"attendees": 65,
"host": "MLC 250 | AWS Solutions Architects"
},
{
"name": "Cox Workshop",
"attendees": 55,
"host": "MLC 213 | Hands on with Cox Automotive Engineers"
},
{
"name": "NCR Voyix Workshop",
"attendees": 57,
"host": "MLC 214 | Q&A with NCR Voyix Engineers"
}
]
},
"highlights": {
"title": "Memorable Bits",
"items": [
{ "label": "Pizza Slices Ordered", "value": "960" },
{ "label": "Devpost Check-Ins", "value": "417" },
{ "label": "Most asked Question", "value": "Is there any redbull left?" },
{ "label": "Sticker Count", "value": "1000+" }
]
},
"repoHygiene": {
"title": "Commit Oopsies",
"subtitle": "MMMMmm yummy api keys",
"items": [
{
"fileType": ".env",
"count": 18,
"description": "Secrets risk: environment files should not be in source control."
},
{
"fileType": "node_modules",
"count": 11,
"description": "Dependency folders are bulky and usually belong in .gitignore."
},
{
"fileType": "venv",
"count": 1,
"description": "Python virtual environments should be local, not versioned."
}
]
}
}