Skip to content

Instantly share code, notes, and snippets.

View mauriciosl's full-sized avatar

Mauricio Souza Lima mauriciosl

View GitHub Profile
# 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}'
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
package main
import "fmt"
func main() {
fmt.Println("Uhul GO!")
}
#!/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