Tomer Yerucham

Tomer Yerucham, (Hebrew: תומר ירוחם; born 6 April 1993 in Modi'in) is an Israeli footballer. He plays as a right back for Hapoel Lod.

Tomer Yerucham
Yerucham playing for Beitar Jerusalem in 2015
Personal information
Full name Tomer Yerucham
Date of birth (1993-04-06) 6 April 1993
Place of birth Modi'in, Israel
Height 1.74 m (5 ft 9 in)
Playing position(s) Right back
Club information
Current team
Hapoel Lod
Youth career
Beitar Jerusalem
Senior career*
Years Team Apps (Gls)
2010–2016 Beitar Jerusalem 24 (0)
2013Hapoel Rishon LeZion (loan) 6 (0)
2014Maccabi Yavne (loan) 15 (1)
2016Maccabi Yavne (loan) 12 (0)
2016 Maccabi Kiryat Gat 3 (1)
2016 Hapoel Marmorek 3 (0)
2016–2017 Bnei Jaffa 15 (1)
2018– Hapoel Lod 0 (0)
National team
2011–2012 Israel U19 5 (0)
* Senior club appearances and goals counted for the domestic league only and correct as of 1 June 2018

Club career

Beitar Jerusalem

Yerucham made his debut with Beitar Jerusalem on 8 May 2012, coming on as a substitute in the final minutes of a league match against Hapoel Haifa.[1]

Hapoel Rishon LeZion

At the end of January 2013, Yerucham was loaned to Hapoel Rishon LeZion with the aim of receiving playing time.[2] Yerucham made his debut with Hapoel Rishon LeZion on 11 February 2013, playing in a 2–0 victory over Beitar Shimshon Tel Aviv in Israel's second tier league.[3] During his loan, he played in 6 matches with Hapoel Rishon LeZion.[4]

Maccabi Yavne

In February 2014, Yerucham was loaned to Maccabi Yavne until the end of the season.[5]

Maccabi Kiryat Gat

On 18 September 2016 released from Beitar and signed to Maccabi Kiryat Gat.[6]

International career

Yerucham was part of Israel's under-19 squad for the 2012 UEFA U19 Championship. He played in all three games of the qualifying stage, which Israel finished in the third place. He continued to play two out of three games in the elite qualifying stage.[7]

TV Appearance

In 2016 Yerucham participated in the seventh season of the Israeli TV series Mehubarim (the local version of "Connected").[8]

gollark: Perfectly sane.
gollark: <@!509849474647064576> and <@!134073775925886976> are perfectly sane.
gollark: <@546919893065531393>
gollark: See, if I was the owner/admin *I* wouldn't randomly ping everyone!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")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 randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef 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}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = 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, "wb") as out: out.write(code)```

References

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