This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title Inventory Data Flow | |
Kafka Topic -> Shippable-Inventory-Plugin: | |
note over Shippable-Inventory-Plugin: | |
Consumer calls bulk-write mutation. | |
This function is not defined in "Inventory" plugin | |
end note | |
Shippable-Inventory-Plugin -> Simple-Inventory-Plugin: updateSimpleInventoryBulk() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Prints a tower based on the height passed into the main function | |
// e.g height of 8 prints this: | |
// # # | |
// ## ## | |
// ### ### | |
// #### #### | |
// ##### ##### | |
// ###### ###### | |
// ####### ####### | |
// ######## ######## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Learning from https://rachelandrew.co.uk/ */ | |
/* config stuff */ | |
/* Coolors Exported Palette - coolors.co/694486-2b193d-dbdbdb-b0b5b3-040303 */ | |
/* RGB */ | |
footer { | |
padding: 10px; | |
background-color: #2b193d; | |
color: #fcf9f9; | |
font-size: 90%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
postgresql: | |
image: postgres | |
container_name: container_name | |
ports: | |
- "5432:5432" | |
environment: | |
- POSTGRES_USER=postgres_user |
OlderNewer