Dallen Doke

Dallen Ramadhan Rovani Doke (born January 2, 1998) is an Indonesian professional football player who plays for Liga 1 club Persita Tangerang. Although he mainly plays as a full-back, he can also play as a centre-back.[1]

Dallen Doke
Personal information
Full name Dallen Ramadhan Rovani Doke
Date of birth (1998-01-02) 2 January 1998
Place of birth Jakarta, Indonesia
Height 1.76 m (5 ft 9 12 in)
Playing position(s) Full-back
Club information
Current team
Persita Tangerang
Number 5
Youth career
2015 Club de Fútbol Torre Levante Orriols
2016–2017 CD Castellón
2017Alcúdia (loan)
2017 Bali United
2018 Racing de Algemesí
Senior career*
Years Team Apps (Gls)
2018–2019 Bali United 9 (1)
2020– Persita Tangerang 0 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 25 November 2019

Career

Bali United

On 9 March 2018, Dallen officially signed a two-year contract with Liga 1 club Bali United.[2] He made his professional debut for Bali United in a 4–0 win against PS Sumbawa Barat in 2018 Piala Indonesia.[3] And then made his professional debut in Liga 1 when Bali United got a 2–0 victory against PSM Makassar on 11 July 2018[4]

Persita Tangerang

On 8 January 2020, Dallen officially signed a year contract with Liga 1 club Persita Tangerang.[5]

Honours

Club

Bali United
gollark: Why does it not count?
gollark: It only works if you also have GCC installed.
gollark: That's the compiler.
gollark: Yep!
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_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.