Skip to content

Instantly share code, notes, and snippets.

View bigcoster's full-sized avatar

Oleksandr Halkin bigcoster

View GitHub Profile
@bigcoster
bigcoster / msmq.py
Created April 2, 2019 22:19
Example use of MSMQ
import win32com.client
import os
from pprint import pprint
# constants
MQ_RECEIVE_ACCESS = 1
MQ_SEND_ACCESS = 2
MQ_PEEK_ACCESS = 32
MQ_DENY_NONE = 0
@bigcoster
bigcoster / .gitlab-ci.yml
Last active December 11, 2018 22:09
Push releases to Sentry via Gitlab CI
image: cosmintitei/bash-curl
stages:
- senrty_push_release
job:
stage: senrty_push_release
script:
- chmod +x sentry_push_release.sh
- bash sentry_push_release.sh
only: