-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (119 loc) · 4.39 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
<html>
<head>
<title>Rasmus Danielsson</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- <link rel="stylesheet" href="style.css">
-->
<style>
#contact-info img {
cursor: pointer;
width: 31px;
height: 31px;
margin-top: 1px;
margin-bottom: 1px;
visibility: visible;
}
#contact-info a {
visibility: hidden;
}
body {
font-family: 'Ubuntu Mono';
height: 100%;
}
#ommig {
margin-top: 2%;
text-align: center;
}
#portfolio-header {
text-align: center;
margin-top: 3%;
}
#portfolio {
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
align-content: flex-start;
height: 100%;
margin-left: 15%;
margin-right: 15%;
margin-top: 0%;
}
#portfolio div {
width: 25%;
height: 15%;
margin: 0% 4% 0 4%;
}
</style>
<link rel="stylesheet" href="etc/fonts/stylesheet.css">
</head>
<body>
<div id="headline" style="text-align: center;">
<h1>
Rasmus Danielsson <br>
</h1>
<div id="padding"></div>
<div id="contact-info">
<a href="https://github.com/rasmus-d" target="_blank" rel="noopener noreferrer">
<img src="etc/git.png">
</a>
<a href="https://linkedin.com/in/rasmus-d" target="_blank" rel="noopener noreferrer">
<img src="etc/linkedin.png">
</a>
<a href="mailto:[email protected]"> <img src="etc/at.png"> </a>
</div>
</div>
<div id="ommig">
<p> First year Computer Science MSc student @<a href="https://www.kth.se/en/studies/master/computer-science/msc-computer-science-1.419974" target="_blank">KTH</a>. </p>
</div>
<h2 id="portfolio-header"> Some of my projects </h2>
<div id="portfolio">
<div>
<a href="https://github.com/IsakNyberg/Synma" target="_blank" rel="noopener noreferrer">
<h3> Synma </h3>
</a>
<a>
A synthesizer in the browser where sound-waves are defined by mathematical functions.
Part of a software development course.
</a>
</div>
<div>
<a href="https://github.com/KTH-DD2480-Fundsoft/assignment-2" target="_blank" rel="noopener noreferrer">
<h3> CI server </h3>
</a>
<a>
A CI server for Python developed for an advanced course in software development,
using flask, requests and unittest to handle webhooks, making github API status
updates and a web interface.
</a>
</div>
<div>
<a href="https://www.diva-portal.org/smash/record.jsf?dswid=9466&pid=diva2%3A1805081&c=14&searchType=SIMPLE&language=en&query=rasmus+danielsson&af=%5B%5D&aq=%5B%5B%5D%5D&aq2=%5B%5B%5D%5D&aqe=%5B%5D&noOfRows=50&sortOrder=author_sort_asc&sortOrder2=title_sort_asc&onlyFullText=false&sf=all" target="_blank" rel="noopener noreferrer">
<h3> Bachelor thesis </h3>
</a>
<a>
My bachelor thesis, together with Isak Nyberg. An investigation of the available
methods for finding third-party dependencies in web source code, from a user perspective.
</a>
</div>
<div>
<a href="https://github.com/rasmus-d/brainf" target="_blank" rel="noopener noreferrer">
<h3> Brainfuck compiler </h3>
</a>
<a>
A compiler of the esoteric programming language "brainfuck", written in Haskell with
a x86 backend.
</a>
</div>
<div>
<a href="https://github.com/KTH-DD2480-Fundsoft/assignment-1" target="_blank" rel="noopener noreferrer">
<h3> DECIDE </h3>
</a>
<a>
A program deciding, based on a set of conditions, whether to launch an interceptor missile.
Part of an advanced course in software development.
</a>
</div>
</div>
</body>
</html>