Compare commits

..

No commits in common. "7db7ff543e63ca5616ef92cdc5befb4221f0cf4c" and "adf05361b9aa853d7c3c7f7390b5a3d1e31f1f3c" have entirely different histories.

4 changed files with 11 additions and 54 deletions

View File

@ -1,14 +1,14 @@
- String key value to map [[Code Snippet]] [[Java]]
- ``` java
private MultiValueMap<String, String> params(final String... params) {
if (params.length % 2 != 0) {
throw new IllegalArgumentException("The params need to be as key value pair");
}
final LinkedMultiValueMap<String, String> result = new LinkedMultiValueMap<>();
IntStream.range(0, params.length / 2)
.map(i -> i * 2)
.mapToObj(i -> new ImmutablePair<>(params[i], params[i + 1]))
.forEach(p -> result.add(p.getLeft(), p.getRight()));
return result;
}
private MultiValueMap<String, String> params(final String... params) {
if (params.length % 2 != 0) {
throw new IllegalArgumentException("The params need to be as key value pair");
}
final LinkedMultiValueMap<String, String> result = new LinkedMultiValueMap<>();
IntStream.range(0, params.length / 2)
.map(i -> i * 2)
.mapToObj(i -> new ImmutablePair<>(params[i], params[i + 1]))
.forEach(p -> result.add(p.getLeft(), p.getRight()));
return result;
}
```

View File

@ -1,28 +0,0 @@
- [[Person / Maria Proske]] BDO
id:: 64d9cb6c-8f88-4e47-8804-40595428408a
- Rolle: IT Projektleiterung in Corporate IT
- Integration der IT Landschaft
- Hintergrund:
- Aus Mecklenburg Vorpommern
- Hintergrund im Bankenumfeld
- Hat bei der Finanzinformatik gearbeitet
- Projekte
- Modern Digital Workplace (MDW)
- Teams Arbeitsräume
- Mondaycoffee (https://mondaycoffee.com/coffeenet365)
- Professionalisierung Prozessdokumentation
- Klassifikation nach Tragweite
- BDO Löschkonzept
- Digitalisierung von HR Prozessen
- https://www.sap.com/germany/products/hcm.html
- Vorprojekt von CRM System
- Integration von VICO
- Welche IT Assets gibt es
- Wer braucht welche Software
- Mobilgeräte
- Wer soll welches Gerät haben
- Bechtle als Dienstleister
- Inbetriebnahme immer im LAN von BDO Gebäude
- neue Geräte
- wer braucht wo sein Gerät
- TTS Performance Suite

View File

@ -1 +0,0 @@
- https://www.amazon.de/Magic-Cleaning-richtiges-Aufr%C3%A4umen-ver%C3%A4ndert/dp/3499624818 #TODO

View File

@ -1,14 +0,0 @@
- String key value to map [[Code Snippet]] [[Java]]
- ``` java
private MultiValueMap<String, String> params(final String... params) {
if (params.length % 2 != 0) {
throw new IllegalArgumentException("The params need to be as key value pair");
}
final LinkedMultiValueMap<String, String> result = new LinkedMultiValueMap<>();
IntStream.range(0, params.length / 2)
.map(i -> i * 2)
.mapToObj(i -> new ImmutablePair<>(params[i], params[i + 1]))
.forEach(p -> result.add(p.getLeft(), p.getRight()));
return result;
}
```