-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
141 lines (119 loc) · 4.81 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Pontus Schuster Tengnäs</title>
<meta charset="UTF-8">
<meta name="keywords" content="Pontus Schuster Tengnäs">
<meta name="description" content="Pontus Schuster Tengnäs">
<meta name="author" content="Pontus Schuster Tengnäs">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
:root {
--main: #756DFF;
--secondary: #756DFF;
}
body {
font-family: system-ui;
padding: 10%;
}
a:link {
color: var(--main);
text-decoration: unset;
}
a:visited {
color: var(--secondary);
}
h1 {
font-size: 46px;
}
ul {
list-style-type: none;
padding-inline-start: 0;
}
@media screen and (max-width: 600px) {
img {
width: 160px;
height: 160px;
}
}
@media screen and (min-width: 600px) {
img {
width: 190px;
height: 190px;
}
}
</style>
<body>
<a href="index.html" rel="noreferrer">
<img src="me.webp" alt="Pontus Schuster Tengnäs">
</a>
<h1>Pontus Schuster Tengnäs</h1>
<h2>
Ok, here goes ☀️
</h2>
<p>
I am a highly motivated developer always trying to deliver my best in any given situation.
I enjoy teamwork, playing golf, listening to music and creating exciting digital solutions
and I am always hungry to learn more about, and become better at, the craft of programming.
If You read this resume and believe that we can have a rewarding collaboration I am gladly
looking forward to hearing from You 😊
</p>
<p>
I have been working as a full-stack developer since I graduated from the Systems Science program at
Gothenburg University, and have had the chance to try out different technologies and ways
of working. I believe the world of software development is so exciting because there is always something new
to learn and every colleague you meet has got something interesting to share. I want to work where there is an
open and encouraging culture where new things can be tested and everyone feels welcome.
</p>
<p>
I like working as a full-stack developer because I want to see the whole picture and I want to think of the work
I do as a complete solution that is handed over to the user of the product, but also because I am
fascinated about technology in general and think that it is super exciting to do both front-end and
back-end development. My strongest principles within software development that I follow in my daily work is:
</p>
<ul>
<li>⁃ Simplicity.</li>
<li>⁃ Add new dependencies with care.</li>
<li>⁃ Write clear and clean.</li>
<li>⁃ Write tests.</li>
<ul>
<p>
I truly enjoy working together as a team, solving problems and making robust, well-tested and
performant software. I guess I am a typical developer in the sense that I really like
to dig down into details and write as efficient and well-structured code as I can. But I really do feel that coding
is teamwork and that you should always discuss and look for a second opinion regarding your solutions.
Both to make better results but also to learn.
</p>
<p>
Currently I am working in an agile app-team with system that is built upon a micro service architecture.
I develop new features in the apps and in the back-end services as well as maintaining and green keeping the existing codebase.
The stack consists of .NET, Xamarin, Golang and GraphQL.
</p>
<p>
Also I have a hobby-project that I have been working on during spare time that is available
on the Swedish iOS App Store. In this app I am using an open API from Västtrafik, Gothenburg's public
transport provider, to build an app that is - in my opinion - a very useful complement to the
existing official app where you can subscribe and track your most commonly used stops and departures.
It is written in Swift and also includes a home-screen widget and an Apple Watch version. Find
the app by searching for “Nästa Resa” on the App Store.
</p>
<p>
Apart from software development I enjoy playing golf, following the Biathlon world cup,
hanging out with family and friends, solving Escape Rooms, running, eating good food and reading the news. I see myself as a diplomatic
and easy going person who likes to have a good time as well as being serious about my work and
I feel very strongly for the tasks that I am involved in.
</p>
<p>
If you have any questions don't hesitate to ask them. Looking forward to hearing from you!
</p>
<footer>
<hr/ style="margin-top: 50px; color: #c7c7c7;">
<div style="display: flex; flex-direction: row; gap: 20px;">
<a href="index.html" rel="noreferrer">Home</a>
<a href="resume.html" rel="noreferrer">Resume</a>
<a href="about.html" rel="noreferrer">About</a>
</div>
</footer>
</body>
</html>