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
[ | |
"Alexa, quais são suas habilidades mais populares?", | |
"Alexa, quais são suas habilidades com jogos?", | |
"Alexa, quais são suas habilidades domésticas inteligentes?", | |
"Alexa, que coisas posso experimentar?", | |
"Alexa, jogar Akinator", | |
"Alexa, tocar BH FM", | |
"Alexa, abra frases desmotivacionais", | |
"Alexa, jogar Perguntados", | |
"Qual é a previsão para Sagitário", |
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
/* | |
https://support.4it.com.au/article/how-to-kill-a-windows-service-which-is-stuck-at-stopping | |
*/ | |
CMD (administrador) | |
sc queryex [SERVICENAME] | |
taskkill /f /pid [PID] | |
OU |
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
/* | |
--Object: Table-Valued Function [dbo].[fnSplitString] | |
--Script Date: 21/02/2019 16:06:34 | |
DECLARE @IDs VARCHAR(100) = '1,2,3,4' | |
SELECT * FROM [dbo].[fnSplitString](@IDs, ','); | |
*/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON |
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
catchError(err => { | |
const errorCode = err.code; | |
let errorMessage = this.VerifyErroCode(errorCode); | |
if (errorMessage == null) { | |
errorMessage = err.message; | |
} | |
console.log(errorMessage); | |
}) |
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
Google Calendar API: | |
http://www.google.com/calendar/event? | |
action=TEMPLATE | |
&text=BANDNAME @ VENUE | |
&dates=STARTDATE/ENDDATE | |
&location=VENUE | |
&details=FULL BAND LIST | |
&trp=false | |
&sprop=LINK TO LMS GIG PAGE |
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
--============Todas as tabelas que possuem a respectiva coluna============-- | |
DECLARE @ColumnName VARCHAR(20) = 'Column Name' | |
SELECT T.name AS Tabela, C.name AS Coluna | |
FROM sys.sysobjects AS T (NOLOCK) | |
INNER JOIN sys.all_columns AS C (NOLOCK) ON T.id = C.object_id AND T.XTYPE = 'U' | |
WHERE C.NAME LIKE '%' + @ColumnName + '%' | |
ORDER BY T.name ASC | |
--============Ocorrência da palavra em Procedures, Functions ou Views============-- |