-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcoding-minutes-and-scaler.html
526 lines (427 loc) · 24.9 KB
/
coding-minutes-and-scaler.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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!---Favicon-->
<link rel="icon" type="image/png" href="imgs/icon.png" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous" />
<!--Custom CSS-->
<link rel="stylesheet" href="style.css" />
<!---FontAwesome-->
<script src="https://use.fontawesome.com/2445c4adc5.js"></script>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,300,400,700" rel="stylesheet" />
<title>Coding Minutes | Scaler</title>
<meta property="og:url" content="http://www.codingminutes.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Coding Minutes has a new Home, Scaler Academy - What's Next?">
<meta property="og:description" content="Coding Minutes will continue to bring pocket friendly specialised coding courses, post-acquistion ">
<meta property="og:image" content="">
<style>
.giveaway-heading{
font-size: 70px;
}
.video{
height: 500px;
padding: 50px;
}
#promo-video{
width: 70%;
height: 500px;
/* height: 100%; */
}
.title-container {
padding-bottom: 200px !important;
}
.highlight-text-green {
font-weight: bold;
color: #7ac25b;
font-style: italic;
font-size: 1.5rem;
}
.highlight-text-purple {
font-weight: bold;
font-style: italic;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
background-image: linear-gradient(to right, #5848ea, #9549eb);
font-size: 1.5rem;
}
.press-release-cm-scaler {
width: 50%;
text-align: justify;
font-size: 1.25rem;
}
.highlighted-text {
background: linear-gradient(to right, #5848ea, #9549eb);
padding: 50px;
width: 100%;
color: white;
text-align: center;
}
.highlighted-text-content {
width: 75%;
}
.cm-scaler-image-container {
display: flex;
justify-content: center;
}
.cm-scaler-image {
width: 50%;
margin-top: -150px !important;
border-radius: 10px;
}
@media screen and (max-width: 500px) {
.container{
padding: 2px;
}
.video{
padding: 10px;
height: 200px;
}
.giveaway-heading{
font-size: 50px;
}
.sub-heading{
font-size: 40px;
}
#promo-video{
width: 100%;
height: 200px;
}
}
@media screen and (max-width: 750px){
.cm-scaler-image {
width: 80%;
}
.press-release-cm-scaler {
width: 80%;
}
.highlighted-text-content {
width: 100%;
}
.highlighted-text {
width: 100% !important;
}
}
</style>
</head>
<body>
<!-- Bootstrap JavaScript -->
<section id="cover-banner" class="w-100">
<!--Responsive Navbar-->
<nav class="navbar navbar-expand-md navbar-dark bg-transparent">
<div class="container">
<a class="navbar-brand" href="./index.html">
<img src="imgs/logo_white.png" height="40" />
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#cmnavbar2">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="cmnavbar2">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<strong><a class="nav-link" href="http://ide.codingminutes.com" target="_blank">Online IDE</a></strong>
</li>
<li class="nav-item"><a class="nav-link" href="./index.html#course_gallery">Courses</a></li>
</li>
<li class="nav-item">
<a class="nav-link" href="./campus-captain.html">Campus Captain</a>
</li>
<li class="nav-item"><a class="nav-link" href="./index.html#team">Team</a></li>
<li>
<a class="nav-link" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!--Cover Text and Graphic-->
<div class="container p-5 title-container">
<div class="row align-items-center mt-5">
<div class="col lg-12 text-center">
<h2 class="giveaway-heading font-weight-bold" style="text-shadow: 1px 2px 4px blue;">Coding Minutes has a new Home, Scaler Academy! 🤩</h2> <br>
<p class="lead d-md-block">
Scaler (by InterviewBit) has announced acquistion of Coding Minutes,
post-acquistion Coding Minutes will continue on its mission of bringing high quality & pocket friendly online courses even at an even greater speed under the umbrella of Interviewbit and Scaler Academy. Keep Scrolling to find out more.
</p>
<!-- <button class="btn btn-move btn-white md-3 font-weight-bold" onclick="location.href='#signup'">
<i class="fa fa-tv mr-1"></i>
FAQ's
</button> -->
</div>
</div>
</div>
</section>
<div class="cm-scaler-image-container">
<img src = "imgs/CMScaler.png" class="img-fluid m-4 cm-scaler-image" ></img>
</div>
<div class="row no-gutters justify-content-center">
<div class="press-release-cm-scaler">
Bengaluru, 21st October 2021: <span class="highlight-text-purple">Scaler (by InterviewBit)</span>, one of the fastest-growing tech upskilling startups, has announced the acquisition of the online learning platform <span class="highlight-text-purple">Coding Minutes</span>. This is the second acquisition for the edtech startup. In August, Scaler acquired Coding Elements to accelerate business growth, leading to their Data Science & Machine Learning vertical launch.
<br/>
<br/>
Bootstrapped by <span class="highlight-text-green">Prateek Narang</span>, <span class="highlight-text-green">Mohit Uniyal</span> and <span class="highlight-text-green">Jatin Virmani</span>, <strong>Coding Minutes</strong> was started in early 2021 and, within 4 months of launch, enrolled more than 20,000 learners from 120 countries across their varied courses. Prateek and Mohit started Coding Minutes with a vision to bring a first-class digital learning experience for young coders at a super-affordable price point. The platform offers short duration courses that cover critical concepts across Data structures, Algorithms, Programming Languages like Python, C++, Java, Version Control Systems, Data Science, Machine Learning and Competitive Programming. Coding Minutes has quickly become the platform of choice for 50,000+ unique beginner coders and amassed an impressive 6 million minutes of watch time across all their courses. The e-learning platform is also projected to hit an ARR of Rs. 1 Crore in the current financial year.
<br/>
<br/>
With the acquisition of Coding Minutes, Scaler will focus on building specialised content that effectively engages the beginner-level tech aspirant. To date, the ed-tech brand has focused on upskilling existing tech talent. This acquisition allows Scaler to tailor content towards students and professionals who want to enter the tech industry and have no background in coding or programming. Additionally, it bolsters Scaler's instructor and engineering teams. Both Prateek and Mohit are exceptional engineers and phenomenal teachers that their students love. Coding Minutes will become a part of Scaler and will continue to bring pocket-friendly specialised courses for beginners as part of the acquisition. Prateek Narang has joined as the Engineering Lead & Instructor for Scaler Academy, Mohit Uniyal has joined as the Instructor for Scaler Data Science & ML Program and Jatin Virmani has joined as Program Manager-Content in the marketing team.
<br/>
<br/>
<span class="highlight-text-green">Abhimanyu Saxena, Co-Founder, Scaler & InterviewBit</span>, said. "We are very excited about this acquisition as the Coding Minutes team is fantastic. They are a great combination of outstanding engineering minds with a sincere passion for teaching and giving back to the community. It is truly a 1+1>2 kind of partnership where the impact we can create together for the technology ecosystem in the country is tremendous and something neither of us could have achieved without each other. As we gear up for our next phase of growth and expansion, the experience that Prateek, Mohit & Jatin bring to the table will help us tap into a much wider learner base. Thanks to them, we at Scaler are one step closer to becoming a world-class virtual tech-varsity."
<br/>
<br/>
<span class="highlight-text-green">Prateek Narang, Co-Founder, Coding Minutes</span> added. "Over the last few years, Scaler has truly disrupted the tech education landscape in the country. They have built a solid outcome-focused learning platform that helps build dexterity, crack great employment opportunities, and empowers learners to understand how to excel once they enter the workforce. When we launched Coding Minutes, our vision was quite similar. We wanted to empower the masses with industry-ready tech skills without spending heavily on educational degrees. Both Mohit and I strongly believe that after this acquisition, we can add more value to students' lives & help them crack great opportunities given Scaler's strong industry connect. Together we can accelerate the pace at which Indian engineers and techies contribute to the larger global technology ecosystem."
<br/>
<br/>
Prateek holds a B.Tech degree from Delhi Technological University and has done masters from IIT Delhi. He worked with Google India as a software engineer before joining Scaler. He has also worked with Coding Blocks in the capacity of a Co-Founder, where he built the complete academics vertical and launched several online programs for the brand. A professional programmer and teacher by heart, Mohit has worked with several e-learning platforms such as Coding Blocks, Internshala, Camp K-12, Dignitas Digital and Nerd Geek Labs in varied capacities. He did his bachelor's in computer science from the University of Delhi and is currently pursuing a postgraduate program in Machine Learning and Artificial Intelligence from the University of Hyderabad.
<br/>
<br/>
<span class="highlight-text-purple">Scaler (by InterviewBit)</span> is an exclusive upskilling platform for tech enthusiasts and has grown to be a prominent name in the tech segment in a very short period. As a testament to its growth, Scaler raised 20 million USD in Series-A Funding led by marquee investors like Sequoia Capital, Tiger Global and Rocket Internet, among others, in January 2020. To expand its offerings, they have also recently introduced the Data Science & Machine Learning program and a unique subscription-based lifelong career accelerator, Forever. Today, Scaler has over 650 employees and 1000+ mentors/teaching assistants on the platform to bridge the tech talent gap in India. So far, more than 8,500 learners have joined Scaler's educational programs.
</div>
</div>
<div class="row no-gutters justify-content-center mt-5">
<div class="press-release-cm-scaler highlighted-text row no-gutters justify-content-center">
<div class="highlighted-text-content">
<h2 class="text-center font-weight-bold mb-4">About Scaler</h2>
Launched in 2019, Scaler (by InterviewBit) is India's top edtech startup focused on upskilling college students and tech professionals and creating the finest software engineers in the country. Scaler's industry-vetted curriculum provides the highest quality technology education in the world in various latest technologies. Students enrolled in Scaler are mentored and taught by over 1000 tech leaders and subject matter experts working with leading organisations, including Google, Facebook, Intuit, Microsoft, Amazon, Hotstar, Snapdeal etc. Scaler has generated better career outcomes in a short period, and on average, its learners see a 4.5x RoI (return on investment) from the course. In 2020, Scaler placed more learners in Amazon than all IITs combined, a feat unmatched by any other ed-tech startup in Asia. The startup's parent firm, InterviewBit, is featured on the Financial Times Asia Pacific High Growth Companies 2021 ranking – one of the only two Indian Edtech startups to make it to the list. Scaler is backed by marquee global investors like Sequoia Capital and Tiger Global. For more information, please visit: <a href="https://www.scaler.com/" style="color: white;"><strong>www.scaler.com</strong></a>
</div>
</div>
</div>
<!-----------------End of section -------->
<section id="faq">
<div class="container p-5 text-left">
<h1 class="text-center font-weight-bold"> FAQ's</h1>
<p class="text-muted text-center">Frequently Asked Questions</p>
<div id="accordion">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true"
aria-controls="collapseOne">
What will happen to Coding Minutes?
</button>
</h5>
</div>
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body">
Coding Minutes will remain as it is, the brand will continue to empower masses with free & affordable high quality content even with a greater speed.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseTwo"
aria-expanded="false" aria-controls="collapseTwo">
Will new courses come on Coding Minutes?
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
<div class="card-body">
Yes, absolutely. Coding Minutes will keep on bringing pocket friendly courses on Udemy as we were doing earlier. We are bringing Competitive Programming Master Course in November 2021 next and followed by specialised learning tracks.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseThree"
aria-expanded="false" aria-controls="collapseThree">
Will there be change in pricing or access duration of the courses?
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body">
Not at all. All our courses will continue to have lifetime access and same pocket friendly pricing.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false"
aria-controls="collapseFour">
Will there be LIVE classes by Coding Minutes mentors?
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordion">
<div class="card-body">
Coding Minutes mentors will take free youtube webinars, and free MasterClasses under Scaler.
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFive">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false"
aria-controls="collapseFive">
Why is Coding Minutes getting acquired by Scaler?
</button>
</h5>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#accordion">
<div class="card-body">
This acquisition allows our team, especially instructors & founders, to focus on creating quality & affordable content without worrying about marketing, operations and other aspects of running the company. Students also become a part of a larger ecosystem under Scaler, and can benefits from both organisations. We believe given Scaler’s strong industry connect, will help a lot of college students to crack off-campus jobs as well.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingSix">
<h5 class="mb-0">
<button class="btn btn-link collapsed" data-toggle="collapse" data-target="#collapseSix" aria-expanded="false"
aria-controls="collapseSix">
Will there be any changes to the Campus Captain Program?
</button>
</h5>
</div>
<div id="collapseSix" class="collapse" aria-labelledby="headingSix" data-parent="#accordion">
<div class="card-body">
No major changes to the Campus Captain Program as of now. Campus Captains will continue to enjoy perks, and we are opening up more paid internship/freelance opportunities in tech content writing/ TAships for them.
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div style="height:100px"></div> -->
</section>
<!-- Recommended courses -->
<section id="course_gallery" class="container py-5">
<h1 class="pb-4 text-center font-weight-bold"> Recommended Courses </h1>
<div class="row justify-content-center">
<div class="col-xl-4 col-md-6 mb-md-0 mb-4">
<div class="card shadow">
<img src="imgs/DS.jpg" class="card-img-top" />
<div class="card-body">
<h5 class="card-title bold6"><strong>Data Structures & Algorithms Level up course (2021)</strong></h5>
<!-- <h5 class="card-title bold6">Learn by solving problems</h5> -->
<p class="card-text"><i class="fa fa-graduation-cap" aria-hidden="true"></i>
Prateek Narang</p>
<p>Level : <strong>Intermediate to Advanced</strong></p>
<div class="row px-3 justify-content-between align-items-center">
<p class="card-text mb-0">
<span class="rating">4.7</span>
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
</p>
<a href="./dsa.html" target="_blank" class="btn btn-gradient-primary">Explore</a>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="card shadow">
<img src="imgs/Python_DS.jpg" class="card-img-top" />
<div class="card-body">
<h5 class="card-title bold6"><strong>Python for Data Science Master Course (2021)</strong></h5>
<!-- <h5 class="card-title bold6">Learn by solving problems</h5> -->
<p class="card-text"><i class="fa fa-graduation-cap" aria-hidden="true"></i>
Mohit Uniyal</p>
<p>Level : <strong>Beginners to Advanced</strong></p>
<div class="row px-3 justify-content-between align-items-center">
<p class="card-text mb-0">
<span class="rating">4.9</span>
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
</p>
<a href="./python-data-science.html" class="btn btn-gradient-primary">Explore</a>
</div>
</div>
</div>
</div>
<div class="col-xl-4 col-md-6">
<div class="card shadow">
<img src="imgs/Graphs.jpg" class="card-img-top" />
<div class="card-body">
<h5 class="card-title bold6"><strong>Graph Algorithms for Competitive Coding (2021)</strong></h5>
<!-- <h5 class="card-title bold6">Learn by solving problems</h5> -->
<p class="card-text"><i class="fa fa-graduation-cap" aria-hidden="true"></i>
Prateek Narang, Apaar Kamal</p>
<p>Level : <strong>Beginner to Advanced</strong></p>
<div class="row px-3 justify-content-between align-items-center">
<p class="card-text mb-0">
<span class="rating">5.0</span>
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
<img class="pb-1" src="imgs/star_filled.svg" />
</p>
<a href="./graph-algorithms.html" class="btn btn-gradient-primary">Explore</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- END of section -->
<!--Footer-->
<section id="footer" class="p-5">
<div>
<!--<div id="footer_img">
<img src="imgs/footer.svg" class="w-100 d-none d-lg-block">
<img src="imgs/rectangle_middle.svg" class="w-100 d-block d-lg-none">
</div>-->
<div class="container text-center">
<img src="imgs/logo_white.png" width="200px">
<div class="row mt-5 text-center text-light">
<div class="col-sm-6 text-left">
<h4 class="lead"><strong>Get in Touch</strong></h4>
<br>
<p><i class="fa fa-envelope fa-2x" aria-hidden="true"> </i> [email protected]
</p>
<a class="social-link" target="_blank" href="https://www.linkedin.com/company/codingminutes/"><p><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"> </i> Follow on LinkedIn
</p></a>
<a class="social-link" href="https://www.youtube.com/channel/UCWrVQZ07TBumcwV0YbcH4Kg?view_as=subscriber" ><p><i class="fa fa-youtube-play fa-2x" aria-hidden="true"> </i> Subscribe to Youtube Channel
</p></a>
<p><i class="fa fa-whatsapp fa-2x" aria-hidden="true"> </i> (+91) 8947050005
</p>
</div>
<div class="col-sm-6 text-left">
<h4 class="lead"><strong>Coding Minutes</strong></h4>
<p class="text-white">Coding Minutes was started with a mission to provide affordable & high quality
coding education for everyone. With Udemy as
our technology partner, we wish to bring all our courses with top-notch content to our students at pocket
friendly prices with lifetime access. </p>
</div>
</div>
<hr>
<p class="text-center text-white-50 mt-5"> ©2021 Coding Minutes. All rights reserved </p>
</section>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4K18E4TM1G"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4K18E4TM1G');
</script>
</body>
</html>