-
Notifications
You must be signed in to change notification settings - Fork 89
/
index.html
214 lines (213 loc) · 7.36 KB
/
index.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
<html>
<head>
<title>RxJS Fundamentals</title>
<meta charset="UTF-8"/>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
<link
href="https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:wght@500;600;700&family=Press+Start+2P&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/shared/style.scss"/>
<link rel="stylesheet" href="/shared/home.scss"/>
<link rel="icon" href="/shared/favicon.svg" type="image/svg+xml"/>
</head>
<body>
<main class="container">
<header>
<h1>RxJS Fundamentals</h1>
<p>
You can find the Github repository for the code and lessons
<a href="https://github.com/stevekinney/rxjs-fundamentals#readme">
here </a
>. You can learn more about
<a href="https://github.com/stevekinney/rxjs-fundamentals#readme"
>getting started in the <code>README.md</code>
</a
>.
</p>
<p>
Watch the <a href="https://frontendmasters.com/courses/rx-js/">Rx.js fundamentals course here</a>.
</p>
</header>
<section class="columns">
<div class="lessons">
<h2>Lessons</h2>
<ol>
<li>
<a href="/lessons/creating-observables-exercise">
Creating Obsevables (Exercise)
</a>
</li>
<li>
<a href="/lessons/creating-observables-solution">
Creating Observables (Solution)
</a>
</li>
<li>
<a href="/lessons/from-event-exercise">fromEvent (Exercise)</a>
</li>
<li>
<a href="/lessons/from-event-solution">fromEvent (Solution)</a>
</li>
<li>
<a href="/lessons/basic-counter">
Intervals & Timers and Basic Counter (Exercise)
</a>
</li>
<li>
<a href="/lessons/basic-counter-solution">
Basic Counter (Solution)
</a>
</li>
<li>
<a href="/lessons/basic-operators">
Basic Operators (Follow Along and Exercise)
</a>
</li>
<li>
<a href="/lessons/basic-operators-solution">
Basic Operators (Solution)
</a>
</li>
<li>
<a href="/lessons/combining-operators/">Combining Operators</a>
</li>
<li>
<a href="/lessons/combining-operators-solution">
Combining Operators (Solution)
</a>
</li>
<li>
<a href="/lessons/manipulating-time-follow-along">
Manipulating Time (Follow Along)
</a>
</li>
<!-- <li>
<a href="/lessons/manipulating-time-exercise">
Markdown Renderer (Exercise)
</a>
</li>
<li>
<a href="/lessons/manipulating-time-solution">
Markdown Renderer (Solution)
</a>
</li> -->
<li>
<a href="/lessons/merging-timelines-follow-along">
Merging Timelines (Follow Along)
</a>
</li>
<li>
<a href="/lessons/switch-map"> Switch Map </a>
</li>
<li>
<a href="/lessons/switch-map-exercise"> Switch Map (Exercise) </a>
</li>
<li>
<a href="/lessons/switch-map-solution"> Switch Map (Solution) </a>
</li>
<li>
<a href="/lessons/fetching-dog-facts"> Fetching Dog Facts </a>
</li>
<li>
<a href="/lessons/basic-async">Basic Async (Exercise)</a>
</li>
<li>
<a href="/lessons/basic-async-solution">
Basic Async (Solution)</a
>
</li>
<li>
<a href="/lessons/autocomplete">Autocomplete</a>
</li>
<li>
<a href="/lessons/progressive-data-enhancement">
Progressive Data Enhancement
</a>
</li>
<li>
<a href="/lessons/loading-state"> Loading States </a>
</li>
</ol>
</div>
<div class="applications">
<h2>Applications</h2>
<p id="production-notification" class="hidden">These are intended to be run locally. <a href="https://github.com/stevekinney/rxjs-fundamentals">Clone the repository</a> and learn more about getting started <a href="https://github.com/stevekinney/rxjs-fundamentals#readme">here</a>.</p>
<ol>
<li>
<a href="/applications/playground/index.html">
Observable Playground
</a>
</li>
<li>
<a href="/applications/from-event/index.html">
Generating Observables from Events
</a>
</li>
<li>
<a href="/applications/basic-counter/index.html">Basic Counter</a>
</li>
<li>
<a href="/applications/manipulating-time/index.html">
Manipulating Time
</a>
</li>
<li>
<a href="/applications/deep-thoughts/index.html">
Markdown Renderer
</a>
(<a href="/applications/deep-thoughts-complete/index.html"
>Completed</a
>)
</li>
<li>
<a href="/applications/merging-timelines/index.html">
Merging Timelines
</a>
</li>
<li>
<a href="/applications/mapping/index.html">Mapping Exercises</a>
(<a href="/applications/mapping-complete/index.html">Completed</a
>)
</li>
<li>
<a href="/applications/dog-facts/index.html">Dog Facts</a> (<a
href="/applications/dog-facts-complete/index.html"
>Completed</a
>)
</li>
<li>
<a href="/applications/loading-states/index.html">
Loading States
</a>
</li>
<li>
<a href="/applications/pokemon/index.html">Pokémon API</a>
(<a href="/applications/pokemon-paginated/index.html">Paginated</a
>,
<a href="/applications/pokemon-autocomplete/">Autocomplete</a
>,
<a href="/applications/pokemon-data-enhancement/"
>Data Enhancement</a
>)
</li>
<li>
<a href="/applications/pixel-editor/index.html">Pixel Editor</a>
</li>
</ol>
</div>
</section>
</main>
<script>
if (window.location.protocol === 'https:') {
const notification = document.getElementById('production-notification');
if (notification) {
notification
.classList
.remove('hidden');
}
}
</script>
</body>
</html>