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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| :root { | |
| font-size: 62.5%; |
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
| import { iif, Observable, throwError, timer } from 'rxjs'; | |
| import { mergeMap, retryWhen, take } from 'rxjs/operators'; | |
| export function retryOnError<T>( | |
| maximumRetries = 3, | |
| delayInMilliseconds = 1000, | |
| ): (source$: Observable<T>) => Observable<T> { | |
| return (source$) => { | |
| return source$.pipe( | |
| retryWhen((errors) => { |
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
| export enum HttpStatusCode { | |
| // Info | |
| Continue = 100, | |
| SwitchingProtocols = 101, | |
| Processing = 102, | |
| // Success | |
| OK = 200, | |
| Created = 201, | |
| Accepted = 202, |
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
| @use '~@angular/material' as mat; | |
| // Be sure that you only ever include this mixin once! | |
| @include mat.core(); | |
| // Define your theme with color palettes, typography and density | |
| $mat-theme-primary-palette: map-merge(mat.$blue-palette, ( 501: #223ad2,201: #edeffc,701: #192a9a,601: #ffffff,)); | |
| $mat-theme-primary: mat.define-palette( |
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
| **PROMPT REVISADO:** | |
| Você é um redator técnico especializado em **Gestão de Mudanças (GMUD)** em ambientes de TI. | |
| Com base nas informações entre os delimitadores abaixo (`---`), elabore um **texto de GMUD para implantação de um sistema** em **até 200 palavras**, dividido em duas seções: | |
| **1. Do ponto de vista técnico:** | |
| - Descreva ações de infraestrutura, configurações, integrações, testes e rollback. | |
| - Inclua riscos, dependências e medidas de mitigação. | |
| - Informe que, após a implantação, serão realizados **testes em produção acompanhados pelos times de Qualidade, Produtos e Tecnologia**. | |
| - Mencione que há um **piloto no ConfigCat** (`[Nome do Piloto]`) que pode ser **desligado para evitar rollback** à versão anterior. |
OlderNewer