-
Notifications
You must be signed in to change notification settings - Fork 3
/
Patterns-2024-buy.html
282 lines (265 loc) · 18.9 KB
/
Patterns-2024-buy.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patterns for Async & Node.js Training</title>
<style>
body { font-family: 'Courier New', Courier, monospace; background: #121212; color: #ccc; }
header, section { padding: 20px; border-bottom: 1px solid #333; }
h1, h2, h3 { color: #8ab4f8; }
p, li, div { line-height: 1.4; }
.button { background: linear-gradient(to right, #0d47a1, #1976d2); border: none; padding: 10px 20px; color: white; border-radius: 5px; cursor: pointer; }
.register { background: #202124; padding: 20px; }
input, textarea { width: 100%; padding: 10px; margin-top: 5px; background: #333; border: 1px solid #555; color: white; border-radius: 5px; }
form { max-width: 400px; }
.case-study { background: #333; padding: 20px; margin: 15px 0; }
.testimonial { font-style: italic; background: #252526; padding: 10px; margin-bottom: 10px; }
.accordion { font-size: x-large; background: #252526; padding: 10px; margin-top: 10px; cursor: pointer; }
.panel { padding: 0 18px; background: #333; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; }
.carousel {
width: 100%;
overflow: hidden;
position: relative;
margin: 40px 0;
}
.carousel-track {
display: flex;
transition: transform 0.5s ease;
}
.carousel-item {
width: 100%;
flex-shrink: 0;
padding: 20px;
box-sizing: border-box;
margin-right: 20px;
background-color: #333;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.carousel-control {
background: none;
border: none;
color: #9acd32;
font-size: 30px;
padding: 10px;
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.prev {
left: 10px;
}
.next {
right: 10px;
}
</style>
</head>
<body>
<header>
<h1>🚀 Patterns 2024 Training</h1>
<p><i>Rethinking GRASP, SOLID, and GoF for JavaScript and Node.js</i></p>
<p>
Practical training for rethinking and applying GRASP, SOLID, GoF patterns in asynchronous programming and JavaScript for application and system developers, backend and frontend, Node.js and browser applications.
</p>
<p>
Understanding these concepts can't just be extracted from a box (or book) and placed into your mind. It varies greatly for different languages and platforms.
Blindly transferring knowledge and practices from C++ or Java to JavaScript and C# results in dead ceremonies.
However, they can be revived through practice, tied to realities, and rethought to avoid becoming monstrous and horrors.
</p>
</header>
<section>
<div class="container">
<h1>Ultimate Uniqueness</h1>
<p>From the author of the first course on asynchronous programming in JavaScript (17 years ago, Kiev Polytechnic Institute), many conference talks and lectures on Node.js. Over the years, a lot of experience, code reviews, and practices have been collected and analized to rework the course almost every year, absorbing the best practices. Timur Shemsedinov is also a contributor to many platforms and libraries in open source, including Node.js, Metarhia, geoip-lite, MDN, HowProgrammingWorks, metasync... Timur is one of the first who began to port parallel programming abstractions from C++, C#, Java, Go and other languages to JavaScript.</p>
<p>Here's what I suggest learning and practicing.:</p>
<div class="carousel" id="carouselExample">
<div class="carousel-track" id="track">
<div class="carousel-item">
<p>📂 Module Systems, Dependency Injection (DI), and Inversion of Control (IoC)</p>
</div>
<div class="carousel-item">
<p>📦 Decomposition of Abstractions and GRASP Principles</p>
</div>
<div class="carousel-item">
<p>🧩 Gang of Four patterns rethinked for JavaScript realities</p>
</div>
<div class="carousel-item">
<p>🔮 Principles of Isolation and SoC (Separation of Concerns)</p>
</div>
<div class="carousel-item">
<p>👷🏻♂️ Separation of Applied and System Code</p>
</div>
<div class="carousel-item">
<p>🧩 SOLID principles: Single Responsibility, OCP, ISP, DIP, LSP</p>
</div>
<div class="carousel-item">
<p>🌟 Multi-Paradigm Programming and Domain-Specific Languages</p>
</div>
<div class="carousel-item">
<p>🧩 Contract Programming and Modeling with Schemas</p>
</div>
<div class="carousel-item">
<p>🏛️ Clean Architecture and Layered Architecture</p>
</div>
</div>
</div>
</div>
</section>
<section>
<h2>Training format</h2>
<p>
<il>
<li>🗓️ 12 weeks (3 months) + onboarding (1 week) + secret module</li>
<li>👍 You will get access to course materials forever</li>
<li>🕑 Every week (mandatory): 1 hour of lectures + 2 hours of calls + 2 hours of independent work</li>
<li>🥋 Training and group work with mentors, not just watching videos and reading</li>
<li>🙋♂️ Optional: for deep dive +3 hours of additional materials on senior plans</li>
<li>🏅 You receive a certificate upon completion of the course</li>
<li>⚠️ Requirements: basic JavaScript + practical programming experience is recommended</li>
<li>🙅 Not for: beginners, look for free materials for beginners at Timur's Youtube and Github</li>
<li>💳 Payment plan: full payment or monthly payment for all plans except minimum</li>
<li>🗺️ After the course, participation in the community (thousands of people around the world)</li>
<li>💬 Working languales: RU, UA, EN, TR</li>
</il>
</p>
</section>
<section>
<h2>📖 Course structure: <a href="https://github.com/HowProgrammingWorks/Index/blob/master/Courses/Patterns-2024.md" style="color: #8ab4f8;">Patterns-2024.md (github)</a></h2>
</section>
<section class="accordion">👉 Minimal $450</section>
<div class="panel">
<ul>
<li>Duration: 12 weeks (3 months)</li>
<li>Lectures: 20 hours (recordings) + optional materials: 20 hours</li>
<li>Q&A calls: 24 hours (live, recordings)</li>
<li>Code examples from real projects</li>
<li>Tasks with solution and autamated checking in CI</li>
<li>Self assessment: automated tool with robot</li>
<li>Personalized roadmap with automated analysis</li>
</ul>
<p>
<i>Registration is temporarily closed.</i>
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/b616fec6cd058');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important">💳 Buy 3 months: $450</span></button-->
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/b0e46cd247e28');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important">💳 Buy 1 month: $150</span></button-->
</p>
</div>
<section class="accordion">👉 Standard $1250</section>
<div class="panel">
<ul>
<li>Duration: 12 weeks (3 months)</li>
<li>Lectures: 20 hours (recordings) + optional materials: 20 hours</li>
<li>Q&A calls: 24 hours (online)</li>
<li>Code examples from real projects</li>
<li>Tasks with solution and checking by a mentor</li>
<li>Self assessment: automated tool with mentors review</li>
<li>Personalized roadmap with a mentor consultation</li>
<li>Weekly calls: 2 hours per week group consultations until the end of the year</li>
</ul>
<p>
<i>Registration is temporarily closed.</i>
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/ba9f90361ebe2');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important;margin:5px 0">💳 Buy 3 months: $1250</span></button-->
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/b90adff626761');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important;margin:5px 0">💳 Buy 1 month: $417</span></button-->
</p>
</div>
<section class="accordion">👉 Prefessional $2850</section>
<div class="panel">
<ul>
<li>Duration: 12 weeks (3 months)</li>
<li>Authors personal consultations: 1 hour (1-on-1)</li>
<li>Mentor personal consultations: 10 hours (1-on-1)</li>
<li>Lectures: 20 hours (recordings) + optional materials: 30 hours</li>
<li>Q&A calls: 24 hours (online)</li>
<li>Code examples from real projects</li>
<li>Assignments: work with a mentor, code review, optimizations</li>
<li>Self assessment: automated tool with mentors review</li>
<li>Personalized roadmap with a couse author advices</li>
<li>Weekly calls: 6 hours per week group consultations until the end of the year</li>
<li>All course materials: Node.js 2024 и Async 2024</li>
<li>Meetings with invited experts (live and recorded)</li>
</ul>
<p>
<i>Registration is temporarily closed.</i>
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/b67684745e505');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important;margin:5px 0">💳 Buy 3 months: $2850</span></button-->
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/bf0bb22578e9f');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important;margin:5px 0">💳 Buy 1 month: $950</span></button-->
</p>
</div>
<section class="accordion">👉 Exclusive $10000</section>
<div class="panel">
<ul>
<li>Duration: 12 weeks (3 months)</li>
<li>Personal consultations with the course author: 5 hours (1-on-1)</li>
<li>Group career and professional consultations with the author: 10 hours</li>
<li>Lectures: 20 hours (recordings) + optional materials: 30 hours</li>
<li>Q&A calls: 24 hours (online)</li>
<li>Code examples from real projects</li>
<li>Assignments: code review from the course author, solution comparison, optimizations</li>
<li>Self assessment: automated tool with course author review</li>
<li>Personalized roadmap with a couse author consultation</li>
<li>Weekly calls: 6 hours per week group consultations until the end of the year</li>
<li>All recordings of the author's previous courses, including Node.js and Async 2024</li>
<li>Meetings with invited experts (live and recorded)</li>
<li>Create a conference talk with author's supervision (on request)</li>
<li>Personal consultations with invited experts (on request)</li>
<li>Participation in projects with course author (optional)</li>
<li>Interview with the course author (recording or publication, optional)</li>
<li>Consulting on building architecture, product, company, and business</li>
<li>Additional exclusive materials from the course author's archive</li>
</ul>
<p>
<i>Registration is temporarily closed.</i>
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/bce660f3a039a');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important;margin:5px 0">💳 Buy 3 months: $10000</span></button-->
<!--script type="text/javascript" id="widget-wfp-script" src="https://secure.wayforpay.com/server/pay-widget.js?ref=button"></script> <script type="text/javascript">function runWfpWdgt(url){var wayforpay=new Wayforpay();wayforpay.invoice(url);}</script> <button type="button" onclick="runWfpWdgt('https://secure.wayforpay.com/button/bb222242722f6');" style="display:inline-block!important;background:#0488cd;background-size:cover;width: 256px!important;height:54px!important;border:none!important;border-radius:14px!important;padding:18px!important;box-shadow:3px 2px 8px rgba(71,66,66,0.22)!important;text-align:center!important;outline:none!important;margin:5px 0" onmouseover="this.style.opacity='0.8';" onmouseout="this.style.opacity='1';"> <span style="font-family:Verdana,Arial,sans-serif!important;font-weight:bold!important;font-size:14px!important;color:#ffffff!important;line-height:18px!important;vertical-align:middle!important;margin:5px 0">💳 Buy 1 month: $3334</span></button-->
</p>
</div>
<section>
<h2>About the author</h2>
<p>Timur Shemsedinov - 28 years in IT, expert in node.js & javascript, software engineering, cybernetics, distributed systems architecture, databases, metaprogramming and building cloud services.</p>
</section>
<section class="register">
Registration for the training: <a href="https://forms.gle/wuJ3nvSeF2apgUESA" style="color: #8ab4f8;">https://forms.gle/wuJ3nvSeF2apgUESA</a>
</section>
<footer>
<h2>Public offer</h2>
<p><a href="./files/public-offer.pdf">Публічна оферта</a></p>
</footer>
<script>
const acc = document.getElementsByClassName('accordion');
const closeAll = () => {
for (const item of acc) {
item.classList.remove('active');
const panel = item.nextElementSibling;
panel.style.maxHeight = null;
}
};
for (const item of acc) {
item.addEventListener('click', ({ target }) => {
closeAll();
target.classList.add('active');
const panel = target.nextElementSibling;
panel.style.maxHeight = panel.scrollHeight + 'px';
});
}
let currentSlide = 0;
const track = document.getElementById('track');
const slides = Array.from(track.children);
const slideWidth = slides[0].offsetWidth + 20;
let slideInterval = setInterval(() => moveSlide(1), 3000);
function moveSlide(direction) {
currentSlide += direction;
if (currentSlide < 0) {
currentSlide = slides.length - 1;
} else if (currentSlide >= slides.length) {
currentSlide = 0; // Wrap to first slide
}
track.style.transform = `translateX(-${currentSlide * slideWidth}px)`;
resetTimer();
}
function resetTimer() {
clearInterval(slideInterval);
slideInterval = setInterval(() => moveSlide(1), 3000);
}
</script>
</body>
</html>