I hereby claim:
- I am cleydson on github.
- I am cleydson (https://keybase.io/cleydson) on keybase.
- I have a public key ASA5kscEH3c0Hv-bhNwdAjc_nim_f3W9iUorn2FJehMrhQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| for z in $(aws route53 list-hosted-zones|jq '.[] | .[] | .Id' | sed 's!/hostedzone/!!' | sed 's/"//g'); do | |
| echo $z; | |
| aws route53 list-resource-record-sets --hosted-zone-id $z >> recordsFile; | |
| done |
| /* | |
| Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. | |
| This file is licensed under the Apache License, Version 2.0 (the "License"). | |
| You may not use this file except in compliance with the License. A copy of | |
| the License is located at | |
| http://aws.amazon.com/apache2.0/ | |
| This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR |
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Mandatory=$true)] | |
| [string[]]$EIPs | |
| ) | |
| try { | |
| $ErrorActionPreference = "Stop" | |
| Start-Transcript -Path c:\cfn\log\Set-EIP.ps1.txt -Append |
| using MongoDB.Bson; | |
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Linq; | |
| using System; | |
| using System.Collections.Generic; | |
| namespace Your.Namespace | |
| { | |
| public class ObjectIdConverter : JsonConverter | |
| { |
| ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; |
| * { background-color: rgba(255,0,0,.2); } | |
| * * { background-color: rgba(0,255,0,.2); } | |
| * * * { background-color: rgba(0,0,255,.2); } | |
| * * * * { background-color: rgba(255,0,255,.2); } | |
| * * * * * { background-color: rgba(0,255,255,.2); } | |
| * * * * * * { background-color: rgba(255,255,0,.2); } |
| defaults write com.apple.finder AppleShowAllFiles TRUE | |
| killall Finder |
| Public Function ImportaXLS(ByVal arquivoXLS As String) As Boolean | |
| '------------------------------------------------------ | |
| '-Função lê arquivo do excel e depois grava na tabela-- | |
| '------------------------------------------------------ | |
| Dim dsDados As DataSet | |
| Dim daAdaptador As System.Data.OleDb.OleDbDataAdapter | |
| Dim sql As String | |
| Dim conexao As String | |
| Dim conn As OleDb.OleDbConnection | |
| Dim tabela As String |
| Protected Function RetornaValor(ByVal valor As Object, Optional ByVal retornoPadrao As String = "") As String | |
| If IsDBNull(valor) Then | |
| Return retornoPadrao | |
| Else | |
| Return valor | |
| End If | |
| End Function | |
| 'ou |