The Glory and Misery of Human Life

The Glory and Misery of Human Life (Finnish: Ihmiselon ihanuus ja kurjuus) is a 1988 Finnish drama film directed and written by Matti Kassila starring Lasse Pöysti, Liisamaija Laaksonen and Tuula Nyman. It is based on the novel by F.E. Sillanpää.

The Glory and Misery of Human Life
Directed byMatti Kassila
Produced byPäivi Hartzell
Written byMatti Kassila
Based onIhmiselon ihanuus ja kurjuus
by F.E. Sillanpää
StarringLasse Pöysti,
Liisamaija Laaksonen,
Tuula Nyman,
Antti Litja
Music byJukka Linkola
Release date
1988
Running time
96 minutes
CountryFinland
LanguageFinnish

The film is Jasper Pääkkönen's debut role, when he was seven years old at the time.[1] The film also features Samuli Edelmann in one of his first film roles.

Plot

The film is starring writer Martti Hongisto (Lasse Pöysti), who goes out to meet Anna (Liisamaija Laaksonen) after loving her youth and reminiscing about his past youth. Meanwhile, Hongisto's wife Laimi (Tuula Nyman) is searching for her husband in restaurants.

Awards

Jussi 1989:

gollark: One of these days I really ought to add login and CSRF prevention.
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.

References


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