- Be mindful of your phone and watch, especially in crowded areas and when taking photos.
- Use plenty of sunscreen — the sun is strong all year round.
- Wear flip-flops; avoid tennis shoes, as sand and heat make them uncomfortable.
- Use Uber whenever possible. If you can’t find one, taxis (yellow cars) work very well.
- Carry some cash, or ask “Aceita cartão de crédito?” — most taxis have card machines.
- The metro is usable, but it’s not always very intuitive or well organized for tourists.
This file contains hidden or 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
| APPLICATION CustomerRegistrationApp | |
| ENTITY Customer | |
| FIELD CustomerID TYPE NUMERIC(10) KEY | |
| FIELD Name TYPE ALPHANUMERIC(50) REQUIRED | |
| FIELD BirthDate TYPE DATE REQUIRED | |
| FIELD Email TYPE ALPHANUMERIC(100) | |
| FIELD Age TYPE NUMERIC(3) | |
| FIELD Status TYPE ALPHANUMERIC(1) DEFAULT "A" | |
| END_ENTITY |
You might have some APIs that, for some reason, don't have their OAS/Swagger file. Well, this post will show how you could save yourself in scenarios like that.
You can download Optic from here: https://useoptic.com. What I will show here is pretty much a recipe to fully understand how to use that tool.
This file contains hidden or 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
| #!/bin/bash | |
| clear | |
| echo stopping docker | |
| docker stop $(docker ps -aq) | |
| echo removing all contianers | |
| docker rm $(docker ps -aq) |
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
helm install my-release ingress-nginx/ingress-nginx
kubectl --namespace default get services -o wide -w my-release-ingress-nginx-controller
$ yarn add @docusaurus/mdx-loader
$ yarn add swagger-ui-react
This file contains hidden or 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
| openapi: 3.0.2 | |
| info: | |
| title: Jornada_Micro_Servicos | |
| version: 1.0.0 | |
| description: API de Exemplo do Livro | |
| paths: | |
| /funcionarios: | |
| summary: Path used to manage the list of funcionarios. | |
| description: >- | |
| The REST endpoint/path used to list and create zero or more `funcionario` entities. This path |
Passo 1
Na pasta descompactada do curso:
mapperidea/curso/helloworld
Entrar na pasta onde tem o mapa mental (arquivo mdm):
curso/helloworld/mapper/mdm
This file contains hidden or 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
| openapi: 3.0.2 | |
| info: | |
| title: OperacoesBancarias | |
| version: 1.0.0 | |
| description: API de Pagamento | |
| paths: | |
| /clientes: | |
| summary: Path used to manage the list of clientes. | |
| description: >- | |
| The REST endpoint/path used to list and create zero or more `Clientes` entities. This path |
NewerOlder