What is LOCALSTACK?
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
| function Invoke-URLInDefaultBrowser | |
| { | |
| <# | |
| .SYNOPSIS | |
| Cmdlet to open a URL in the User's default browser. | |
| .DESCRIPTION | |
| Cmdlet to open a URL in the User's default browser. | |
| .PARAMETER URL | |
| Specify the URL to be Opened. | |
| .EXAMPLE |
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
| #!/usr/bin/env python | |
| # Acredito que o crédito vai para o usuário deste tópico: | |
| # -> https://stackoverflow.com/questions/51645324/how-to-setup-a-aiohttp-https-server-and-client | |
| """ | |
| stuff for network security | |
| """ | |
| import socket | |
| import datetime |
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
| --- | |
| - name: 'Adiciona repositório do Docker' | |
| get_url: | |
| url: https://download.docker.com/linux/centos/docker-ce.repo | |
| dest: /etc/yum.repos.d/docker-ce.repo | |
| - name: 'Instala os pacotes do Docker e o pacote epel-release' | |
| yum: | |
| name: "{{ packages }}" | |
| state: latest |
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
| --Montando Tabelas de exemplo: | |
| DECLARE @TABLE_TAG TABLE (Id uniqueidentifier, Name varchar(50)); | |
| DECLARE @TABLE_UNION TABLE (ParentId uniqueidentifier, ChildId uniqueidentifier); | |
| INSERT INTO @TABLE_TAG (Id, Name) VALUES | |
| (NEWID(), 'Pai'), (NEWID(), 'FilhoA') , (NEWID(), 'FilhoB'), (NEWID(), 'NetoA'), (NEWID(), 'NetoB'), (NEWID(), 'NetoC'), (NEWID(), 'BisnetoA'); | |
| INSERT INTO @TABLE_UNION (ParentId, ChildId) VALUES | |
| ( (SELECT Id FROM @TABLE_TAG WHERE Name = 'Pai'), (SELECT Id FROM @TABLE_TAG WHERE Name = 'FilhoA') ), | |
| ( (SELECT Id FROM @TABLE_TAG WHERE Name = 'FilhoA'), (SELECT Id FROM @TABLE_TAG WHERE Name = 'NetoA') ), | |
| ( (SELECT Id FROM @TABLE_TAG WHERE Name = 'FilhoA'), (SELECT Id FROM @TABLE_TAG WHERE Name = 'NetoB') ), |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Net.Http; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Microsoft.BotBuilder | |
| { | |
| public static class QnAMaker | |
| { |