Голлан, Брэди

Multi tool use
В Википедии есть статьи о других людях с фамилией Голлан.
|
Дата рождения |
28 марта 1965(1965-03-28) (53 года)
|
Место рождения |
?
|
Гражданство |
Канада
|
Профессиональная карьера |
1989—1994 |
Наивысший рейтинг
|
№ 35 |
Победы на турнирах |
Чемпионат мира |
1/16 финала (1990) |
Брэ́ди Го́ллан (англ. Brady Gollan, род. 28 марта 1965 года[1]) — канадский бывший профессиональный игрок в снукер; теперь играет на высоком уровне в пул.
Карьера |
В 1986 году вышел в четвертьфинал любительского чемпионата мира. В 1988 году стал чемпионом Канады по снукеру, сделав при этом высший брейк турнира — 115 очков[2]; годом позже он достиг 1/8 финала чемпионата Великобритании[3]. В 1990 году в единственный раз в карьере вышел в финальную стадию чемпионата мира, но в 1/16-й проиграл Дугу Маунтджою со счётом 8:10[4]. В 1991-м Голлан в паре с Джимом Вичем занял второе место на турнире World Masters[5], а также достиг полуфинала European Open[6]. Примечательно, что Брэди Голлан никогда не был даже в топ-32 (высший рейтинг — 35-й).
С недавнего времени Брэди Голлан стал на высоком уровне играть в пул: он участвует в канадском туре по «девятке»[7].
Примечания |
↑ Дни рождения снукеристов (недоступная ссылка)
↑ Чемпионат Канады по снукеру Архивная копия от 31 января 2010 на Wayback Machine
↑ Результаты чемпионата Великобритании 1989
↑ Чемпионат мира 1990 Архивировано 10 марта 2011 года.
↑ Mita/Sky World Masters Архивировано 28 февраля 2012 года.
↑ Результаты турнира
↑ Журнал пула и бильярда Архивная копия от 17 марта 2011 на Wayback Machine
Ссылки |
Профиль на globalsnookercentre (англ.)
zl2,4jsQhLtyzfyZUihR,ku7BbucbT9,em1L,D,bx8phB 7BVme,Z40tx5gAA gbZlPhvk,ytmkZAIWnXz,T03FV1LPf
Popular posts from this blog
up vote
0
down vote
favorite
Good day all. I have a window that pops up saying Fatal Program Failure (AnyDesk). This is what I have done so far: Uninstalled AnyDesk and reinstalled it. ( The window still appeared ) I disabled AnyDesk start up in Msconfig and the window seems to have disapeared. Lastly I made sure that AnyDesk worked by remoting into it, and it worked. Today the same window appeared. How do I get rid of this window?
remote-desktop
share | improve this question
edited 10 hours ago
Tomasz Jakub Rup
552 3 13
...
up vote
0
down vote
favorite
I need help with an issue we're facing in a project where we are moving from a Windows-based POS environment to one running on CentOS7. The problem consists of a number of factors, please find the details below: The supplier of our POS application will only deliver an application that is hard-coded to run in a 1024:768 4:3 format. The hardware we are using is a POS unit from HP that has a built-in 16:9 touch-screen. The employees using this solution is not supposed to see nor have access to anything but the POS application. Our sales organization demands that touch is an available feature when going live with the new POS environment. Going further into this, allow me to explain what we have encountered on the way trying to achieve the goal of having a touch-screen: We've simply change...
up vote
9
down vote
favorite
2
This question already has an answer here:
error: incompatible types: unexpected return value Char compare to String
3 answers
I have written a simple method which returns the boolean value. private boolean isActionAvailable(Collection<StudentConfiguration> studentConfigs){ if(studentConfigs != null) { studentConfigs.forEach(studentConfig -> { if(studentConfig.action() == null || !studentConfig.action().equals(Action.DELETE)) { return true; } }); } return false; } The method is throwing the following exception . error: incompatible types: unexpected return value ...