Skip to content

Commit 1fabddb

Browse files
committed
adjust alt attributes for images
1 parent bd19d81 commit 1fabddb

File tree

5 files changed

+11
-14
lines changed

5 files changed

+11
-14
lines changed

blog/2018-02-rxjs-own-log-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export function log<T>(message?: string): OperatorFunction<T, T> {
189189
}
190190
```
191191

192-
![](observer-wrapper.png)
192+
![Illustration of the Observer Wrapper from the previous code snippet](observer-wrapper.png)
193193

194194

195195
If you take a look into the [RxJS source code](https://github.com/ReactiveX/rxjs/blob/cfbfaac36c847a1d09434a78ac1737c4a3149c5c/src/internal/operators/map.ts#L39-L46) you will see: that's exactly the approach they go for all the built-in operators.

blog/2018-04-swagger-codegen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ In this article we will use the following API:
5656

5757
Please feel free to explore it via [Swagger UI](https://api.angular.schule/swagger-ui/).
5858

59-
[![Screenshot](swagger-ui.png)](https://api.angular.schule/swagger-ui/)
59+
[![Screenshot Swagger UI](swagger-ui.png)](https://api.angular.schule/swagger-ui/)
6060

6161
Swagger codegen has a plenty of arguments to adjust.
6262
The minimal command line arguments are:

blog/2018-06-apollo-graphql-code-generator/README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ Depending on the use-case, I favour a different approach to read and change in m
2727

2828
## Hello GraphQL
2929

30-
<!--![Logo graphql](logo-graphql.svg?sanitize=true)-->
31-
<img src="https://angular-schule.github.io/website-articles/2018-06-apollo-graphql-code-generator/logo-graphql.svg?sanitize=true" width="75%">
30+
<img src="logo-graphql.svg" width="75%">
3231

3332
One fundamental problem of a classical REST api is the amount of received data.
3433
Sometimes we fetch too much data, so there is data in the response we don't use.
@@ -156,8 +155,7 @@ You can learn more about the query language in [the official documentation](http
156155

157156
## Querying data with Apollo Angular
158157

159-
<!--![Logo Apollo](logo-apollo.svg?sanitize=true)-->
160-
<img src="https://angular-schule.github.io/website-articles/2018-06-apollo-graphql-code-generator/logo-apollo.svg?sanitize=true" width="75%">
158+
<img src="logo-apollo.svg" width="75%">
161159

162160
GraphQL has become very popular in recent times and there are a lot of implementations for various programming languages and frameworks.
163161
In the Angular world, the [Apollo](https://www.apollographql.com/) library is quite popular.
@@ -286,8 +284,7 @@ Of course, other people have already done the hard work for us.
286284

287285
## Generating types with GraphQL code generator
288286

289-
<!--![Logo GraphQL code generator](logo-graphql-code-generator.svg?sanitize=true)-->
290-
<img src="https://angular-schule.github.io/website-articles/2018-06-apollo-graphql-code-generator/logo-graphql-code-generator.svg?sanitize=true" width="50%">
287+
<img src="logo-graphql-code-generator.svg" width="50%">
291288

292289
All information we need is already in the GraphQL schema.
293290
We are not going to use the [__Apollo__ GraphQL code generator](https://github.com/apollographql/apollo-codegen) here.

blog/2019-08-ng-deploy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ ng run your-angular-project:deploy-firebase
181181

182182
## How to make your own deployment builder
183183

184-
[![Teaser](ng-deploy-starter-project.jpg)](https://github.com/angular-schule/ngx-deploy-starter)
184+
[![](ng-deploy-starter-project.jpg)](https://github.com/angular-schule/ngx-deploy-starter)
185185

186186
As a cloud platform provider (or as a fan of that service), you should consider to implement a dedicated deployment builder, too.
187187
The spectrum of possibilities is wide: Let's think about a deployment via FTP, to AWS, to Heroku, to Rackspace etc. – it's up to YOU to launch the next rocket! 🚀

blog/2021-12-rxjs-turn-signal/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const stepTimeMs = 500;
6464
const rawSignal$ = timer(0, stepTimeMs).pipe(map(e => e % 2 === 0));
6565
```
6666

67-
![Marble Diagram](marble-map.svg)
67+
![Marble Diagram map](marble-map.svg)
6868

6969
## The trigger
7070

@@ -128,7 +128,7 @@ press$.pipe(
128128

129129
In the following marble diagram you can see that emissions from the source are being ignored as long as the signal is running.
130130

131-
![Marble Diagram](marble-exhaustmap.svg)
131+
![Marble Diagram exhaustMap](marble-exhaustmap.svg)
132132

133133
## Displaying the signal
134134

@@ -183,7 +183,7 @@ timer(0, 1000).pipe(
183183
).subscribe(e => console.log(e));
184184
```
185185

186-
![Marble Diagram](marble-takeuntilsimple.svg)
186+
![Marble Diagram takeUntil](marble-takeuntilsimple.svg)
187187

188188
Back to our turn signal, things become a little more challenging.
189189
The signalling period must be terminated when at least 3 cycles have passed *and* the trigger has been released.
@@ -246,7 +246,7 @@ press$.pipe(
246246
)
247247
```
248248

249-
![Marble Diagram](marble-takeuntil.svg)
249+
![Marble Diagram takeUntil with closingNotifier](marble-takeuntil.svg)
250250

251251
## Switching off the light
252252

@@ -300,7 +300,7 @@ While a signal cycle is running, all other presses will be ignored.
300300
The signal ends after the trigger is released and at least 3 cycles have been finished.
301301
Regardless of how the interrupted signal ends, it will always switch off the light when it leaves the room.
302302

303-
![Marble Diagram](marble-final.svg)
303+
![Marble Diagram with exhaustMap and the final result](marble-final.svg)
304304

305305
Here is the full code:
306306

0 commit comments

Comments
 (0)