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
#!/bin/bash | |
for i | |
do | |
NAME=${i##*/} | |
PFAD=${i/$NAME/} | |
echo "$(date -r "$(stat -f %B "$i")" "+%y-%m-%d %H-%M-%S")" | |
mv "$i" "$PFAD"/"$(date -r "$(stat -f %B "$i")" "+%y-%m-%d %H-%M-%S")".${i##*.} |
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
#include <Servo.h> | |
Servo myservo; | |
const int servoPin = 9; | |
const int buttonPin = 12; | |
const int ledPin = 13; | |
void setup() { | |
myservo.attach(servoPin); |
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
#!/bin/bash | |
# | |
# ffmpeg-progress-dialog.sh | |
# by Timm Thaler | |
# | |
# based on the ffmpeg-progress.sh from https://gist.github.com/pruperting/397509 | |
# licensed under the GNU GENERAL PUBLIC LICENSE Version 3 | |
# | |
# Dependencies / needed software | |
# ffmpeg (of course) |