Costel Pană
Costel Pană (born 15 July 1967) is a retired Romanian football midfielder.[2][3] He won the Liga I title with Dinamo București playing alongside his brother, the defender Marian who was also an international footballer.[4][5][6] After he ended his playing career, he worked as a manager.[5][7][8]
Personal information | |||
---|---|---|---|
Full name | Constantin Pană | ||
Date of birth | 15 July 1967 | ||
Place of birth | Moreni, Romania | ||
Height | 1.89 m (6 ft 2 1⁄2 in)[1] | ||
Playing position(s) | Midfielder | ||
Youth career | |||
1976–1984 | Flacăra Moreni | ||
Senior career* | |||
Years | Team | Apps | (Gls) |
1984–1990 | Flacăra Moreni | 107 | (17) |
1990–1995 | Dinamo București | 128 | (22) |
1995–1997 | Neuchâtel Xamax | 47 | (2) |
1997–1998 | FCM Bacău | 14 | (3) |
1999 | Argeș Pitești | 11 | (2) |
2000 | FC Brașov | 10 | (1) |
Total | 317 | (47) | |
National team | |||
1992–1993 | Romania | 6 | (1) |
Teams managed | |||
1999 | FCM Bacău (caretaker) | ||
2010–2011 | Chindia Târgoviște | ||
2011 | CS Ștefănești | ||
2012 | ACS Buftea | ||
2012–2013 | Progresul Cernica | ||
* Senior club appearances and goals counted for the domestic league only |
Honours
gollark: Makes sense.
gollark: Hmm, so what extra features are needed?
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(())}```
References
- Costel Pană at RomanianSoccer.ro (in Romanian) and StatisticsFootball.com
- Weltfussball
- Costel Pană at National-Football-Teams.com
- "SPECIAL Situaţie de gradul I în Liga 1. Ce a realizat Silviu Lung jr. prin câştigarea titlului cu Astra. De la fraţii Vâlcov, la fraţii Costea şi familia Piţurcă" [SPECIAL First grade situation in Liga 1. What Silviu Lung jr. accomplished by winning the title with Astra. From the brothers Vâlcov to the brothers Costea and the Piţurcă family] (in Romanian). prosport.ro. Retrieved 7 October 2017.
- "Reportaj: Fă-te frate cu Pană până treci Ilfovul" [Report: Make yourself a brother with Pana until you cross the Ilfov] (in Romanian). ilfovsport.ro. Retrieved 8 September 2019.
- "EXCLUSIV Frații cu numărul 6, Nabil și Reda Jaadi sunt prima pereche de frați străini din istoria lui Dinamo și doar a șasea din analele clubului alb-roșu" [EXCLUSIVELY Brothers number 6 , Nabil and Reda Jaadi are the first pair of foreign brothers in the history of Dinamo and only the sixth of the red and white club] (in Romanian). Gsp.ro. 12 March 2019. Retrieved 8 September 2019.
- "Costel Pană preia Progresul Cernica" [Costel Pană takes over Progresul Cernica] (in Romanian). Ilfovsport.ro. 13 September 2012. Retrieved 27 May 2020.
- "Gabi Răduță a preluat (din nou) Cernica!" [Gabi Răduță took over (again) Cernica!] (in Romanian). Liga2.prosport.ro. 1 July 2013. Retrieved 27 May 2020.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.