Isabella Nielsen

Isabella Nielsen (born 21 August 1995) is a Danish badminton player.[1][2]

Isabella Nielsen
Personal information
Country Denmark
Born (1995-08-21) 21 August 1995
Women's & mixed doubles
Highest ranking68 (WD 19 November 2015)
64 (XD 8 March 2018)
BWF profile

Achievements

BWF International Challenge/Series

Women's doubles

Year Tournament Partner Opponent Score Result
2017 Norwegian International Amanda Madsen Alexandra Bøje
Sara Lundgaard
19–21, 9–21 Runner-up
2015 Norwegian International Amanda Madsen Victoria Dergunova
Olga Morozova
17–21, 12–21 Runner-up
2015 Estonian International Amanda Madsen Setyana Mapasa
Gronya Somerville
5–21, 13–21 Runner-up

Mixed doubles

Year Tournament Partner Opponent Score Result
2018 Slovenian International Kristoffer Knudsen Gregory Mairs
Jenny Moore
21–13, 16–21, 14–21 Runner-up
2018 Iceland International Kristoffer Knudsen Rohan Kapoor
Kuhoo Garg
21–16, 19–21, 18–21 Runner-up
2018 Swedish Open Kristoffer Knudsen Thom Gicquel
Delphine Delrue
16–21, 10–21 Runner-up
2017 Polish International Kristoffer Knudsen Matthew Clare
Victoria Williams
21–13, 21–15 Winner
2015 Hungarian International Patrick Buhl Christopher Coles
Victoria Williams
19–21, 21–11, 17–21 Runner-up
     BWF International Challenge tournament
     BWF International Series tournament
     BWF Future Series tournament
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```
gollark: Well, I guess that's systemd replaced.
gollark: I can define a service in a TOML file and it's automatically restarted on exit and all.

References

  1. "Players: Isabella Nielsen". bwfbadminton.com. Badminton World Federation. Retrieved 2 October 2016.
  2. "Isabella Nielsen Full Profile". bwf.tournamentsoftware.com. Badminton World Federation. Retrieved 2 October 2016.


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