Đorđe Mrđanin

Đorđe Mrđanin, also written as Djordje Mrdjanin (Serbian Cyrillic: Ђopђe Mpђaнин ;born February 26, 1981 in Novi Sad), is a Serbian football defender.

Đorđe Mrđanin
Personal information
Date of birth (1981-02-26) February 26, 1981
Place of birth Novi Sad, SFR Yugoslavia
Height 1.89 m (6 ft 2 12 in)
Playing position(s) Central defender
Senior career*
Years Team Apps (Gls)
1997–1999 Kabel Novi Sad 7 (0)
1999–2002 OFK Beograd 12 (0)
2001–2002Proleter Zrenjanin (loan) 14 (1)
2002–2004 FK Veternik 43 (0)
2004–2005 Proleter Zrenjanin 10 (0)
2005–2008 Hajduk Kula 37 (1)
2007Degerfors IF (loan)
2008–2009 IFK Norrköping 15 (1)
2009 Vasas SC 6 (1)
2010 Hajduk Kula 18 (1)
2011 FC Vostok 14 (1)
2011 FK Novi Sad 9 (0)
2012 Radnički Sombor 9 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of March 9, 2016

Career

Beside playing for FK Hajduk Kula where he spend the most of his career, he also played for FK Kabel, OFK Beograd and FK Proleter Zrenjanin in Serbia, Degerfors IF and IFK Norrköping in Sweden and Hungarian Vasas SC.

External sources


gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?
gollark: And how do I get *that* to work.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.