Keybase proof
I hereby claim:
- I am schlomo on github.
- I am schlomo (https://keybase.io/schlomo) on keybase.
- I have a public key ASA9B4VcvlA8Bk1pvQvdH2iOwYXKcOLqKJBoOFvMYODqywo
To claim this, I am signing this object:
#!/bin/bash | |
# Written by Schlomo Schapiro, Licensed under CC0 | |
for b in sops gpg mkdir rm chmod cat date ; do | |
if ! type $b &>/dev/null ; then | |
echo -e "\n******** REQUIRED BINARY $b IS MISSING! ********\n" | |
exit 1 | |
fi | |
done |
I hereby claim:
To claim this, I am signing this object:
# This is a demo for the problem in https://github.com/pleiszenburg/wenv/issues/14 | |
# | |
# it builds yamlreader into an executable. First on Linux and then in wine. | |
# | |
# Building it in wine fails, I hope that this test case helps to extend wenv to support this sort of "cross building" | |
# to allow creating Windows executables from Python programs without actually running Windows, e.g. in a CI pipeline. | |
# | |
# Build like this: docker build . | |
# | |
# Optionally set the Pyhon version like this: docker build --build-arg PYTHONVERSION=3.8.1 . |
/node_modules | |
/.cache | |
/dist |
/node_modules | |
/.cache | |
/dist |
#!/bin/bash | |
# | |
# record from video grabber | |
VIDEO=${VIDEO:-/dev/video1} | |
AUDIO=${AUDIO:-hw:1} | |
AUDIO_RATE=48000 | |
VIDEO_IN="-f video4linux2 -video_size 720x576 -thread_queue_size 1024 -framerate 25 -i $VIDEO -vsync 1" | |
AUDIO_IN="-f alsa -sample_rate $AUDIO_RATE -channels 2 -thread_queue_size 2048 -itsoffset 0.3 -i $AUDIO" |
<html> | |
<body> | |
<p>hello world</p> | |
</body> | |
</html> | |
<!-- licensed under the MIT --> |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
annotations: | |
labels: | |
app: webdav | |
name: webdav | |
spec: | |
replicas: 1 | |
revisionHistoryLimit: 0 |
This is a demo to show how simple it is to create UI tests with SeleniumHQ based on Zalenium.
To try it out you need Python3 and virtualenv and Docker. Download/clone this repo and run run-tests.sh
.
Copyright 2017 Schlomo Schapiro / Zalando SE | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE O |