Kristian Adelmund
Kristian Adelmund[1] (born 1 February 1987) is a Dutch footballer who most recently played for SC Feyenoord, the amateur branch of Feyenoord.
Personal information | |||
---|---|---|---|
Full name | Kristian Adelmund | ||
Date of birth | 1 February 1987 | ||
Place of birth | Rotterdam, Netherlands | ||
Height | 1.93 m (6 ft 4 in) | ||
Playing position(s) | Defender | ||
Club information | |||
Current team | Feyenoord | ||
Number | 87 | ||
Youth career | |||
PSS Sleyman | Feyenoord | ||
Sparta | |||
Senior career* | |||
Years | Team | Apps | (Gls) |
2007–2011 | Sparta Rotterdam | 66 | (8) |
2012–2013 | Persepam Madura United | 24 | (2) |
2013–2014 | PSS Sleman | 25 | (8) |
2015–2016 | Persela Lamongan | 12 | (1) |
2016– | SC Feyenoord | 11 | (0) |
* Senior club appearances and goals counted for the domestic league only |
Club career
Adelmund played in the youth teams of Feyenoord and Sparta but started his senior career at amateur side SHO after Sparta released him in summer 2008.[2] He moved on to Capelle a year later[3] before leaving to pursue a professional career in Indonesia.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
gollark: As I said, this is not very good code.]
References
- Kristian Adelmund heeft wat te bewijzen - Algemeen Dagblad (in Dutch)
- Marwin Richard naar Capelle - Algemeen Dagblad (in Dutch)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.