6 Lessons I learned while implementing technical RFCs as a decision making 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
| package main | |
| import "context" | |
| type Repository interface { | |
| Func1() error | |
| Func2() error | |
| } | |
| type Repo struct{} |
We must explain the problem clearly and identify additional details that the team needs to know. We must here describe the context, what we did so far, and the current state.
The description also serves as a trail that we can go back to in the future to understand the reasoning we had at the time and see what restrictions and requirements have changed.
Devemos explicar o problema claramente e identificar detalhes adicionais que a equipe precise saber. Devemos aqui descrever o contexto, o que foi feito até agora e o estado atual.
A descrição também serve como uma trilha à qual podemos voltar no futuro para entender o raciocínio que tínhamos na época e ver quais restrições e requisitos mudaram.
- Conhecimento prático em HTML5 e CSS3 Responsivo
- Conhecimento avançado de JavaScript
- Desenvolvimento cross-plataforma e testes cross-browser
- Confortável trabalhando com o controle de versão (Git)
- Capacidade de trabalhar de forma independente com uma supervisão mínima
- What is the Difference between API Observability and API Monitoring
- API Observability: A framework for managing your applications in an API world
- Intro to API Observability
- The RED method: A new strategy for monitoring microservices
- Usando Prometheus para coletar métricas de aplicações Golang
- Collector
- OpenTelemetry Demo Documentation
- [MELT 101](https://newrelic.com/sites/default/files/2022-03/melt-101-four-essential-telemetry-data-types.pd
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
| <?php | |
| namespace Admin\Controller; | |
| use Zend\View\Model\ViewModel; | |
| use Core\Controller\ActionController; | |
| use Admin\Model\User; | |
| use Admin\Form\User as UserForm; | |
| use Doctrine\ORM\EntityManager; |
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
| ├── README.md | |
| ├── go.mod | |
| ├── go.sum | |
| ├── cmd | |
| │ ├── api | |
| │ │ └── main.go | |
| │ └── appctl | |
| │ └── main.go | |
| ├── config | |
| │ ├── config.go |
NewerOlder