Nephtalie Jean-Louis

Nephtalie Jean-Louis is a Haitian Paralympic athlete, who was the sole competitor in Haiti's first Summer Paralympics team in 2008 in Beijing, China. She competed again at the 2012 Summer Paralympics in London, England, in javelin and shot put.

Nephtalie Jean-Louis
Personal information
National teamHaiti
Sport
CountryHaiti
SportPowerlifting, javelin and shot put

Career

At the age of 8 months, her leg became injured after she caught polio. She since continued to live in Haiti where she has suffered discrimination because of her disability, including the inability to use public transport because of prejudice. Jean-Louis turned to sport, initially competing in powerlifting.[1]

After competing at the 2007 Parapan American Games in Rio de Janeiro, Brazil, in powerlifting, she qualified for the 2008 Summer Paralympics in Beijing, China. Her entry at the Paralympics was announced by Jean Chevalier Sanon, the President of the National Paralympic Committee of Haiti, on 28 August 2008. This marked the first occasions Haiti took part in the Paralympic Games.[2] Jean-Louis was the flag bearer for Haiti during the Parade of Nations within the opening ceremony.[3] However, she was unable to participate in her weight class of the powerlifting after being unable to meet the weight limit.[1]

Following the Games, Jean-Louis switched to athletics to compete in javelin, discus and shot put.[1] She was selected once again for the Haitian Paralympic team for the 2012 Summer Paralympics, alongside Josue Cajuste,[4] with both competing in javelin and shot put.[5] The team was aided in going to London through a campaign called "The Dream", funded by the Hogan Lovells law firm.[6] Jean-Louis finished in 17th position in the women's javelin throw in the F57/58 class. Her longest throw was 10.69 metres (35.1 ft). In the same class of the shot put, Jean-Louis threw a distance of 4.75 metres (15.6 ft), finishing in 16th place.[3]

gollark: ```pythonimport requestsimport randomimport fileinputdef weighted_choice(choices): total = sum(weight for choice, weight in choices) r = random.uniform(0, total) upto = 0 for choice, weight in choices: if upto + weight >= r: return choice upto += weight assert False, "Shouldn't get here"def get_rhymes(word, extra_params={}): default_params = { "rel_rhy": word, "max": 20, "md": "pf" } return requests.get("https://api.datamuse.com/words/", params={**default_params, **extra_params}).json()def get_frequency(word_object): for tag in word_object["tags"]: if tag.startswith("f:"): return float(tag[2:]) return 0def get_rhyme(word, params): options = get_rhymes(word, params) options = list(map(lambda word_object: (word_object["word"], get_frequency(word_object)), options)) if len(options) == 0: return word return weighted_choice(options)last = Nonefor line in fileinput.input(): line = line.replace("\n", "") if last != None: print(line + " " + get_rhyme(last, {})) last = None else: last = line.replace(".", "").split(" ")[-1] print(line)```
gollark: My automated rap generatorIs far superior to puny human rappers laterIt is backed by the entire resourcesOf this random online dictionary and word relation query API resource isTechnically it still relies on human interventionTo produce the input text to turn into rap intentionAnd due to the limitations of current natural language processingIt is unable to significantly transform the input text reprocessingThis is because spoken human languagesAre mostly not designed with machine-parseability language isor ease of understandingas major goals expandingand were we using better-designed languages, automated rapwould surely be much easier. app
gollark: Does that even rhyme?Um... BLIME!
gollark: This is totally a rapA rap is what it is chap
gollark: I made an automatic rap generation programIt works by appending an unrelated word which rhymes with the end of the previous line amTo every second lineThis totally counts as rap mineVery valid rap indeedI win esolangs now speed

References

  1. Jean-Louis, Nephtalie (5 September 2012). "Paralympics 2012: disabled people are treated very, very badly in Haiti. We are seen as different". Daily Telegraph. Retrieved 12 November 2017.
  2. "Haïti aux Jeux Paralympiques de Beijing 2008". Le Nouvelliste. 4 September 2008. Retrieved 12 November 2017.
  3. "Athlete bio". Paralympic.org. Retrieved 12 November 2017.
  4. "Haiti team arrive ahead of their first ever Paralympic Games". ITV News. 23 August 2012. Retrieved 12 November 2017.
  5. "Haiti celebrates day of Paralympic sport with IPC Agitos Foundation". InsidetheGames. 27 October 2012. Retrieved 12 November 2017.
  6. Fennell, Edward (6 September 2012). "In the City: Edward Fennell". The Times. Retrieved 12 November 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.