Skip to content

Commit abc6404

Browse files
besessenerxxthunder
authored andcommittedJan 12, 2024
inhaltliche Vorschau
1 parent af492cc commit abc6404

13 files changed

+125
-0
lines changed
 

‎chapters/03_sple.md

+4
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@ His workflow is quite straightforward. Whatever he delivers works :D
2121
For us humans it looks a bit different ... one stays in such a loop until things
2222
are working as expected.
2323
Luckilly we have standards to help us with this!
24+
25+
--
26+
27+
## SPLE basics

‎chapters/04_aspice.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## Automotive Software Process Improvement and Capability Determination
2+
3+
Automotive SPICE <!-- .element: class="fragment" -->
4+
5+
--
6+
7+
![](images/Slide1.png)
8+
9+
--
10+
11+
![](images/Slide2.png)
12+
13+
--
14+
15+
![](images/Slide3.png)
16+
17+
--
18+
19+
![](images/Slide4.png)
20+
21+
--
22+
23+
![](images/Slide5.png)

‎chapters/05_solutions.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Lösungen

‎chapters/06_ci.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## CI

‎chapters/07_recap.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Recap
2+
3+
--
4+
5+
## Component
6+
7+
* 🛠️ configurable <!-- .element: class="fragment custom blur" -->
8+
* 🧩 transferable <!-- .element: class="fragment custom blur" -->
9+
* 😎 tested <!-- .element: class="fragment custom blur" -->
10+
* 🔎 A.SPICE compliant <!-- .element: class="fragment custom blur" -->
11+
12+
Note:
13+
14+
* configurable -> one component to be used in all product variants
15+
* transferable -> all files relevant for a component are in one place
16+
* tested -> the component is tested in all variants. All variants are guaranteed to work.
17+
* A.SPICE -> the component is compliant with the A.SPICE process

‎css/custom.css

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
.red {
2+
color: rgb(198, 6, 6);
3+
}
4+
5+
.yellow {
6+
color: rgb(198, 198, 0);
7+
}
8+
9+
.green {
10+
color: rgb(10, 98, 10);
11+
}
12+
13+
.blue {
14+
color: rgb(0, 0, 198);
15+
}
16+
17+
.strike {
18+
text-decoration: line-through;
19+
}
20+
21+
.underline {
22+
text-decoration: underline;
23+
}
24+
25+
.transparent {
26+
opacity: 0.01;
27+
}
28+
29+
.mono {
30+
font-family: monospace;
31+
background-color: gray;
32+
}
33+
34+
.reveal .adjust-section-structure {
35+
font-size: 0.5em;
36+
}
37+
38+
.reveal .flex-container {
39+
display: flex;
40+
}
41+
42+
.reveal .flex-container .half {
43+
flex: 1;
44+
width: 50%;
45+
}
46+
47+
.reveal h1,
48+
.reveal h2,
49+
.reveal h3 {
50+
text-transform: none;
51+
}
52+
53+
.reveal code * {
54+
font-family: monospace;
55+
}
56+
57+
.fragment.blur {
58+
filter: blur(5px);
59+
}
60+
61+
.fragment.blur.visible {
62+
filter: none;
63+
}

‎images/Slide1.PNG

775 KB
Loading

‎images/Slide2.PNG

708 KB
Loading

‎images/Slide3.PNG

710 KB
Loading

‎images/Slide4.PNG

572 KB
Loading

‎images/Slide5.PNG

539 KB
Loading

‎images/test_pyramid.png

51.7 KB
Loading

‎index.html

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<link rel="stylesheet" href="reveal.js/dist/reset.css">
1111
<link rel="stylesheet" href="reveal.js/dist/reveal.css">
1212
<link rel="stylesheet" href="reveal.js/dist/theme/black.css">
13+
<link rel="stylesheet" href="css/custom.css">
1314

1415
<!-- Theme used for syntax highlighted code -->
1516
<link rel="stylesheet" href="reveal.js/plugin/highlight/monokai.css">
@@ -27,6 +28,21 @@
2728
<section data-markdown="chapters/03_sple.md" data-separator="^\r?\n---\r?\n$"
2829
data-separator-vertical="^\r?\n--\r?\n$">
2930
</section>
31+
<section data-markdown="chapters/04_aspice.md" data-separator="^\r?\n---\r?\n$"
32+
data-separator-vertical="^\r?\n--\r?\n$">
33+
</section>
34+
<section data-markdown="chapters/05_solutions.md" data-separator="^\r?\n---\r?\n$"
35+
data-separator-vertical="^\r?\n--\r?\n$">
36+
</section>
37+
<section data-markdown="chapters/06_ci.md" data-separator="^\r?\n---\r?\n$"
38+
data-separator-vertical="^\r?\n--\r?\n$">
39+
</section>
40+
<section data-markdown="chapters/07_recap.md" data-separator="^\r?\n---\r?\n$"
41+
data-separator-vertical="^\r?\n--\r?\n$">
42+
</section>
43+
<section>
44+
Thank you for your attention! 👋
45+
</section>
3046
</div>
3147
</div>
3248

0 commit comments

Comments
 (0)
Please sign in to comment.