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
#!/usr/bin/env bash | |
source easybashgui | |
export supertitle="Git Konfiguration" | |
# | |
##### | |
# | |
ok_message "Willkommen.\nDieser GUI soll beim ersten einrichten helfen.Für Verbesserungsvorschläge bitte ein Issue auf Github aufmachen.\nBitte gebe im folgenden reale Daten an da diese in den Commitmessages erscheinen.\nViel Erfolg!" | |
# | |
##### | |
# |
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
function initSheets(sps){ | |
var Emailsheet; | |
try{ | |
Emailsheet = sps.getSheetByName("emaillist"); | |
} catch(e){ | |
sps.insertSheet("emaillist") | |
Emailsheet = sps.getSheetByName("emaillist"); | |
Emailsheet.getRange("A1").setValue("[email protected]") | |
} | |
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
var refImg = new Firebase("https://YOURURL.firebaseio.com/images/" + $rootScope.authData.uid); | |
var ImgObj = $firebaseObject(refImg); | |
function saveimage(e1) { | |
var filename = e1.target.files[0]; | |
var fr = new FileReader(); | |
fr.onload = function (res) { | |
$scope.image = res.target.result; | |
ImgObj.image = res.target.result; |
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 numpy as np | |
import cv2 | |
#from matplotlib import pyplot as plt | |
cap = cv2.VideoCapture(0) | |
cap.set(cv2.CAP_PROP_FPS, 20) | |
# Define the codec and create VideoWriter object | |
#fourcc = cv2.cv.CV_FOURCC(*'DIVX') | |
###width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH) + 0.5) | |
###height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT) + 0.5) |
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
<!DOCTYPE html> | |
<html> | |
<header> | |
<meta charset="utf-8"/> | |
<title>Test if element is in viewport</title> | |
</header> | |
<body> | |
</body> |
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
<plugins> | |
<plugin> | |
<artifactId>maven-clean-plugin</artifactId> | |
<version>3.0.0</version> | |
<executions> | |
<execution> | |
<id>delete email stuff</id> | |
<phase>clean</phase> | |
<goals> | |
<goal>clean</goal> |
OlderNewer