- Download docker-compose.yml to dir named
sentry - Change
SENTRY_SECRET_KEYto random 32 char string - Run
docker-compose up -d - Run
docker-compose exec sentry sentry upgradeto setup database and create admin user - (Optional) Run
docker-compose exec sentry pip install sentry-slackif you want slack plugin, it can be done later - Run
docker-compose restart sentry - Sentry is now running on public port
9000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cv2 | |
| import numpy as np | |
| # definitions | |
| video_source = 0 | |
| video_full = 1 | |
| video_message_limit = 60 | |
| camera_width = 720 | |
| camera_height = 480 | |
| camera_fps = 1 |
$ uname -r
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <spocosy version="1.0"><subscription-update subscriptionid="8" requestid="9902555" last_push="2017-10-18 18:55:59" current_push="2017-10-18 18:56:02" exec="0.003"><lineup id="11070849" event_participantsFK="8722244" participantFK="662831" lineup_typeFK="5" shirt_number="0" pos="0" enet_pos="18" n="0" ut="2017-10-18 18:56:01" del="no"/></subscription-update></spocosy> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import codecs | |
| import ssl | |
| import sys | |
| import urllib.request | |
| import xml.etree.ElementTree as Tree | |
| from collections import namedtuple | |
| _DEFAULT_TEST_URL = 'https://anspedite-3.atlassian.net' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import xml.etree.ElementTree as Tree | |
| import urllib2 | |
| import ssl | |
| import json | |
| from collections import namedtuple | |
| #_DEFAULT_TEST_URL = 'https://anspedite-3.atlassian.net' | |
| _DEFAULT_TEST_URL = 'http://pc1:2990/jira' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // php composer require ivkos/pushbullet | |
| $pb = new \Pushbullet\Pushbullet('ACCESS_KEY_HERE'); // can be founded here https://www.pushbullet.com/account | |
| $pb->allDevices()->pushNote("Hello world!", "Lorem ipsum..."); |