-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (153 loc) · 3.7 KB
/
index.html
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<title>Thomas Renström</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 10px;
background-color: #f5f5f5;
color: #333333;
}
h1 {
font-size: 48px;
margin: 40px 0;
text-align: center;
color: #0066cc;
}
h2 {
font-size: 36px;
margin: 30px 0 20px;
color: #666666;
}
h3 {
font-size: 24px;
margin: 20px 0;
padding: 0 10px;
color: #333333;
}
h4 {
font-size: 20px;
margin: 20px 0;
padding: 0 16px;
color: #333333;
}
p,
ul {
font-size: 18px;
line-height: 1.5;
margin: 10px 0;
padding: 0 24px;
color: #666666;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
li {
margin: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
img {
display: block;
width: 100px;
height: 100px;
margin-bottom: 10px;
border-radius: 50%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.1);
}
.contact-link-label {
font-size: 16px;
color: #333333;
text-transform: uppercase;
letter-spacing: 1px;
margin-top: 5px;
transition: color 0.3s ease;
}
.contact-link-label:hover {
color: #0066cc;
}
</style>
</head>
<body>
<header>
<h1>Thomas Renström</h1>
</header>
<main>
<section>
<h3>About Me</h3>
<p>I am a 38 year old mathematician with a specialization in numerical analysis.
In my spare time I make things, for examples clothes and jewelry.
I also enjoy playing games with friends and cooking.</p>
</section>
<section>
<h3>Education</h3>
<p>
<h4>Master of Mathematics - Lund University (2022-2023)</h4>
<p>My <a href='https://lup.lub.lu.se/student-papers/search/publication/9148734'>thesis</a> project was done in cooperation with Modelon, analysing an issue with their FMU-tool PyFMI. I attempted to improve their finite differences approximation of the Jacobian by selecting better increments.</p>
<p>List of courses: <a href='courses_master_en.html'>English</a> / <a
href='courses_master_sv.html'>Swedish</a></p>
<h4>Bachelor of Mathematics - Lund University (2019-2022)</h4>
<p>For my <a href='https://lup.lub.lu.se/student-papers/search/publication/9098223'>thesis</a> I compared
the optimal Arnoldi approximation to the best approximation of a characterstic polynomial, made using
Remez algorithm as adapted for complex numbers by Dr. Peter Tang.</p>
<p>List of courses: <a href='courses_bach_en.html'>English</a> / <a href='courses_bach_sv.html'>Swedish</a>
</p>
</p>
</section>
<section>
<h3>Programming Languages</h3>
<ul>
<li>Python</li>
<li>Java</li>
<li>LaTeX</li>
<li>C</li>
<li>R</li>
</ul>
</section>
<section>
<h3>Documents</h3>
<ul>
<li><a href='CV_Thomas_Renstrom_en.pdf'>CV (English)</a></li>
</ul>
<ul>
<li><a href='personligt_brev.pdf'>Personligt brev (Swedish)</a></li>
<li><a href='CV_Thomas_Renstrom_sv.pdf'>CV (Swedish)</a></li>
</ul>
</section>
</main>
<footer>
<h3>Contact Me</h3>
<ul>
<li>
<a href="https://www.linkedin.com/in/thomas-renstrom" target="_blank">
<img src="linkedin.png" alt="LinkedIn">
<span class="contact-link-label">LinkedIn</span>
</a>
</li>
<li>
<a href="https://github.com/mudthomas" target="_blank">
<img src="github-mark.png" alt="GitHub">
<span class="contact-link-label">GitHub</span>
</a>
</li>
<li>
<a href="mailto:[email protected]">
<img src="email.png" alt="Email">
<span class="contact-link-label">Email</span>
</a>
</li>
</ul>
</footer>
</body>
</html>