View dev-workflow
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 | |
start | |
:Create <i>Story Branch</i>; | |
note right | |
<i>feature/DM-101-story</i> | |
end note | |
:Create <i>Draft</i> Pull Request on <b>master</b>; | |
repeat | |
:Create <i>Feature Branch</i>; | |
note left |
View index.html
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
<html> | |
<head><title>Test</title> | |
</head> | |
<body> | |
<!-- SW "Hello World" Custom Element --> | |
<sw-hello-world></sw-hello-world> | |
<script src="https://gist.githack.com/davidenke/e51ebb3ba6e38dd2300924993afa7051/raw/b4f0c8c196879f93e2b29deb1c3213b97f543ee7/sw-hello-world.js"></script> | |
</body> | |
</html> |
View test
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
tessvdvsd |
View .block
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
height: 650 | |
license: mit |
View testproms.js
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
var Q = require('q'); | |
var myPromDemo = {} | |
myPromDemo.func1 = function() { | |
//Deferred holen | |
var deferred = Q.defer(); | |
console.log('Warte 10s'); | |
setTimeout(function(){ |
View test_frame_capture.c
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
#include<stdio.h> | |
#include<stddef.h> | |
#include<ueye.h> | |
HIDS hCam = 1; | |
void main() { | |
printf("Success-Code: %d\n",IS_SUCCESS); | |
//Kamera öffnen |
View proxy.php
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
<?php | |
/** | |
* @filename: proxy.php | |
* | |
* Proxy transparent cross-domain | |
* tranport cookie and headers | |
* @example | |
* http://frameinoves/proxy.php?url=http://frameinoves/ola.php" | |
* | |
* |
View update_dns_hosteurope.sh
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/sh | |
#aktualisiert DNS-Einträge bei HostEurope | |
#HostEurope-Zugangsdaten | |
KUNDENNR=xxx | |
PASSWORD=xxx | |
#Host-ID des eigentlichen Eintrages | |
HOSTID=xxx | |
#externe IP bestimmen und dann vergleichen |