Skip to content

Instantly share code, notes, and snippets.

View arjones's full-sized avatar

Gustavo Arjones arjones

View GitHub Profile
@arjones
arjones / notify-slack.sh
Last active September 9, 2023 22:20
Notify Slack - Send notifications to a Slack Channel - http://arjon.es/2016/09/15/be-notified-on-slack-when-a-long-process-finishes/
# Notify Slack - Send notifications to a Slack Channel
# Copyright (C) 2016 Gustavo Arjones (@arjones)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# Full blog post here: http://arjon.es/2016/09/15/be-notified-on-slack-when-a-long-process-finishes/
#
@arjones
arjones / docker-install.sh
Last active May 29, 2017 23:03
Script to install docker + docker-compose
#!/usr/bin/env bash
# This script install DOCKER CE
DOCKER_VERSION=17.03.1~ce-0~ubuntu-$(lsb_release -cs)
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
linux-image-extra-$(uname -r) \
linux-image-extra-virtual \
apt-transport-https \

Keybase proof

I hereby claim:

  • I am arjones on github.
  • I am arjones (https://keybase.io/arjones) on keybase.
  • I have a public key ASBDHWoyLH_i3BwGhA70T1QaKde0-8k1eIhJmqYK1MC4Ago

To claim this, I am signing this object:

@arjones
arjones / .gitignore
Created November 17, 2021 17:39
git ignore for Python
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python