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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140

<img>

<\img>

public enum Platform {
 LINUX, //Daily driving NixOs, btw
 WINDOWS
}

public enum ProgrammingLanguage {
 JAVA,
 GOLANG,
 NIX, //Only as package manager

//Not really often and good, but with
 google (or DuckDuckGo) I can make something
 that runs

 SQL,
 HTML,
 CSS,
 POWERSHELL,
 PYTHON,
 JAVA_SCRIPT,
 TYPE_SCRIPT
}

public enum Software {
 NEO_VIM,
 GIT,
 DOCKER,
 CONTAINERD, //Using nerdctl
 MARIA_DB,
 JET_BRAINS,
 VS_CODE
}

public enum Media {
 GIT_HUB,
//github.com/Arne-Zillhardt

 LINKED_IN,
//linkedin.com/in/arne-zillhardt-0116ab264/

 LEET_CODE
//leetcode.com/Arne_Zillhardt
}

public enum Language {
 GERMAN = Proficiency.C2,
//Native

 ENGLISH = Proficiency.B2
//Fluent
}

public enum Traits {
 CURIOUS,
 PUNCTUAL,
 EXACT,
 POLITE,
 CAREFUL,
 EFFICENTLY_LAZY
}

public class Misc {
public Webview gameOfLife() {
  String description = "John Conways Game of life";
  Webview preview = """

  """;
 }

public Webview snake() {
  String description = "A simle javascript
   implementation of snake (WASD or arrow keys
   to move)"
;
  Webview preview = """
  """;
 }
}

public class Information {
 public String name = "Arne Zillhardt";
 public String title = "Programmer";
 public String email = "arne6y0939@duck.com";
 public int age = 20;
}

public class Education {
 public void apprenticeshipSoftwareDeveloper(){
  String location = "dbh Logistics IT AG";
  Date startDate = new Date("01.08.2023);
  Date endDate = new Date("currently");
 }

 public void apprenticeshipOptician() {
  String location = "Augenoptik Findeisen";
  Date startDate = new Date("01.08.2022");
  Date endDate = new Date("01.03.2023");
 }

 public void secondarySchool() {
  String schoolName = "Freies Gymnasium Borsdorf";
  Date startDate = new Date("01.06.2015");
  Date endDate = new Date("01.06.2022");
 }

 public void primarySchool() {
  String schoolName = "Grundschule Beucha";
  Date startDate = new Date("01.06.2011");
  Date endDate = new Date("01.06.2015");
 }
}

public class Project {
 public void raycaster() {
  String description = "I read the interesting book 'Game Engine Black Book: Wolfenstein 3D'
   and thought it would be a cool idea to implement an untextured raycaster with golang
   using ebiten"
; //Not finished, but a fun project

  Technology[] technologies = {
   Technology.Golang
  };

  Webview preview = """
   
  """
;
  String link = "https://github.com/Arne-Zillhardt/go-raycasting";
 }

 public void cazinomate() {
  String description = "In the second year of training we decided to write a casino application,
   because we thought it would be interesting to implement. It even got nominated for the
   Consultix IT price, but the concept didn't make the cut"
;

  Technology[] technologies = {
   Technology.Java,
   Technology.Angular,
   Technology.SpringBoot,
   Technology.Docker,
   Technology.Keycloak,
   Technology.Angular
  };

  Webview preview = """
   
  """
;
  String link = "https://github.com/budi6969420/cazinomat";
 }

 public void finalsProject() {
  String description = "I choose to write an automatic SonarQube issue fixer for my finals projects.
   The programm can be startet from the IDE as a gradle job, which than executes pre developed
   fixing routines for the choosen issues. Its a kind of framework, which can be extended and used
   by other developers. Do to legal limitations I can't provide any sourcecode"
;

  Technology[] technologies = {
   Technology.Java
  };

  Webview preview;
  String link = "Download my documentation //TODO: Add download";
 }

 public void roomSignsUpdateScript() {
  String description = "dbh uses electronic doorsigns, which ran with IronPython and where connected to the
   local active directory. To have more accurate information on the signs and a more maintainable codebase,
   I rewrote the complete implementation in PowerShell and connected it to Flexopus in the cloud.
   Do to legal limitations I can't provide any sourcecode"
;

  Technology[] technologies = {
   Technology.PowerShell,
   Technology.Python,
   Technology.MicrosoftGraph
  };

  Webview preview;
  String link;
 }
}