Skip to content

Instantly share code, notes, and snippets.

@joffotron
Last active August 25, 2016 04:31
Show Gist options
  • Save joffotron/1a4ae7720502afcaca5042ac89339eb1 to your computer and use it in GitHub Desktop.
Save joffotron/1a4ae7720502afcaca5042ac89339eb1 to your computer and use it in GitHub Desktop.
Elixir is cool
iex(13)> import SweetXml
SweetXml
iex(14)> {:ok, %{body: results}} = ExAws.SQS.list_queues |> ExAws.request
...
iex(15)> results |> xpath(~x"//QueueUrl/text()"l) |> Enum.each( &IO.puts(&1) )
https://sqs.ap-southeast-2.amazonaws.com/038451313208/buildkite-AgentLifecycleQueue-ZVCDD2CSCBZG
https://sqs.ap-southeast-2.amazonaws.com/038451313208/raisemail-dev
https://sqs.ap-southeast-2.amazonaws.com/038451313208/raisemail-dev-dlq
https://sqs.ap-southeast-2.amazonaws.com/038451313208/raisemail-production
https://sqs.ap-southeast-2.amazonaws.com/038451313208/raisemail-production-dlq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment