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 md5hash($path) | |
{ | |
$fullPath = Resolve-Path $path | |
$md5 = new-object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider | |
$file = [System.IO.File]::Open($fullPath,[System.IO.Filemode]::Open, [System.IO.FileAccess]::Read) | |
[System.BitConverter]::ToString($md5.ComputeHash($file)) | |
$file.Dispose() | |
} | |
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
### Keybase proof | |
I hereby claim: | |
* I am kventil on github. | |
* I am kventil (https://keybase.io/kventil) on keybase. | |
* I have a public key whose fingerprint is F28F 3835 32C9 5576 A41E 314E 3023 6564 05DF 4C41 | |
To claim this, I am signing this object: |
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/sh | |
# plottet alle im Verzeichnis gefunden csv-Dateien | |
for i in *.csv | |
do echo "set term png; | |
set output '${i%.*}.png'; | |
set datafile separator ','; | |
plot '$i' using 5" | gnuplot -persist | |
done |
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 <stdio.h> | |
#include <stdarg.h> | |
#include <math.h> | |
#include <stdlib.h> | |
#define MESSPUNKTE 320 | |
#define UMDREHUNGEN 10 | |
double radius = 0.012; // 12 mm | |
double pleul = 0.077; // 77 mm |
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
] setenv auto-boot true | |
] saveenv | |
] /exit |
NewerOlder