Skip to content

Instantly share code, notes, and snippets.

View TheRamsay's full-sized avatar
✌️

Dominik Huml TheRamsay

✌️
View GitHub Profile
@TheRamsay
TheRamsay / test.py
Last active October 22, 2024 22:19
IZP first project tester
#!/usr/bin/python3
#
# Testy pro 1. IZP projekt [2024]
# Autor: theramsay
# Inspirace https://github.com/JosefKuchar/izp-projekt-1/blob/main/test.py
# Priklady pouziti:
# python3 ./test.py t9search
# python3 ./test.py t9search --bonus 2
#
# Verze: 1.1 - Přidány testy od @toaster pro edge case na max délku řádku
@TheRamsay
TheRamsay / test.py
Last active December 3, 2022 23:24
IZP second project tester
#!/usr/bin/python3
#
# Testy pro 2. IZP projekt [2022]
# Autor: - Ramsay#2303
# Zdroj testu: https://github.com/harmim/vut-izp-proj3/tree/master/tests
# Priklady pouziti:
# python3 ./test.py cluster --valgrind
import argparse
@TheRamsay
TheRamsay / ids.sql
Last active March 19, 2024 10:14
Ids konzultace
create table TypProgramu
(
popisTypu nvarchar2(255) primary key,
constraint popisTypu_check check(popisTypu in ('bakalářské studium', 'magisterské studium', 'doktorské studium'))
);
create table Osoba
(
cisloOsoby int primary key,
jmeno nvarchar2(255) not null,