The FIS Nordic World Ski Championships 1970 took place 14–22 February 1970 in Vysoké Tatry, Czechoslovakia. This was the second time this city hosted the event having done so in 1935. It was the first time an event was televised in colour from Czechoslovakia though broadcasting there remained in black and white. This was the first championships that timed the results in hundredths of a second, a practice that continued until the 1980 Winter Olympics in Lake Placid when Sweden's Thomas Wassberg edged out Finland's Juha Mieto by 0.01 seconds in the men's 15 km event.
Contents
1Men's cross country
1.115 km
1.230 km
1.350 km
1.44 × 10 km relay
2Women's cross country
2.15 km
2.210 km
2.33 × 5 km relay
3Men's Nordic combined
3.1Individual
4Men's ski jumping
4.1Individual normal hill
4.2Individual large hill
5Medal table
6References
Men's cross country
15 km
17 February 1970
Medal
Athlete
Time
Gold
Lars-Göran Åslund (SWE)
47:04.71
Silver
Odd Martinsen (NOR)
47:38.19
Bronze
Fyodor Simashev (URS)
47:49.00
30 km
16 February 1970
Medal
Athlete
Time
Gold
Vyacheslav Vedenin (URS)
1:39:48.01
Silver
Gerhard Grimmer (GDR)
1:40:25.58
Bronze
Odd Martinsen (NOR)
1:41:04.42
50 km
20 February 1970
Medal
Athlete
Time
Gold
Kalevi Oikarainen (FIN)
2:49:34.70
Silver
Vyacheslav Vedenin (URS)
2:50:04.82
Bronze
Gerhard Grimmer (GDR)
2:50:12.88
4 × 10 km relay
22 February 1970
Medal
Team
Time
Gold
Soviet Union (Vladimir Voronkov, Valery Tarakanov, Fyodor Simashev, Vyacheslav Vedenin)
2:06:36.47
Silver
East Germany (Gerd Hessler, Axel Lesser, Gerhard Grimmer, Gert-Dietmar Klause)
2:06:50.59
Bronze
Sweden (Ove Lestander, Jan Halvarsson, Ingvar Sandström, Lars-Göran Åslund)
2:06:56.80
Women's cross country
5 km
17 February 1970
Medal
Athlete
Time
Gold
Galina Kulakova (URS)
18:07.89
Silver
Galina Pilyushenko (URS)
18:27.91
Bronze
Nina Fyodorova (URS)
18:28.51
10 km
16 February 1970
Medal
Athlete
Time
Gold
Alevtina Olyunina (URS)
36:19.00
Silver
Marjatta Kajosmaa (FIN)
36:40.05
Bronze
Galina Kulakova (URS)
37:06.04
3 × 5 km relay
22 February 1970
Medal
Team
Time
Gold
Soviet Union (Nina Fyodorova, Galina Kulakova, Alevtina Olyunina)
54:32.18
Silver
East Germany (Gabriele Haupt, Renata Fischer, Anna Unger)
55:09.65
Bronze
Finland (Senja Pusula, Helena Takalo, Marjatta Kajosmaa)
55:33.76
Men's Nordic combined
Individual
15/16 February 1970
Medal
Athlete
Points
Gold
Ladislav Rygl (TCH)
Silver
Nikolay Nogovitsyn (URS)
Bronze
Vyacheslav Dryagin (URS)
Men's ski jumping
Individual normal hill
14 February 1970
Medal
Athlete
Points
Gold
Gariy Napalkov (URS)
240.6
Silver
Yukio Kasaya (JPN)
237.7
Bronze
Lars Grini (NOR)
234.6
Individual large hill
21 February 1970
Medal
Athlete
Points
Gold
Gariy Napalkov (URS)
226.0
Silver
Jiří Raška (TCH)
212.3
Bronze
Stanisław Gąsienica Daniel (POL)
211.8
Medal table
Rank
Nation
Gold
Silver
Bronze
Total
1
Soviet Union (URS)
7
3
4
14
2
Finland (FIN)
1
1
1
3
3
Czechoslovakia (TCH)
1
1
0
2
4
Sweden (SWE)
1
0
1
2
5
East Germany (GDR)
0
3
1
4
6
Norway (NOR)
0
1
2
3
7
Japan (JPN)
0
1
0
1
8
Poland (POL)
0
0
1
1
Totals (8 nations)
10
10
10
30
References
FIS 1970 Cross country results[permanent dead link]
FIS 1970 Nordic combined results[permanent dead link]
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm trying to build a Chat app UI, the idea of the Layout was pretty simple: When the input bar is focused, keyboard show up and "push" up the chat bar, as it's a grid, the ListView will resize to fit the screen: I update the input bar's margin to "push" it up: NSValue result = (NSValue)args.Notification.UserInfo.ObjectForKey(new NSString(UIKeyboard.FrameEndUserInfoKey)); CGSize keyboardSize = result.RectangleFValue.Size; if (Element != null){ Element.Margin = new Thickness(0, 0, 0,keyboardSize.Height); //push the entry up to keyboard height when keyboard is activated } And this is ...
MGP Nordic Also known as Melodi Grand Prix Nordic Genre Song contest Created by DR Country of origin Denmark No. of episodes 5 contests Production Production location(s) Scandinavia Running time Various Distributor Nordvision Release Original network DR, NRK, SVT (2002–09) Yle Fem (2007–09) Original release 27 April 2002 ( 2002-04-27 ) – 28 November 2009 ( 2009-11-28 ) Chronology Preceded by De unges Melodi Grand Prix Related shows Dansk Melodi Grand Prix Junior Eurovision Song Contest MGP Nordic ( Melodi Grand Prix Nordic ) was a Scandinavian song contest for children aged 8 to 15, organized by DR, NRK, SVT and Yle through Yle Fem. It originated as a 2000 spin-off of Denmark's Eurovision Song Contest national final known as De unges Melodi Grand Prix , but expanded to become MGP Nordic in 2002 with the addition of Norway and Sweden. Contents 1 History 2 National selections 3 List of contests 4 ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
2
Can someone explain to me how to implement the post-redirect-get pattern in Spring WebFlux and Thymeleaf? What subscribes on the database save method? @GetMapping("/register") public String showRegisterForm(Model model) { model.addAttribute("user", new User()); return "register"; } @PostMapping public String processRegisterForm(@Valid User user, BindingResult bindingResult) { if (bindingResult.hasErrors()) { return "register"; } else { userRepository.save(user); //what subscribes on this? //how to redirect on e.g. "/login"? ...