-
Notifications
You must be signed in to change notification settings - Fork 0
/
interactive.html
376 lines (350 loc) · 14.1 KB
/
interactive.html
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<script src="vue.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<body style="background-color:#ddd;">
<section name="generic">
<nav>
<a href="vocab.html">The Startup Dictionary</a>
<a href="founders.html">Campus Founders</a>
<a href="courses.html">Available Classes</a>
<a href="interactive.html" class="chosen">Campus Resources</a>
<a href="index.html">Home</a>
</nav>
</section>
<div id="CORE">
<section name="resources_info">
<h1>Navigating Columbia's Resources for your Project</h1>
<p>Whether you work in the lab with chemicals or store your work in a folder on your laptop, Columbia
has resources, competitions, and programs designed to help you scale from 1 to a 100, and 100 to a million.
Explore programs below and use the appropriate tools to filter your search.</p>
</section>
<div class="powerbar">
<div class="block">
<p>Show: </p>
<div class="checkbox" v-bind:class="{'chosen' : choice == 'accelerator' && !all}" v-on:click="choice = 'accelerator', all = false"></div>
<div>Accelerators</div>
<div class="checkbox" v-bind:class="{'chosen' : choice == 'funding' && !all}" v-on:click="choice = 'funding', all = false"></div>
<div>Funding</div>
<div class="checkbox" v-bind:class="{'chosen' : choice == 'mentorship' && !all}" v-on:click="choice = 'mentorship', all = false"></div>
<div>Mentorship</div>
<div class="checkbox" v-bind:class="{'chosen' : choice == 'tools' && !all}" v-on:click="choice = 'tools', all = false"></div>
<div>Tools</div>
<div class="checkbox" v-bind:class="{'chosen' : all }" v-on:click="all = !all"></div>
<div>All Items</div>
</div>
</div>
<section name="resources">
<div class="all">
<a class="box" v-if="pass(item)" v-for="item in items"
v-bind:style="{ backgroundImage: 'url(' + item.url + ')' }"
v-bind:href="item.link"
>
<h1>{{item.name}}</h1>
<p>{{item.description}} <span>Learn More</span></p>
<div class="bar">
<span v-for="school in item.available">{{school}}</span>
<span v-if="item.money > 0" style="background-color:#ff6632;">${{item.money}}</span>
<span v-if="item.credit > 0" style="background-color:lavender;">${{item.credit}} Credit</span>
</div>
</a>
<a style="opacity:.3;" class="box" v-if="!pass(item)" v-for="item in items"
v-bind:style="{ backgroundImage: 'url(' + item.url + ')' }"
v-bind:href="item.link"
>
<h1>{{item.name}}</h1>
<p>{{item.description}} <span>Learn More</span></p>
<div class="bar">
<span v-for="school in item.available">{{school}}</span>
<span v-if="item.money > 0" style="background-color:#ff6632;">${{item.money}}</span>
<span v-if="item.credit > 0" style="background-color:lavender;">${{item.credit}} Credit</span>
</div>
</a>
</div>
</section>
</div>
<script>
CORE = new Vue({
el: '#CORE',
data: {
choice: 'tools',
all: true,
items: [
{
"url" : "http://www.lusolabs.co/images/blog/blog_2.jpg",
"name" : "Columbia Venture Competition",
"description" : "$25,000 in funding cannot hurt, can it?",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : true,
"mentorship" : false,
"money" : 25000,
"tools" : false,
"link" : "http://engineering.columbia.edu/columbia-venture-competition-1"
},
{
"url" : "images/almaworks.png",
"name" : "AlmaWorks",
"description" : "8 Weeks Fall Semester, 30 Mentors, the ideal college accelerator",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : false,
"mentorship" : false,
"money" : 0,
"tools" : true,
"link" : "http://alma.works"
},
{
"url" : "images/rocket.png",
"name" : "Ignition Grants",
"description" : "From $5,000 to $50,000, money to get you blasting off from 0 to 100",
"available" : ["Engineering"],
"accelerator" : false,
"funding" : true,
"mentorship" : false,
"money" : 50000,
"tools" : false,
"link" : "http://engineering.columbia.edu/venture-funding"
},
{
"url" : "images/rocket.png",
"name" : "Innovation Grants",
"description" : "From $5,000 to $15,000, money to get you blasting off from 0 to 100",
"available" : ["College", "General School"],
"accelerator" : false,
"funding" : true,
"mentorship" : false,
"money" : 15000,
"tools" : false,
"link" : "https://www.college.columbia.edu/news/columbia-entrepreneurship-announces-innovation-grants-columbia-college-and-school-general"
},
{
"url" : "http://engineering.columbia.edu/files/engineering/tunisia-entrepreneurship.png",
"name" : "IE@Columbia",
"description" : "A platform of entreprenuerial insight by Columbia Business School",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : false,
"mentorship" : true,
"money" : 0,
"tools" : true,
"link" : "https://www8.gsb.columbia.edu/entrepreneurship/innovation/"
},
{
"url" : "http://engineering.columbia.edu/files/engineering/tunisia-entrepreneurship.png",
"name" : "DORM ROOM FUND @CU",
"description" : "Columbia has produced Dorm Room Fund investors to help you fund your project.",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : true,
"mentorship" : true,
"money" : 20000,
"tools" : true,
"link" : "http://entrepreneurship.columbia.edu/resource/dorm-room-fund/"
},
{
"url" : "images/rdv.jpg",
"name" : "ROUGH DRAFT VENTURES@CU",
"description" : "Columbia undergraduates pioneered the opening of Rough Draft's NYC branch.",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : true,
"mentorship" : true,
"money" : 25000,
"tools" : true,
"credit" : 100000,
"link" : "http://www.roughdraft.vc/"
},
{
"url" : "images/resinc.png",
"name" : "Res. Inc",
"description" : "A dorm room incubator geared towards teaching undergraduates the fundamentals of Entreprenuership.",
"available" : ["College", "Engineering"],
"accelerator" : false,
"funding" : false,
"mentorship" : true,
"money" : 0,
"tools" : true,
"link" : "https://www.cc-seas.columbia.edu/reslife/fya/llc/resinc.php"
},
{
"url" : "https://i.vimeocdn.com/video/491383374.jpg?mw=1920&mh=1080&q=70",
"name" : "Columbia Startup Lab",
"description" : "Columbia's office space located in SoHo for price effective HQ space.",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : false,
"mentorship" : false,
"money" : 0,
"tools" : true,
"link" : "http://entrepreneurship.columbia.edu/startup-lab/"
},
{
"url" : "https://static1.squarespace.com/static/57ba894b2e69cf77508473d8/t/58a616543e00be425d9d7f87/1487279718468/Background.png?format=2500w",
"name" : "NYC Media Lab",
"description" : "Co-space for NYU / Columbia.",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : false,
"mentorship" : false,
"money" : 0,
"tools" : true,
"link" : "http://nycmedialab.org/"
},
{
"url" : "http://www.incimages.com/uploaded_files/image/970x450/SteveBlank_IdeaLab_2_Pano_40031.jpg",
"name" : "The Lean Launchpad by Steve Blank",
"description" : "Lean Launchpad is a business school class at Columbia taught by Steve Blank. Undergrads may register with permission.",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : false,
"mentorship" : true,
"money" : 0,
"tools" : true,
"link" : "https://www8.gsb.columbia.edu/courses/mba/2015/spring/b8521-001"
},
{
"url" : "https://www.nycedc.com/sites/default/files/filemanager/Blog/Harlem_Biospace/Hb-blog.jpg",
"name" : "Harlem Biospace",
"description" : "An affordable co-working wet lab, right in Manhattan.",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : false,
"mentorship" : false,
"money" : 0,
"tools" : true,
"link" : "http://harlembiospace.com/"
},
{
"url" : "https://static1.squarespace.com/static/54451b15e4b0cf00d1a77918/t/5588310de4b04e63446509e4/1436200782248/?format=1500w",
"name" : "Columbia-Coulter Translational Partnership",
"description" : "Selected teams receive funding, advice, and guidance to help advance promising biomedical technologies from conception to proof-of-concept.",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : true,
"mentorship" : true,
"money" : 190000,
"tools" : true,
"link" : "http://www.columbia-coulter.com/"
},
{
"url" : "https://tctechcrunch2011.files.wordpress.com/2016/08/2team_techcrunch.png",
"name" : "Pear VC",
"description" : "Pear's mission is to provide founders with the support required to create the next wave of legacy companies.",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : true,
"mentorship" : true,
"money" : 40000,
"tools" : true,
"link" : "https://www.pear.vc/"
},
{
"url" : "https://tctechcrunch2011.files.wordpress.com/2016/08/2team_techcrunch.png",
"name" : "Summer@HCP",
"description" : "Summer mentorship, funding via convertible note at Highland Capital Headquarters",
"available" : ["All Columbia Schools"],
"accelerator" : true,
"funding" : true,
"mentorship" : true,
"money" : 60000,
"tools" : true,
"link" : "http://summer.hcp.com/"
},
{
"url" : "https://pbs.twimg.com/media/CTftHFsWwAAcgE6.jpg",
"name" : "Columbia Makerspace",
"description" : "The Columbia Makerspace is a place for the Columbia community to build physical prototypes.",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : false,
"mentorship" : false,
"money" : 0,
"tools" : true,
"link" : "http://make.columbia.edu/"
},
{
"url" : "http://www8.gsb.columbia.edu/entrepreneurship/sites/entrepreneurship/files/images/columbiaDesignStudio.jpg",
"name" : "Columbia Design Studio",
"description" : "The Design Studio teaches students, alumni and faculty customer-centric methodologies for developing innovative, and practice.",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : false,
"mentorship" : true,
"money" : 0,
"tools" : true,
"link" : "http://entrepreneurship.columbia.edu/resources/design-studio-columbia-entrepreneurship/"
},
{
"url" : "http://entrepreneurship.columbia.edu/wp-content/uploads/2013/07/tech2.png",
"name" : "CTV Executive Advisors Network",
"description" : "CTV XAN provide mentorship, networking, and marketing and investing advice to promising CTV startups, entrepreneurs and inventors. ",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : false,
"mentorship" : true,
"money" : 0,
"tools" : false,
"link" : "http://techventures.columbia.edu/ctv-executive-advisors-network"
},
{
"url" : "http://entrepreneurship.columbia.edu/wp-content/uploads/2013/07/tech2.png",
"name" : "CTV Executives in Residence",
"description" : "Connects Columbia inventors and technologies with seasoned industry executives, venture capitalists, and serial entrepreneurs. ",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : false,
"mentorship" : true,
"money" : 0,
"tools" : false,
"link" : "http://techventures.columbia.edu/about-ctv/ctv-executives-residence"
},
{
"url" : "http://engineering.columbia.edu/files/engineering/fastpitch2014-425.jpg",
"name" : "FastPitch",
"description" : "Columbia Engineering's annual elevator pitch competition where teams have 60 seconds to sell their business ideas to a panel of judges. ",
"available" : ["All Columbia Schools"],
"accelerator" : false,
"funding" : true,
"mentorship" : false,
"money" : 2000,
"tools" : false,
"link" : "http://entrepreneurship.engineering.columbia.edu/fast-pitch.html"
},
{
"url" : "https://d0.awsstatic.com/video-thumbs/dynamodb/AWS-online-games-wide.png",
"name" : "AWS Activate X ESC",
"description" : "Amazon.com Web Services (AWS) and SEAS Entrepreneurship have partnered to provide students, staff, and faculty interested in starting web-based business ventures free tools to do so. ",
"available" : ["SEAS"],
"accelerator" : false,
"funding" : false,
"mentorship" : false,
"money" : 0,
"credit" : 1000,
"tools" : true,
"link" : "http://entrepreneurship.engineering.columbia.edu/amazon-activate.html"
}
]
},
methods: {
pass: function(item) {
if(this.all == true){
return true;
}
if(this.choice == 'accelerator' && item.accelerator == true){
return true;
}
if(this.choice == 'funding' && item.funding == true){
return true;
}
if(this.choice == 'mentorship' && item.mentorship == true){
return true;
}
if(this.choice == 'tools' && item.tools == true){
return true;
}
return false;
}
}
});
</script>
</body>