1982 1. deild karla

The 1982 season of 1. deild karla was the 28th season of second-tier football in Iceland.

Standings

Pos Team Pld W D L GF GA GD Pts Promotion or relegation
1 Þróttur R. 18 12 5 1 27 8 +19 29 Promoted to 1983 Úrvalsdeild
2 Þór A. 18 8 7 3 36 19 +17 23
3 Reynir S. 18 9 3 6 26 16 +10 21
4 FH 18 7 6 5 21 23 2 20
5 Völsungur 18 5 6 7 20 21 1 16
6 Njarðvík 18 5 5 8 24 30 6 15
7 Einherji 18 6 3 9 24 31 7 15
8 Fylkir 18 1 12 5 12 18 6 14
9 Skallagrímur 18 5 4 9 22 31 9 14 Relegated to 1983 2. deild
10 Þróttur N. 18 5 3 10 10 25 15 13
Source:

Top scorers

Scorer Goals Team
Jón Halldórsson 9 Njarðvík
Guðjón Guðmundsson 8 Þór A.
Kristján Kristjánsson 8 Völsungur
Sverrir Pétursson 8 Þróttur R.
Pálmi Jónsson 7 FH
Þórður Karlsson 7 Njarðvík
Örn Guðmundsson 7 Þór A.
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.
gollark: So it does actually work now.
gollark: I like it and it was really easy to serde it.

References

  • Sigurðsson, Víðir; Sverrisson, Sigurður (1982). Íslensk knattspyrna 1982 [Icelandic football 1982] (in Icelandic) (1st ed.).:
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.