Richard Halsall

Richard Grant Halsall (born 1 October 1968) is a former Zimbabwean cricketer. Halsall was a right-handed batsman who bowled right-arm fast-medium. He was born at Salisbury, Rhodesia (today Harare, Zimbabwe).

Richard Halsall
Personal information
Full nameRichard Grant Halsall
Born (1968-10-01) 1 October 1968
Salisbury, Rhodesia
BattingRight-handed
BowlingRight-arm fast-medium
RoleBangladesh fielding coach
Domestic team information
YearsTeam
2000–2001Sussex Cricket Board
1999Cambridge University
1993/94Mashonaland Country Districts
Career statistics
Competition FC LA
Matches 8 5
Runs scored 171 36
Batting average 19.00 18.00
100s/50s –/1 –/–
Top score 76 17
Balls bowled 1,236 126
Wickets 13 5
Bowling average 44.38 20.60
5 wickets in innings
10 wickets in match
Best bowling 3/64 4/34
Catches/stumpings 5/– –/–
Source: Cricinfo, 23 October 2010

Halsall made his debut in first-class cricket for Mashonaland Country Districts against Mashonaland Under-24s in the 1993/94 Logan Cup. This was the only first-class match he played in Zimbabwe.[1]

His next appearance in first-class cricket came for Cambridge University in English county cricket. His first-class debut for the University came against Lancashire in 1999. During the 1999 season, he represented the University in 7 first-class matches, the last of which came against Oxford University.[2] In his combined total of 8 first-class matches, he scored 171 runs at a batting average of 19.00, with a single half century high score of 76. In the field he took 5 catches. With the ball he took 13 wickets at a bowling average of 44.38, with best figures of 3/64.

Halsall later represented the Sussex Cricket Board in List A cricket. His debut List A match came against Herefordshire in the 2000 NatWest Trophy. From 2000 to 2001, he represented the Board in 5 List A matches, the last of which came against the Essex Cricket Board in 1st round of the 2002 Cheltenham & Gloucester Trophy which was held in 2001.[3] In his 5 List A matches, he scored 36 runs at an average of 18.00, with a high score of 17.[4] With the ball he took 5 wickets at an average of 20.60, with best figures of 4/34.[5]

Coaching career

After a spell coaching at Sussex, Halsall was in 2007 appointed as the first full-time fielding coach of the England national cricket team,[6] After his contract expired on 3 October with the ECB, he joined as the fielding coach of the Bangladesh national cricket team[7] for the next two years.

gollark: Yes, wojbie, that's actual live code (with some bits removed to make it fit), not an example.
gollark: No evil "class" stuff needed.
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.

References

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