kjelsrud.dev/content/about.md

38 lines
1,017 B
Markdown
Raw Normal View History

2022-10-21 14:58:47 +00:00
---
title: "About"
date: true
draft: false
---
```java
public class Me {
private String self;
public Information info(self) {
self.name = "Sindre Kjelsrud";
self.nickname = "Sid";
self.year_born = 1999;
self.hometown = "Skedsmokorset, Viken";
2022-10-23 17:52:51 +00:00
self.curr_location = "Bergen, Vestlandet";
2022-10-21 14:58:47 +00:00
self.university = "Western University of Applied Sciences";
}
public Favourites favs(self) {
self.fav_sport = "bouldering && sportsclimbing";
2022-10-21 14:58:47 +00:00
self.fav_color = "purple";
self.fav_series = "Silicon Valley";
self.fav_anime = "One Piece";
self.fav_movie = "The Social Network || Ready Player One";
self.fav_animemov = "Le Sommet des Dieux";
}
public ContactInformation contact_info(self) {
self.github = "SindreKjelsrud";
self.linkedin = "Sindre Kjelsrud";
self.instagram = "sindrekjelsrud";
self.strava = "Sindre Kjelsrud";
2022-10-23 17:39:13 +00:00
self.spotify = "Kjelsrud!";
2022-10-21 14:58:47 +00:00
}
}
```