People in the Net

People in the Net (German: Menschen im Netz), also known as Unwilling Agent, is a 1959 West German Cold War spy film directed by Franz Peter Wirth and starring Hansjörg Felmy, Johanna von Koczian and Hannes Messemer.[1]

People in the Net
Directed byFranz Peter Wirth
Produced byHans Abich
Written by
Starring
Music byHans-Martin Majewski
CinematographyGünther Senftleben
Edited byClaus von Boro
Production
company
Distributed byBavaria Film
Release date
23 July 1959
Running time
95 minutes
CountryWest Germany
LanguageGerman

The film's sets were designed by the art directors Franz Bi and Max Seefelder. It was shot at the Bavaria Studios in Munich.

Cast

gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?
gollark: You don't have a thing to efficiently deallocate the list.

References

  1. Bock & Bergfelder p. 306

Bibliography

  • Bock, Hans-Michael & Bergfelder, Tim. The Concise CineGraph. Encyclopedia of German Cinema. Berghahn Books, 2009.


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