-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (73 loc) · 2.74 KB
/
index.html
File metadata and controls
79 lines (73 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<title>Traxar's Homepage</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<h1>My Projects</h1>
<p>A website created by <b>Lorenz Auer (Traxar)</b>.</p>
</div>
<div class="navbar">
<a href="#" class="active">Home</a>
<a href="#WinForms">WinForms</a>
<a href="#Kelly">Kelly Criterion</a>
<a href="#CircuitCracker">Circuit Cracker</a>
</div>
<div class="row" >
<div class="side">
<br>
<h2>About Me</h2>
<h5>Photo of me:</h5>
<img src="images/profile.jpg" style="width:50%;max-width:320px;">
<p>I am currently a university math student at JKU.</p>
<h3>Contact:</h3>
<p>Discord: Traxar#7201</p>
</div>
<div class="main">
<section class="flex" id="Kelly">
<br>
<a href="KellyFinder/Kelly.html">
<h2 id="link">Kelly Criterion generalized</h2>
</a>
<h5>my bachelor thesis, 25. Apr, 2022</h5>
<a href="KellyFinder/Kelly.html">
<img src="images/KellyCriterion.png" style="width:100%;max-width:640px;">
</a>
<p>Scientific paper about optimizing placing bets.</p>
<p>In the paper I go into detail about how to optimize the long term
returns of different kinds of bets. Selfwritten software for calculations & simulations is also provided.</p>
</section>
<section class="flex" id="WinForms">
<br>
<a href="WinFormsSample/WindowsFormsSample.zip">
<h2 id="link">WinForms</h2>
</a>
<h5>sample project, 28. Aug, 2021</h5>
<a href="WinFormsSample/WindowsFormsSample.zip">
<img src="images/WinForms.png" style="width:100%;max-width:640px;">
</a>
<p>C# sample project with examples about multithreading and charting</p>
</section>
<section class="flex" id="CircuitCracker">
<br>
<a href="https://felix-schmid.github.io/CircuitCracker">
<h2 id="link">Circuit Cracker</h2>
</a>
<h5>selfmade puzzle game, 4. Aug , 2021</h5>
<a href="https://felix-schmid.github.io/CircuitCracker">
<img src="images/CircuitCracker.png" style="width:100%;max-width:640px;">
</a>
<p> Circuit Cracker is a 2D puzzle game full of unique mechanics and brain teasers. There are pistons, lasers, conveyor belts, teleporters and a lot of logical circuits. The controls are simple and easy to get a hang of, so you will find yourself playing tricky levels in no time.</p>
<p>Currently the game is completely free to play and features more than 80 levels for you to twist your head around.</p>
</section>
</div>
</div>
<div class="footer">
<p>Copyright 2021-, All Rights Reserved</p>
</div>
</body>
</html>