Skip to content

Instantly share code, notes, and snippets.

FROM circleci/python
USER root
RUN apt-get update -y && \
apt-get install wget -y && \
apt-get install postgresql-client -y
# Install aws cli + bump2version
RUN pip install awscli bump2version --upgrade --user

Keybase proof

I hereby claim:

  • I am venturamarcelo on github.
  • I am marceloventura (https://keybase.io/marceloventura) on keybase.
  • I have a public key ASAGDJfAG9AHHXxicXSqrjbnIeyVbTdmvDIf0scpqfVKBwo

To claim this, I am signing this object:

@venturamarcelo
venturamarcelo / zendesk_query.ps1
Last active August 6, 2018 22:09 — forked from TomerAdmon/zendesk_query.ps1
PowerShell script that query Zendesk using REST API to find all tickets that some users were involved in since a specific date.
$user_names = "My User", "Another User"
$search_since = "2017-03-01"
$global:zendesk_user_name = "username"
$global:zendesk_password = "password"
$global:zendesk_address = "zendesk_address"
function CreateAuthorizationHeader()
{
$pair = "$($zendesk_user_name):$($zendesk_password)"