Bijaya Dhimal

Bijay Dhimal (Nepali: बिजय धिमाल; born 4 October 1986)) is a defender playing for Three Star Club in Martyr's Memorial A-Division League.[1]

Bijay Dhimal
Personal information
Full name Bijay Dhimal
Date of birth 4 October 1986
Height 5 ft 7 in (170 cm)
Playing position(s) Defender
Club information
Current team
Three Star Club
Number 5
Senior career*
Years Team Apps (Gls)
2004-2005 Machhindra F.C.
2005-2009 Jawalakhel Youth Club
2009-2019 Three Star Club
National team
2013–2016 Nepal National Team (0)
* Senior club appearances and goals counted for the domestic league only

Domestic career

In domestic league Dhimal played for Machhindra F.C., Jawalakhel Youth Club and Three Star Club.

International career

Dhimal was a hardworking and a successful Martyr's Memorial A-Division League player. Due to which he was called up for National Team on 2013. His debut match was 2013 AFC Challenge Cup qualification.[2] He also played friendly matches against Bahrain national football team and Kuwait national football team on 2013.

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])```
gollark: And *is* Haskell necessarily that fast?

References


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