Introduce complete slide deck covering: - problem statement and limitations of double, BigDecimal, and Currency - fundamentals of MonetaryAmount, CurrencyUnit, and Money - arithmetic operations, rounding, formatting, and parsing - advanced concepts: currency conversion, MonetaryOperator, MonetaryQuery, MonetaryContext - architecture and integration topics - hands-on exercises for all sections Add informational slide about JSR-354, its origins, and key contributors. Include exercise guidance, pause slide, and workshop wrap-up. Signed-off-by: Marcus Fihlon <marcus@fihlon.swiss>
35 lines
741 B
Markdown
35 lines
741 B
Markdown
# Folien für den Workshop
|
|
|
|
**Beyond BigDecimal: Money and Currency API in Java (JSR-354)**
|
|
|
|
## Folien bearbeiten
|
|
|
|
Die Folien werden in Markdown-Syntax in der Datei `slides.md` beschrieben. Enthaltene Grafiken und andere Dateien werden im Unterverzeichnis `public` abgelegt.
|
|
|
|
Eine umfangreiche Dokumentation von Slidev gibt es online: https://sli.dev/guide/
|
|
|
|
## Präsentation starten
|
|
|
|
Ganz einfach im Terminal:
|
|
|
|
```
|
|
pnpm slidev
|
|
```
|
|
|
|
Anschliessend einfach `o` tippen, um den Standard-Browser mit der URL http://localhost:3030/ zu öffnen.
|
|
|
|
## Folien exportieren
|
|
|
|
Slidev beherrscht den Export der Präsentation als PDF und PowerPoint.
|
|
|
|
### PDF
|
|
|
|
```
|
|
pnpm slidev export --format pdf
|
|
```
|
|
|
|
### PowerPoint
|
|
|
|
```
|
|
pnpm slidev export --format pptx
|
|
```
|