This file contains 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
.subnav-container { display: none !important; } | |
#ghx-header { padding-bottom: 0; } | |
.ghx-issue .ghx-card-footer .ghx-avatar { display:none; } | |
.ghx-card-footer .ghx-type { display:none; } | |
.ghx-issue .ghx-card-footer { | |
margin-top: 0; | |
position: relative; | |
} | |
.ghx-card-footer .ghx-flags { | |
position: absolute; |
This file contains 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
@startuml config-general | |
skinparam BackgroundColor FFFFFE | |
skinparam arrow { | |
Color Black | |
FontColor Black | |
} | |
skinparam package { | |
BackgroundColor #E0E0E0 |
This file contains 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
// ==UserScript== | |
// @name JIRA Remaining time in percent | |
// @namespace http://github.com/darignac | |
// @version 0.6 | |
// @description Shows the remaining time in percent. Does not work in filter views (does not get triggered). | |
// @author Alexander Herrmann | |
// @match https://jira.t-systems-mms.eu/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
#!/bin/bash | |
# USAGE for video.mp4 with video bitrates 100, 200 and 300 kbit/s and audio bitrate 64kbit/s | |
# ./stream.sh /path/to/video/video.mp4 rtmp://thepubpoint/live 100,200,300 64 "stream1?key&adbe-live-event=theevent;stream2?key&adbe-live-event=theevent;stream3?key&adbe-live-event=theevent;" | |
VIDEO_FILE=$1 | |
PUBLISHING_POINT=$2 | |
VIDEO_BITRATES=$3 | |
AUDIO_BITRATE=$4 | |
STREAM_INFO=$5 |
This file contains 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
#!/bin/bash | |
SEND_TO=$1 | |
UPDATES=`yum check-update -q | awk '{print $1}'` | |
UPDATE_COUNT=`printf "%s\n" "$UPDATES" | grep -v "^$" | wc -l` | |
UPDATE_TEXT=$(printf "%s\n" "${UPDATES}") | |
if [ "${UPDATE_COUNT}" -gt "0" ]; then | |
echo "${UPDATE_TEXT}" | mail -s "${UPDATE_COUNT} Yum-Updates are available" "${SEND_TO}" | |
fi |
This file contains 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
<toolSet name="External Tools"> | |
<tool name="flake8 File" showInMainMenu="true" showInEditor="true" showInProject="true" showInSearchPopup="true" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true"> | |
<exec> | |
<option name="COMMAND" value="/usr/bin/flake8" /> | |
<option name="PARAMETERS" value="--max-line-length=160 --ignore=E501,E128 --exclude=migrations $FileDir$/$FileName$" /> | |
<option name="WORKING_DIRECTORY" value="$FileDir$" /> | |
</exec> | |
<filter> | |
<option name="NAME" value="Flake8 Output Filter" /> | |
<option name="DESCRIPTION" /> |