commit b98c66ceba9de08547823d32aead3ca06ae7d732 Author: panki27 Date: Mon Dec 11 12:30:49 2017 +0100 First commit, basic design, 2 pages diff --git a/README.md b/README.md new file mode 100644 index 0000000..4007d3b --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +"# pankisPage" diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..3b0d505 Binary files /dev/null and b/favicon.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..6c1b9d3 --- /dev/null +++ b/index.html @@ -0,0 +1,67 @@ + + + + + + + + + + + + + Felix Pankratz + + +
+
+

Felix Pankratz

+
+ + sexy AF +
+

Overview

+

Welcome to my homepage. I'm a system administrator/software developer in training, living in Germany. + I graduated highschool in 2015, at the Markgrälfer Gymnasium Müllheim. My skills include knowledge of JavaScript, Delphi, and a bit of webdev. In my spare time I enjoy making hardware projects with Arduino-like devices, aswell as tinkering around with this very server. +

+
+ +
+ +
+ + + + + + + + + \ No newline at end of file diff --git a/portrait.png b/portrait.png new file mode 100644 index 0000000..313f777 Binary files /dev/null and b/portrait.png differ diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..c34f168 --- /dev/null +++ b/projects.html @@ -0,0 +1,72 @@ + + + + + + + + + + + + + Projects - Felix Pankratz + + +
+
+

Felix Pankratz

+
+ +

Projects

+
+

Here you can find some links to projects I've been working on. Most are work in progress!

+ +
+

certAlert

+

Python script to send PUSH notifications (via FCM) when a website changes.

+ +

clockSualizer

+

(Ab)Using a MIDI clock signal as a way to determine the beat of a song with an Arduino. Drives WS2812b digital LED strips in sync with whatever music is playing in your DJ software.

+ +

crypttool

+

Commandline tool to do various simple cryptographic caluclations and operations, aswell as cracking simple XOR ciphers.

+ +

Popcorn

+

A JavaFX project from university. Queries TheMovieDatabase for information on movies. Also provides links to streams and shows trailers. Lots of ideas stolen from PopcornTime.

+ +

pwnSpark

+

Use a tiny Digispark as a Keyboard to pwn your enemies!

+ +

Qonverter

+

One of the three winning entrys of the Freiburg Hackathon 2017. Android App which converts the energy contents of more or less 'unusual' energy carriers.

+
+
+
+ + + + + + + + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..9227a2c --- /dev/null +++ b/style.css @@ -0,0 +1,81 @@ +:root { +--hintergrund: #0A4E72; /* Main Primary color */ +--linkfarbe: #388EBD; +--akzentfarbe: #136D9E; +--dunkel: #03344E; +--schwarz: #010F16; +} + +div.headline { + width: 300px; + padding: 10px; + margin: 10px; + border: 2px solid var(--akzentfarbe); + border-radius: 15px; + -moz-border-radius: 15px; + background-color: var(--schwarz); +} + +div.bio { + max-width: 750px; + margin: 20px; + /*width: 500px;*/ +} + +.navbar-nav { + float:none; + margin:0 auto; + display: block; + text-align: center; +} + +.navbar-nav > li { + display: inline-block; + float:none; +} + +div.linktable { + +} +div.linktable > a { + text-decoration: underline; +} + +div.linklist { + +} +div.linklist > a { + text-decoration: underline; +} + +div.footer { + position: absolute; + bottom: 0; + width: 100%; + height: 60px; + position: center; +} + + +body { + position: relative; + background-color: var(--schwarz); + text-align: center; + padding-bottom: 60px; +} +h1 { + color: var(--akzentfarbe); +} +h2 { + color: var(--akzentfarbe); +} +h3 { + color: var(--akzentfarbe); + font-size: large; +} +p { + color: var(--akzentfarbe); +} +a { + color: var(--linkfarbe); +} \ No newline at end of file