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
{ | |
"Ansi 7 Color (Light)":{ | |
"Red Component":0.62745100259780884, | |
"Color Space":"sRGB", | |
"Blue Component":0.62745100259780884, | |
"Alpha Component":1, | |
"Green Component":0.62745100259780884 | |
}, | |
"Ansi 15 Color (Light)":{ | |
"Red Component":1, |
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
Um dispositivo SIP tem permissão para 25 tentativas (por padrão) de autenticação bem-sucedida, após o que será colocado na lista negra. | |
VERDADEIRO | |
Analise a mensagem INVITE mostrada abaixo e defina se a afirmação abaixo está correta: | |
INVITE sip:[email protected]:5060 SIP/2.0 | |
Via: SIP/2.0/UDP 192.168.9.148:5060;branch=z9hG4bK-524287-1---3340d61e1f45cd74;rport | |
Max-Forwards: 70 | |
Contact: <sip:192.168.9.148:5060> | |
To: <sip:[email protected]:5060> |
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
Para que uma extensão faça login especificamente na Fila 800, o usuário pode discar *62*800 de um telefone IP | |
VERDADEIRO | |
SIP Forking é um termo usado quando mais de um dispositivo/endpoint SIP se registra no mesmo número de ramal. | |
VERDADEIRO | |
Cada telefone IP pode ser configurado para ter um toque diferente. | |
VERDADEIRO | |
Com a estratégia de pesquisa "Prioritized Hunt" em uma fila, se o primeiro agente disponível não atender dentro do "Ring Time", a fila pesquisará o próximo agente disponível. |
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
require 'rubygems' | |
require 'xcodeproj' | |
require 'fileutils' | |
project_path = ARGV[0] | |
base_target_name = ARGV[1] | |
name = ARGV[2] | |
if project_path.nil? || base_target_name.nil? || name.nil? | |
puts "Usage: ruby duplicate-ios-target.rb <project_path> <base_target_name> <duplicate_target_name>" |
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
// demo https://codesandbox.io/s/divine-sunset-tppu7o | |
import axios from "axios"; | |
import { useCallback, useEffect, useState, useMemo } from "react"; | |
import "./styles.css"; | |
/** | |
* useCallback(fn,[deps]) | memoriza a função | |
* useMemo(() => fn, [deps]) | executa a função e memoriza o retorno | |
*/ |
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
// demo https://codesandbox.io/s/divine-sunset-tppu7o | |
import { useCallback, useEffect, useState } from "react"; | |
import "./styles.css"; | |
const Button = ({ onClick }: { onClick: () => void }) => { | |
useEffect(() => { | |
console.log("FILHO: mudou"); | |
}); |