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
# This script will listen to a given topic at the localstack and print the messages in 20 seconds | |
import sys | |
import boto3 | |
region = 'us-west-2' | |
queue_name = 'listening-queue' | |
queue_arn = f'arn:aws:sqs:{region}:000000000000:{queue_name}' | |
queue_url = f'http://localhost:4566/000000000000/{queue_name}' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
package main | |
import "fmt" | |
func main() { | |
fmt.Println("Uhul GO!") | |
} |
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 | |
# | |
# Original author: Corey Goldberg, Dec 2012 | |
# Updated by: Mauricio Lima, Jun 2013 | |
# Improvements detecting differente styles of junit report (Jasmine report) | |
import os | |
import sys | |
import xml.etree.ElementTree as ET |