Skip to main content

Posts

2020


[German] Jugend hackt Community Talk: Informatikstudium

I’ve participated in many Jugend hackt events, and later helped others as a mentor. The talks of my projects were given with way too less sleep to link them here. However, during the CCC congress 2020 Elisabeth, Jana, Malte and I gave a talk in German about studying computer science, geared towards high school students deciding what to do after school. If that fits your situation, this talk may still be relevant.

Fuzzing Schutzmaßnahmen

Dieser Blogeintrag ist eine Seminararbeit, die ich im Sommersemester 2020 im Rahmen des Seminars Schwachstellensuche am KIT geschrieben habe. Ich habe das LaTeX einmal durch pandoc gejagt, sodass ich es hier auf meinen Blog schmeißen kann. Möglicherweise leidet die Formatierung darunter. Das Seminar selbst war wie einen Konferenz gestaltet, inklusive Peer-Reviews von anderen Teilnehmern des Seminars mit HotCRP. Dabei habe ich über das Inhaltliche hinaus noch viel über den Prozess des Peer-Review gelernt.

Rollenbasierter Modellierung für das Domain-driven Design

Dieser Blogpost ist meine Proseminararbeit mit dem Titel „Nutzbarkeit von Rollenbasierter Modellierung im Domain-driven Design“ aus dem Sommersemester 2020. Während das KIT noch einiges an der Vergabe der Proseminare verbessern sollte, habe ich im Nachhinein viel über wissenschaftliches Schreiben und Software-Entwurf gelernt. (Trotz kompliziertem und intransparentem Vergabesystem ist es letztendlich gefühlter Zufall, ob und welches Thema man bekommt.) Es gab ein Peer-Review durch zwei andere Teilnehmende des Seminars, allerdings lagen die Themengebiete sehr weit auseinander.

Übungsblattabgabeskript

In Numerik (Sommersemester 2020) sind digitale Abgaben erlaubt. Um nicht viel Zeit mit scannen, komprimieren, Deckblatt etc. zu verbringen, habe ich dieses kleine Skript geschrieben, dass die Software noteshrink benutzt, um aus Handyphotos eine fertige Abgabe zu erstellen. Aus dem gleichen Grund ist dieses Skript nicht sehr durchdacht, hat aber für mich sehr gut funktioniert. #!/bin/bash # format: $1=number of assignment $2=files to be included # warning this script is not save by any means and will potentially overwrite existing # pdfs and remove pngs based on filename pattern set -e # fail on error echo $2 python3 .

Sicherheit am KIT

Für die Vigenère-Chiffre sind mir spontan diese Einzeiler eingefallen, es gibt sicherlich schöneren Pythoncode, aber zum schnellen ausprobieren in der Python-Shell sind die Funktionen ganz praktisch. In der Vorlesung und der Übung besteht der Unterschied von 1 in der Definition. def encrypt(k, m): return ''.join([chr(((ord(k[i % len(k)]) + ord(x) + 1) % 26) + ord('A')) for i, x in enumerate(m)]) def decrypt(k, c): return ''.join([chr(((ord(x) - ord(k[i % len(k)]) - 1) % 26) + ord('A')) for i, x in enumerate(c)]) Themenübersicht

Machine Learning for Computer Security at KIT

Overview #Topics from the lecture. I use mind maps like this before exam preparation to look see what I can remember from during the semester. During learning, I expand on the topics. Later I use color coding of the nodes to visualize what topics I know well and what still need practice. I also made an Anki deck. But sadly the deck contains screenshots of slides that are not licenced under a free licence.

KIT Opencast Podcast Feed

I created a flask server to create podcast feeds for KIT Opencast on demand. Even though the opencast software has a feature for RSS-Feeds the KIT has not activated this feature. Therefor you can run the flask server to provide a podcast feeds for you. Feel free to host this. I don’t want to commit to hosting it permanently. I provide this software for free use under MIT license. Note that this license of course does not apply to the obtained content.

useful command line tools for uni

This blog post is a collection of useful (linux) tools for PDFs, like slides or problem sheets at university. For every use case I give one example that should make the usage clear. Make sure to have the tools installed. Concatenate two or more PDFs: gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH 1.pdf 2.pdf 3.pdf n.pdf Concatenate all PDFs in one folder. gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=combine.pdf -dBATCH *.pdf > /dev/null JPEGs to pdf.

Wahrscheinlichkeitstheorie und Statistik am KIT

Wahrscheinlichkeitstheorie und Statistik wird typischerweise im 3. Semester des Informatikstudiums am KIT gehört. Zur Klausur bei uns waren quasi alle Hilfsmittel zugelassen, ausgenommen vernetzbare Taschenrechner und Altklausur-/Übungsblattlösungen. Es ist daher sinnvoll sich eingehend mit Taschenrechner und Skript zu beschäftigen. Ein Taschenrechner mit vielen Funktionen ist durchaus ein Vorteil. Wie für jede Vorlesung habe ich auch hier wieder Anki Karten erstellt. Da die Folien der enthaltenen Folienscreenshots unter CC-BY-Lizenz stehen, kann ich diese hier teilen.

My favorite Anki addons

A list of anki plugins I like. This list is in no particular order. I use anki primarily for my studies of computer science. For more detail check the official pages of the plugins @ AnkiWeb. DrawingPad: Simple drawing tool made by a good friend of mine. Useful for highlighting stuff in pictures, e.g. screenshot of lecture slides. Note that you have to select an image before editing it. (Code: 370778248) Syntax Highlighting for Code: Pretty code snippets in anki.