Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1159®istration__remaining_attendee_capacity__isnull=true
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1160®istration__remaining_attendee_capacity__isnull=true", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1158®istration__remaining_attendee_capacity__isnull=true" }, "data": [ { "id": "kulke:60893", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/liput/", "en": "https://hiff.fi/liput/" }, "description": null, "price": { "fi": "12 €", "en": "12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4215, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:51.813422Z", "last_modified_time": "2023-09-07T14:21:51.813443Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737000.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4215/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:51.661498Z", "last_modified_time": "2023-11-14T06:13:05.732135Z", "date_published": null, "start_time": "2023-09-15T15:45:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "The nature of love (2023) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "The nature of love (2023) – 36th Helsinki International Film Festival – Love & Anarchy" }, "provider_contact_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Helsinki International Film Festival – Love & Anarchy" }, "location_extra_info": null, "short_description": { "fi": "Filosofian opettaja Sophian päällisin puolin täydellisestä elämästä puuttuu intohimoa, kunnes hän tapaa karskin ja miehekkään Sylvainin. Ennennäkemättömän voimakas yhteys johtaa heidät nopeasti intohimoiseen suhteeseen. Teorian pilvilinnoissa leijailevalle Sophialle työläistaustaisen Sylvainin kohtaamisella on maadoittava vaikutus, mutta pian pariskunnan erilaiset taustat alkavat muodostua ylitsepääsemättömiksi esteiksi." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/8A2EC0D5BDBCA9B6E542DCC30A51A0C4/The_nature_of_love_2023_", "en": "http://www.savoyteatteri.fi/en/events/event/8A2EC0D5BDBCA9B6E542DCC30A51A0C4/The_nature_of_love_2023_" }, "description": { "fi": "<p>Filosofian opettaja Sophian päällisin puolin täydellisestä elämästä puuttuu intohimoa, kunnes hän tapaa karskin ja miehekkään Sylvainin. Ennennäkemättömän voimakas yhteys johtaa heidät nopeasti intohimoiseen suhteeseen. Teorian pilvilinnoissa leijailevalle Sophialle työläistaustaisen Sylvainin kohtaamisella on maadoittava vaikutus, mutta pian pariskunnan erilaiset taustat alkavat muodostua ylitsepääsemättömiksi esteiksi.</p><p>Xavier Dolanin elokuvissa näytellyt käsikirjoittaja-ohjaaja Monia Chokri esittelee meille vetovoiman lait komediallisen linssinsä läpi. Chokrilla on mieletön kyky tasapainoilla kömpelyyden ja kiihottavuuden välillä ja asettaa vuoron perään kaikki yhteiskuntaluokat naurunalaisiksi. Vanhempien hahmojen kautta Chokri tuo kokonaisuuteen vakavuutta ja tarkastelee, kuinka jokaiselle ihmisille on tärkeää tulla nähdyksi.</p><p>Persoonallisen kädenjäljen omaavan Chokrin visuaalinen tyyli, villit kuvakulmat ja äkkiväärät leikkaukset tekevät elokuvasta piristävän päivityksen geneerisiin romanttisiin komedioihin. Kyse ei nyt ole kuitenkaan yhtä rajusta visuaalisesta leikittelystä kuin Chokrin Cannesissa palkitussa elokuvassa A Brother’s Love (2019) tai liioitellussa satiirissa Babysitter (2022), vaan tällä kertaa tunteille ja intohimolle annetaan enemmän tilaa hengittää.</p><p>Otto Kylmälä</p><p>Teema: Let's Talk about Sex!<br>Maa: Kanada, Ranska<br>Ohjaus: Monia Chokri<br>Käsikirjoitus: Monia Chokri<br>Näyttelijät: Magalie Lépine Blondeau, Pierre-Yves Cardinal, Monia Chokri, Francis-William Rhéaume<br>Tuotanto: Sylvain Corbeil, Nancy Grant / Metafilms, MK Productions<br>Kesto: 111 min<br>Ikäraja: K16<br>Alkup. nimi: Simple comme Sylvain<br>Kieli: ranska<br>Tekstitys: englanti<br>Levittäjä: MK2 Films<br>Esityskopio: MK2 Films<br>Kuvaus: André Turpin<br>Leikkaus: Pauline Gaillard<br>Musiikki: Emile Sornin<br>Äänisuunnittelu: François Grenon, Julien Roig, Olivier Guillaume<br>Lavastus: Colombe Raby</p>", "en": "<p>In Monia Chokri’s new film, The Nature of Love, the main guiding force is passion. After ten years of marriage, love and intellectual fulfillment, philosophy teacher Sophia (Magalie Lépine Blondeau) flips her life around when she gives in to a passionate affair with the handsome Sylvain (Pierre-Yves Cardinal), who’s been contracted to renovate their house. Interested in the intricacies of love and male-female relationships, the film does not moralise or preach, and this is perhaps its most important quality. (…)</p><p>The Nature of Love offers up a refreshing take on the shortcomings of monogamy and a wonderfully acted process of self-searching for the main character, Sophia.</p><p>Savina Petkova, Cineuropa</p><p>There’s much to recommend the film, but the writing, in particular is first-rate: it establishes a rattling screwball-style dialogue pace early on, and combines cynical smarts and deceptively light handling of some undeniably mature themes – what happens to love, for example, when your partner is hollowed out by dementia? Does a sexual connection have a sell-by date? There’s a kinship, in the film’s clear-eye gaze at mismatched romance, with Nicole Holofcener’s Enough Said.</p><p>Wendy Ide, Screen Daily</p><p>Theme: Let's Talk about Sex!<br>Country: Canada, France<br>Director: Monia Chokri<br>Screenplay: Monia Chokri<br>Starring: Magalie Lépine Blondeau, Pierre-Yves Cardinal, Monia Chokri, Francis-William Rhéaume<br>Production: Sylvain Corbeil, Nancy Grant / Metafilms, MK Productions<br>Duration: 111 min<br>Age limit: K16<br>Orig. title: Simple comme Sylvain<br>Language: French<br>Subtitles: English<br>Distribution: MK2 Films<br>Print source: MK2 Films<br>Cinematography: André Turpin<br>Editing: Pauline Gaillard<br>Music: Emile Sornin<br>Sound: François Grenon, Julien Roig, Olivier Guillaume<br>Production design: Colombe Raby</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60135", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/honey-b-t-bones-vuotalo-17199001/", "sv": "https://www.lippu.fi/event/honey-b-t-bones-vuotalo-17199001/", "en": "https://www.lippu.fi/event/honey-b-t-bones-vuotalo-17199001/" }, "description": null, "price": { "fi": "23 €", "sv": "23 €", "en": "23 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4214, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:51.425893Z", "last_modified_time": "2023-09-07T14:21:51.425915Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730879.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4214/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:51.276873Z", "last_modified_time": "2023-11-14T06:13:05.651208Z", "date_published": null, "start_time": "2023-09-15T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Honey B & T-Bones", "sv": "Honey B & T-Bones", "en": "Honey B & T-Bones" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Suomalaisen rytmimusiikin kulttikokoonpanoihin lukeutuva Honey B & T-Bones on laadullisesti korkeatasoinen ja tunnettu evolutiivisuudestaan ja yllättävyydestään.", "sv": "Den finska rytmmusikens kultensemble Honey B & T Bones håller hög kvalitet och är känd för sin evolutionsbenägenhet och överraskande karaktär.", "en": "Honey B & T-Bones, one of the cult ensembles of Finnish rhythm music, is a high quality band known for its evolutionary and surprising approach." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/40020331F090D8590C1E3267B12B953F/Honey_B_T-Bones", "sv": "http://www.vuotalo.fi/sv/evenemang/event/40020331F090D8590C1E3267B12B953F/Honey_B_T-Bones", "en": "http://www.vuotalo.fi/en/events/event/40020331F090D8590C1E3267B12B953F/Honey_B_T-Bones" }, "description": { "fi": "<p>Suomalaisen rytmimusiikin kulttikokoonpanoihin lukeutuva Honey B & T-Bones on laadullisesti korkeatasoinen ja tunnettu evolutiivisuudestaan ja yllättävyydestään.</p><p>Psykedeeliset värit tyrskyävät yhteen bluesin, funkin ja popin kanssa. Tuloksena persoonallista ja tässä ajassa elävää musiikkia. \"Honey B & T-Bones on nyt 40-vuotiaana ehdottomasti parhaassa vedossaan\", kirjoittaa Keskisuomalaisen Pentti Ronkanen live-arviossaan (KS 10/10–22).</p><p>\"Intensiteetti on huikea, komppi ryskää energisenä ja Aija Puurtisen persoonallisen laulun rinnalla kulkee Esa Kuloniemen kitarataituruus sekä mieletön soundivalikoima. Rakkaudella vaalittu perheyhtye on tyylien hurmaavana sekoituksena ainutlaatuinen maailmassa.”</p><p>Aija Puurtinen: laulu, kosketinsoittimet ja basso<br>Esa Kuloniemi: kitarat ja laulu<br>Pekka Rajamäki: basso, kakkoskitara ja laulu<br>Mooses Kuloniemi: rummut ja laulu</p><p>Liput 23 / Lippu.fi<br>Kesto: 2 x 45 min, sisältää väliajan<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.</p>", "sv": "<p>Den finska rytmmusikens kultensemble Honey B & T Bones håller hög kvalitet och är känd för sin evolutionsbenägenhet och överraskande karaktär.</p><p>Psykedeliska färger sköljer samman med blues, funk och pop. Resultatet är personlig musik som lever i den här tiden.</p>", "en": "<p>Honey B & T-Bones, one of the cult ensembles of Finnish rhythm music, is a high quality band known for its evolutionary and surprising approach.</p><p>Psychedelic colours collide with blues, funk and pop. The result is distinctive music that lives in the present.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60800", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:51.024977Z", "last_modified_time": "2023-09-07T14:21:51.024997Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735136.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4213/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:50.786172Z", "last_modified_time": "2023-11-14T06:13:05.566925Z", "date_published": null, "start_time": "2023-09-15T15:00:00Z", "end_time": "2023-09-15T16:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kuolleet lehdet (7) – Kino Helios" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3F913936EF2EF9850A682770D29072F3/Kuolleet_lehdet_7_" }, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle.</p><p>Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Ikäraja 7<br>Kesto 81 min<br>Ensi-ilta 15.9. <br>Tekstitys suomeksi.</p><p>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia). Leffaan pääsee aina 8 eurolla ja liput tulevat myyntiin viimeistään pari viikkoa ennen näytöstä osoitteessa <u><a href=\"https://www.lippu.fi/artist/kino-helios/\">lippu.fi</u></a>.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60800/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60743", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:50.257944Z", "last_modified_time": "2023-09-07T14:21:50.257966Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735831.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:49.559683Z", "last_modified_time": "2023-11-14T06:13:05.471774Z", "date_published": null, "start_time": "2023-09-15T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Machu Picchu -yhtye & tietokirjailija Jaana Kanninen" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kanneltalon galleriassa esiintyy Macchu Picchu -yhtye klo 17–18, jonka jälkeen klo 18–19 tietokirjailija Jaana Kanninen kertoo kirjastaan Kaunis kuolema." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3BF06D9C5D3F6484F6DDE14FB3E8F39C/Machu_Picchu_-yhtye_tietokirjailija_Jaana_Kanninen" }, "description": { "fi": "<p>Kanneltalon galleriassa esiintyy Macchu Picchu -yhtye klo 17–18, jonka jälkeen klo 18–19 tietokirjailija Jaana Kanninen kertoo kirjastaan Kaunis kuolema.</p><p>Machu Picchu –yhtyeessä esiintyvät Rodrigo Rodríguez, Tito Chauca, Pedro Castellón, Mikko Nousiainen ja Roberto Cueto.</p><p>Galleriassa on esillä edesmenneiden Soledad Chuaqui Lahiattin (1937–2018), Héctor Wistuba Lorcan (1932–2018) ja Luis Baudrandin (1951–2021) teoksia. Kaikki kolme asuivat Suomessa vuosikymmeniä poliittisina pakolaisina, koska olivat joutuneet lähtemään kotimaastaan vuoden 1973 vallankaappauksen seurauksena.</p><p>Soledad Chuaqui tuli tunnetuksi omintakeisen paperinleikkaustekniikkansa sekä rautalangasta tehtyjen reliefien vuoksi. Hän myös opetti monia tulevia taiteilijoita Taideteollisessa korkeakoulussa.</p><p>Héctor Wistuba puolestaan yhdisti chileläisen ja suomalaisen kulttuurin taidokkailla vesiväri- ja öljymaalauksillaan, joiden aiheen hän usein löysi suomalaisesta luonnosta.</p><p>Luis Baudrand oli dokumenttivalokuvaaja, jonka tuotanto keskittyy ihmisoikeuksiin; hän pyrki antamaan äänen niille, joilla sitä ei muutoin ollut. Näyttelyn kuvat kertovat Guatemalan alkuperäiskansojen kulttuurin voimasta pitkän sisällissodan jälkeen.</p><p><i>Kokonaisuus on osa tapahtumasarjaa, jonka Suomen chileläisyhteisö tarjoaa muistellakseen puolen vuosisadan takaisia Chilen vallankaappauksen tapahtumia.</i></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60743/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60885", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://hiff.fi/liput/", "en": "https://hiff.fi/liput/" }, "description": null, "price": { "fi": "12 €", "en": "12 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4211, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:48.835218Z", "last_modified_time": "2023-09-07T14:21:48.835239Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736999.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4211/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:48.574525Z", "last_modified_time": "2023-11-14T06:13:05.394150Z", "date_published": null, "start_time": "2023-09-15T13:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "A bunch of amateurs (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "A bunch of amateurs (2022) – 36th Helsinki International Film Festival – Love & Anarchy" }, "provider_contact_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Helsinki International Film Festival – Love & Anarchy" }, "location_extra_info": null, "short_description": { "fi": "Pohjoisenglantilainen Bradford sai vuonna 2009 ensimmäisenä maailmassa Unescon elokuvakaupungin arvonimen. Festivaalien ja elokuvamuseon ohella ruohonjuuritasolla perinnettä pitää yllä Bradford Movie Makers -niminen amatöörielokuvantekijöiden kerho, josta Kim Hopkinsin vastustamaton dokumentti kertoo." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/50863E134935C4CCDCF374B88704D7B9/A_bunch_of_amateurs_2022_", "en": "http://www.savoyteatteri.fi/en/events/event/50863E134935C4CCDCF374B88704D7B9/A_bunch_of_amateurs_2022_" }, "description": { "fi": "<p>Pohjoisenglantilainen Bradford sai vuonna 2009 ensimmäisenä maailmassa Unescon elokuvakaupungin arvonimen. Festivaalien ja elokuvamuseon ohella ruohonjuuritasolla perinnettä pitää yllä Bradford Movie Makers -niminen amatöörielokuvantekijöiden kerho, josta Kim Hopkinsin vastustamaton dokumentti kertoo.</p><p>Vuonna 1932 perustetulla kerholla on rikas historia mutta vuonna 2019 jäseniä enää kourallinen, rahat loppu ja riesana ränsistyneen klubitalon sisäpihaa kaatopaikkana käyttävät ryökäleet.</p><p>Kerho on jäsenilleen kuitenkin henkireikä arjen keskellä ja monelle jopa ainoa sosiaalinen kontakti. ”Lyhytelokuvien tekeminen ei ehkä ole universumille tärkeää, mutta jos minä lopetan sen, mikä minun elämäni tarkoitus on?”, filosofoi Yorkshiren Wes Andersonilta näyttävä Phil. Koronapandemia ajoi kerhotoiminnan ja koko elokuvakulttuurin henkiinjäämistaisteluun, mutta bradfordilaisille koronapilvellä oli yllättävä hopeareunus.</p><p>Melankolisen hauska A Bunch of Amateurs on yhteisöllisyyden ja cinefilian ylistyslaulu, jossa on samaa kotoisaa henkeä kuin Mike Leigh’n komedioissa ja Konttori-sarjassa. Elokuva voitti vuoden 2022 Sheffieldin dokumenttifestivaalilla yleisöpalkinnon ja on sittemmin hurmannut elokuvafaneja ympäri maailman.</p><p>Tommi Kumén</p><p>Teema: Lifestyle<br>Maa: Iso-Britannia<br>Ohjaus: Kim Hopkins<br>Tuotanto: Margareta Szabo, Kim Hopkins / Labor of Love Films<br>Kesto: 95 min<br>Ikäraja: K7<br>Kieli: englanti<br>Levittäjä: MetFilm Sales<br>Esityskopio: MetFilm Sales<br>Kuvaus: Kim Hopkins<br>Leikkaus: Leah Marino<br>Musiikki: Terence Dunn<br>Äänisuunnittelu: Miles Foster-Greenwood, Wayne Bell</p>", "en": "<p>It’s not an insult: the Bradford Movie Makers proudly call themselves a bunch of amateurs. Since 1932, members have been making virtually zero-budget films with rickety production values and acting of a quality that often results in fond mickey-taking among themselves. With this warm and rather wonderful documentary Kim Hopkins finds comedy in their idiosyncratic passion without ever being mean or mocking. A Bunch of Amateurs is a thoughtful film about film-making and has some unexpectedly deep things to say too about camaraderie, community and male friendship – though there are a couple of women in the club’s ageing membership.</p><p>Cath Clarke, The Guardian</p><p>Though A Bunch of Amateurs initially appears to fit neatly into the tradition of amusing studies of English eccentrics, it deepens into a touching reflection on the importance of cinema and community for an ageing population whose lives are too often isolated and lacking in purpose. The weekly meetings of the Bradford Movie Makers offer the club’s members a human connection and respite from caring for the loved ones who are currently bedridden or struggling with dementia; one member tells us that being part of the group has helped him cope with bouts of depression.</p><p>Philip Concannon, Sight & Sound</p><p>Theme: Lifestyle<br>Country: United Kingdom<br>Director: Kim Hopkins<br>Production: Margareta Szabo, Kim Hopkins / Labor of Love Films<br>Duration: 95 min<br>Age limit: K7<br>Language: English<br>Distribution: MetFilm Sales<br>Print source: MetFilm Sales<br>Cinematography: Kim Hopkins<br>Editing: Leah Marino<br>Music: Terence Dunn<br>Sound: Miles Foster-Greenwood, Wayne Bell</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60885/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60702", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" }, "description": null, "price": { "fi": "8 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:48.337909Z", "last_modified_time": "2023-09-07T14:21:48.337936Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735132.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:48.185460Z", "last_modified_time": "2023-11-14T06:13:05.298659Z", "date_published": null, "start_time": "2023-09-15T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Kesyttämätön (12) – Kino Helios" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/699C0411BBD66CD73B8A8B02BF76055F/Kesyttamaton_12_" }, "description": { "fi": "<p>Jazz raikaa Kööpenhaminan klubeilla, eletään sotien välistä 1930-lukua. Maren, köyhän perheen tyttö, tuntee elämän sykkivän suonissaan mutta nuoren naisen elämänjano on yhteiskunnalle liikaa.</p><p>Maren leimataan huonotapaiseksi ja hänet sijoitetaan Sprogøn saarelle laitokseen, joka on tarkoitettu henkisesti heikoille ja yhteiskuntaan sopeutumattomille naisille. Saarella Maren solmii ystävyyssuhteen kanssasisarensa Sørinen kanssa ja naiset alkavat kapinoida – kauaskantoisin ja kohtalokkain seurauksin.</p><p>Malou Reymannin väkevä draamaelokuva kuvaa kappaleen tummasävyistä Tanskan historiaa ja sitä kuinka yhteiskunta petti aikansa kesyttämättömät naiset.</p><p>Kesyttämätön (Ustyrlig) palkittiin parhaan pohjoismaisen elokuvan palkinnolla Göteborgin elokuvajuhlilla 2023.</p><p>Ikäraja 12<br>Kesto 134 min<br>Ensi-ilta 4.8.2023</p><p><i>Kino Helioksen ohjelmistossa nähdään tuoreimpia ensi-iltaelokuvia niin aikuisille kuin koko perheellekin. Kino Helioksen näytöspäivät ovat tuttuun tapaan Malmitalon Pienessä salissa keskiviikkoisin, perjantaisin ja lauantaisin klo 15 ja 18 (viikoittaiset muutokset mahdollisia).</i></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60702/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60234", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4208, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:47.538593Z", "last_modified_time": "2023-09-07T14:21:47.538615Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734249.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4208/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:47.167828Z", "last_modified_time": "2023-11-14T06:13:05.221756Z", "date_published": null, "start_time": "2023-09-15T07:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/16067E52A0BA0E5838B359F094D144BA/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/16067E52A0BA0E5838B359F094D144BA/Skidikino", "en": "http://www.stoa.fi/en/events/event/16067E52A0BA0E5838B359F094D144BA/Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 6.10. ja 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60234/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60233", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4207, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:46.531220Z", "last_modified_time": "2023-09-07T14:21:46.531239Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734248.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4207/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:45.652726Z", "last_modified_time": "2023-11-14T06:13:05.139858Z", "date_published": null, "start_time": "2023-09-15T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Skidikino", "sv": "Skidikino", "en": "Skidikino" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.", "sv": "Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.", "en": "Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino", "sv": "http://www.stoa.fi/sv/evenemang/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino", "en": "http://www.stoa.fi/en/events/event/7C332965F1128ED9A66381DAA9BD037E/Skidikino" }, "description": { "fi": "<p>Skidikino on laadukas lyhytelokuvahetki yli 3-vuotiaille. Sopii päiväkotiryhmille ja kotihoidossa oleville alle kouluikäisille lapsille yhdessä aikuisen kanssa.</p><p>Mukana on nimekkeitä lyhytelokuvia kuten Muumien maailma, Myyrän puuhat, Professori Balthazar tai Rexi-koiran seikkailut.</p><p>Skidikinoihin liittyy Pikkukroko-oppimateriaali, jonka voi ladata Stoan sivuilta. Kuvitetussa materiaalissa aiheena on elokuvissa käynti.</p><p>Muut Skidikinot pe 6.10. ja 17.11.</p><p>ikäsuositus: Päiväkodeille <br>Paikka: musiikkisali <br>Kesto n. 30 min <br> Kieli: suomi <br>Vapaa pääsy, ryhmille pakolliset ilmoittautumiset: www.kultus.fi 15.8. klo 10 alkaen.<br>Lisätiedot: hanna.westerholm@hel.fi</p>", "sv": "<p>Skidikino är en högklassig kortfilmssession för barn över 3 år. Passar för daghemsgrupper och barn under skolåldern som föräldrarna tar om hand hemma, tillsammans med en vuxen.</p><p>Vi visar filmer om bland annat Mumintrollen, Mullvaden, Professor Balthazar och hunden Reksio. Till Skidikino finns läromaterialet Pikkukroko (Lilla krokodilen) som kan laddas ner på Stoas webbplats. Det illustrerade materialet behandlar temat biobesök.</p><p>Längd: ca. 30 min<br>Språk: finska<br>Anmälan för grupper på kultus.fi.<br>Mera info: hanna.westerholm@hel.fi</p>", "en": "<p>Skidikino is a high-quality short film session for ages 3 and up. Suitable for daycare groups and children under school-age who are being cared for at home, accompanied by an adult.</p><p>The programme includes titles such as the Moomins, The Little Mole, Professor Balthazar and The Adventures of Rexi the Dog.<br>The events have associated Pikkukroko (Little Crocodile) study materials, which can be downloaded from Stoa’s website. The illustrated material revolves around going to the cinema.</p><p>Duration: 30 min<br>Language: Finnish<br>Registration at kultus.fi<br>More information: hanna.westerholm@hel.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60233/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60791", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7265/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [ { "name": "link", "link": "https://helsinkidesignweek.com/events/visioita-tulevaisuuden-kaduista/", "language": "fi" } ], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4188, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:32.215074Z", "last_modified_time": "2023-09-07T14:21:32.215101Z", "name": "", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735479.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4188/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:32.072186Z", "last_modified_time": "2023-11-14T06:13:05.059999Z", "date_published": null, "start_time": "2023-09-13", "end_time": "2023-09-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsinki Design Week: Visioita tulevaisuuden kaduista – Taidetta Espan lavalla" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A6CC0BA69D998986A7113D5F61269A27/Helsinki_Design_Week_Visioita_tulevaisuuden_kaduista" }, "description": { "fi": "<p>Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?</p><p>Näihin kysymyksiin saat vastauksen WSP Design Studion järjestämässä näyttelyssä Espan lavalla 13.–15.9. klo 12–18.</p><p>Esplanadien katukokeilu on täynnä yllättäviä yksityiskohtia, joista jokainen on tarkoin harkittu.<br>Helsinki Design Weekin yhteydessä järjestetään näyttely, jossa pääset tutustumaan Esplanadien katukokeilun suunnitelmaan, kertomaan mielipiteesi ja keskustelemaan katuympäristöjen tulevaisuudesta. Esplanadien katukokeilun lisäksi näyttelyssä on esillä Helsingin kantakaupungin uusia opastemalleja.</p><p>Tule katsomaan, miten muotoilu auttaa suunnittelemaan turvallista ja kaikille helppokulkuista katutilaa, ja kertomaan mielipiteesi opasteista.</p><p>Tapahtuma on osa Helsinki Design Weekin ohjelmaa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60791/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59810", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4026, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:19:41.370551Z", "last_modified_time": "2023-09-07T14:19:41.370580Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728463.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4026/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:19:41.228100Z", "last_modified_time": "2023-11-14T06:13:04.955733Z", "date_published": null, "start_time": "2023-08-17", "end_time": "2023-09-20", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "A&DO Labra – pedagoginen konttinäyttely Vuotalon pihalla", "sv": "A&DO Labb – pedagogisk containerutställning utanför Nordhuset", "en": "A&DO Lab – pedagogic exhibition outside of Vuosaari House" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan.", "sv": "Arkitekturmuseets och Designmuseets gemensamma utställning A&DO Labb har turnerat i Finland redan i två års tid.", "en": "The joint A&DO Labra exhibition of the Museum of Finnish Architecture and Design Museum Helsinki has been touring Finland for two years." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Labra_pedagoginen_konttinayttely_Vuotalon_pihalla", "sv": "http://www.vuotalo.fi/sv/evenemang/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Labb_pedagogisk_containerutstallning_utanfor_Nordhuset", "en": "http://www.vuotalo.fi/en/events/event/66BFA464C80A77108C43A655B4E2AFD1/A_DO_Lab_pedagogic_exhibition_outside_of_Vuosaari_House" }, "description": { "fi": "<p>Arkkitehtuurimuseon ja Designmuseon yhteinen A&DO Labra -näyttely on kiertänyt Suomea jo kahden vuoden ajan.</p><p>AVOIMET YLEISÖOPASTUKSET LAUANTAISIN klo 13 ja 14!</p><p>Nyt kahteen konttiin rakennettu arkkitehtuuri- ja muotoiluoppimisen näyttely palaa Helsinkiin – kaikki kiertomatkan opit mukanaan. A&DO Labra rantautuu Vuotalon pihalle Vuosaareen, missä avautuu loistava paikka hyvän lähiympäristön tarkasteluun kaikenikäisille. Näyttely on avoinna 17.8.–20.9.2023.</p><p><b>Avajaiset Taiteiden yönä 17.8. klo 16–19 </b></p><p>A&DO Labra -näyttely haastaa pohtimaan, minkälainen arkkitehtuuri ja muotoilu tukee hyvää arkea ja kestävää kehitystä. Minkälaisessa ympäristössä sinä haluat elää tulevaisuudessa? Minkälainen on hyvä lähiympäristö? Näyttelyn tavoite on saada sinut pohtimaan kriittisesti ympäristöäsi. Voit pohtia asioita yksin, kaverin kanssa tai ryhmässä. Valmiita ratkaisuja ei tarjota. Tavoite on osoittaa, että tulevaisuus ei ole ennalta määrätty. Voimme jokainen vaikuttaa siihen, minkälainen tulevaisuuden ympäristö on.</p><p>Ilmoita ryhmäsi vierailulle Kultuksessa!</p><p>Työryhmä<br>Vastaava tuottaja: Hanna Kapanen<br>Näyttelyarkkitehtuuri: Marjut Alitalo<br>Graafinen suunnittelu: Dog Design, Salla Bedard<br>Kuvitukset: Hanna Kutvonen<br>Oppimateriaalin palvelumuotoilu: Riikka Jalava</p><p>Näyttelytuotanto: A&DO – Arkkitehtuurin ja muotoilun oppimisen keskus<br>Yhteistyössä: Arkkitehtuurimuseo, Designmuseo<br>Kiitos: Suomen kulttuurirahasto, Konttivuokraus oy ja kaikki yhteissuunnitteluun osallistuneet</p><p>A&DO Labra -näyttely on tuotettu yhteistyössä Konttivuokraus Oy:n kanssa.</p>", "sv": "<p>Arkitekturmuseets och Designmuseets gemensamma utställning A&DO Labb har turnerat i Finland redan i två års tid.</p><p>Nu återvänder utställningen om arkitektur- och designinlärning som är uppbyggd i två containrar till Helsingfors – med alla lärdomar från rundresan i bagaget. A&DO Labb parkeras utanför Nordhuset i Nordsjö som bjuder på en fantastisk plats för studier i en bra näromgivning. Utställningen passar alla åldrar. <br> <br>Utställningen A&DO Labb utmanar besökaren att fundera på hurdan arkitektur och design som stödjer en bra vardag och hållbar utveckling. I en hurdan miljö vill du leva i framtiden? Hurdan är en bra närmiljö? Utställningens syfte är att få dig att kritiskt granska din omgivning. Du kan reflektera över saken för dig själv, med en vän eller i en grupp. Det finns inga färdiga lösningar. Målet är att visa att framtiden inte alltid är förutbestämd. Var och en av oss kan påverka vår framtida miljö.</p>", "en": "<p>The joint A&DO Labra exhibition of the Museum of Finnish Architecture and Design Museum Helsinki has been touring Finland for two years.</p><p>Now, the exhibition of architectural and design learning set up in two shipping containers returns to Helsinki – with all of the lessons learned during the tour. A&DO Labra will arrive at Vuotalo courtyard in Vuosaari, which will provide an excellent location for people of all ages to examine the nearby environment. <br> <br>The A&DO Labra challenges visitors to consider what kind of architecture and design ensures good day-to-day living and sustainable development. What would you like your living environment to be like in the future? What is a good local environment like? The aim of the exhibition is to get you to think about your environment critically. You can think about these things alone, with a friend or in a group. No ready-made solutions will be available. The aim is to show that the future is not predetermined. We can all impact the environment of the future.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59810/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60131", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 3924, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:18:35.226260Z", "last_modified_time": "2023-09-07T14:18:35.226279Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727785.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/3924/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:18:34.830628Z", "last_modified_time": "2023-11-14T06:13:04.848969Z", "date_published": null, "start_time": "2023-06-15", "end_time": "2023-09-23", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Being Black – poimintoja afrosuomalaisuudesta – Helsingin kaupunginmuseon rinnakkaisnäyttely Vuotalossa", "sv": "Being Black – glimtar ur livet som afrofinländare – Helsingfors stadsmuseums parallellutställning i Nordhuset", "en": "Being Black – Afro Finns’ Experiences – Helsinki City Museum’s parallel exhibition at Vuotalo" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Vuotalon rinnakkaisnäyttelyssä on esillä valokuvia ja haastatteluvideo afrosuomalaisen Good Hair Day -kollektiivin toiminnasta.", "sv": "På parallellutställningen i Nordhuset visas fotografier och en intervjuvideo om det afrofinländska Good Hair Day-kollektivets verksamhet.", "en": "The Vuotalo parallel exhibition will feature photographs and an interview video on the activities of the Afro-Finnish Good Hair Day collective." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_poimintoja_afrosuomalaisuudesta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_glimtar_ur_livet_som_afrofinlandare", "en": "http://www.vuotalo.fi/en/events/event/1EAF2B35816BED707BF80F7DB2E31896/Being_Black_Afro_Finns_Experiences" }, "description": { "fi": "<p>Vuotalon rinnakkaisnäyttelyssä on esillä valokuvia ja haastatteluvideo afrosuomalaisen Good Hair Day -kollektiivin toiminnasta.</p><p>Menneiden vuosikymmenien näkökulmaa tuovat henkilöhistorialliset poiminnat afrosuomalaisista 1800- ja 1900-luvuilla. Elokuussa Vuotalossa järjestetään työpaja, jossa kerätään osallistujien omia kuvia osaksi näyttelyä.</p><p>Helsingin kaupunginmuseon Being Black – poimintoja afrosuomalaisuudesta -rinnakkaisnäyttely avautuu 15.6. Vuotalossa. Näyttelyn avulla halutaan lisätä afrosuomalaisuuteen liittyvää tietoisuutta kertomalla, kuinka afrosuomalaiset ovat osa Helsinkiä ja helsinkiläisyyttä sekä vahvistaa afrosuomalaista kulttuuriperintöä.</p>", "sv": "<p>På parallellutställningen i Nordhuset visas fotografier och en intervjuvideo om det afrofinländska Good Hair Day-kollektivets verksamhet.</p><p>Perspektiv på gångna årtionden öppnas av personhistoriska glimtar om afrofinländare på 1800- och 1900-talen. I augusti ordnas i Nordhuset en verkstad där deltagarnas egna bilder samlas in för att fogas till utställningen.</p><p>Helsingfors stadsmuseums parallellutställning Being Black – glimtar ur livet som afrofinländare öppnas 15 juni i Nordhuset. Med hjälp av utställningen vill man öka medvetenheten om afrofinländskhet genom att berätta på vilka sätt afrofinländarna är en del av Helsingfors-identiteten och Helsingfors samt stärka det afrofinländska kulturarvet.</p>", "en": "<p>The Vuotalo parallel exhibition will feature photographs and an interview video on the activities of the Afro-Finnish Good Hair Day collective.</p><p>To add some perspective in terms of past decades, the exhibition will also shed light on some Afro Finns from the 19th and 20th centuries. In August, Vuotalo will be hosting a workshop to collect photos from visitors to include in the exhibition.</p><p>Helsinki City Museum’s Being Black – Afro Finns’ Experiences parallel exhibition will open at Vuotalo on 15 June. The purpose of the exhibition is to raise awareness of Afro-Finnish culture by telling how the Afro Finns are part of Helsinki and the Helsinki identity, and to strengthen the Afro-Finnish cultural heritage in the museum’s collections.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60131/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "helmet:270435", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:18855/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:1/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10673/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:10691/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:12006/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "helmet", "publisher": "ahjo:u4804001010", "sub_events": [], "images": [ { "id": 5887, "has_user_editable_resources": false, "license": "cc_by", "license_url": "https://creativecommons.org/licenses/by/4.0/", "created_time": "2023-11-07T15:21:40.049529Z", "last_modified_time": "2023-11-07T15:21:40.049544Z", "name": "", "url": "https://www.helmet.fi/download/noname/{7AF5225E-FED0-4079-B8EC-21946D260714}/107315", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "helmet", "publisher": "ahjo:u4804001010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5887/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/language/fi/?format=api" } ], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2023-11-07T15:21:40.034249Z", "last_modified_time": "2023-11-13T21:22:37.053771Z", "date_published": "2023-11-07T08:00:00Z", "start_time": "2023-11-13T15:00:00Z", "end_time": "2023-11-13T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Nuorten digimaalaus-työpaja" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tervetuloa tekemään digimaalauksen keinoin joulukoristeita ja -kortteja Pähkinärinteen kirjastolle!" }, "info_url": null, "description": { "fi": "<p>Nuorten digimaalaus-työpajassa pääset tekemään oman digimaalauksen ammattilaisen avulla Ipadin Procreate-sovelluksella. Maalaukset tulostetaan ja niistä tehdään joulukoristeita ja joulukortteja. Ota siis varaslähtö jouluun ja tule askartelemaan joulukoriste tai joulukortteja digimaalauksen keinoin Pähkinärinteen kirjastolle ma 13.11. klo 17-19. Työpaja on suunnattu 13-17-vuotiaille nuorille. Työpajan vetäjänä toimii Riika Anundi. Vapaa pääsy. Ei ennakkoilmoittautumista. </p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/helmet:270435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60405", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4205, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:44.855039Z", "last_modified_time": "2023-09-07T14:21:44.855058Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731903.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4205/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:44.712940Z", "last_modified_time": "2023-11-13T21:13:30.124251Z", "date_published": null, "start_time": "2023-09-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Helsinki Biennaalin elokuvanäytös: teoksia HAMin kokoelmasta", "sv": "Helsingforsbiennalens bioföreställning: verk ur HAM:s samling", "en": "Helsinki Biennial film screening: works from HAM’s collection" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Helsinki Biennaali rantautuu kulttuuritaloihin ympäri Helsinkiä! Osana Helsinki Biennaalin ohjelmaa toteutetaan elokuvanäytöksiä HAMin mediataidekokoelmasta.", "sv": "Helsingforsbiennalen kommer till kulturhus runtom i Helsingfors! Som en del av Helsingforsbiennalens program genomförs bioföreställningar ur HAM:s mediekonstsamling.", "en": "Helsinki Biennial arrives in Helsinki’s cultural centres! The programme of the Helsinki Biennial includes film screenings from HAM’s media art collection." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FE8517EE6E051A09DF01726D82D1D27E/Helsinki_Biennaalin_elokuvanaytos_teoksia_HAMin_kokoelmasta_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FE8517EE6E051A09DF01726D82D1D27E/Helsingforsbiennalens_bioforestallning_verk_ur_HAM_s_samling_", "en": "http://www.kanneltalo.fi/en/events/event/FE8517EE6E051A09DF01726D82D1D27E/Helsinki_Biennial_film_screening_works_from_HAM_s_collection_" }, "description": { "fi": "<p>Helsinki Biennaali rantautuu kulttuuritaloihin ympäri Helsinkiä! Osana Helsinki Biennaalin ohjelmaa toteutetaan elokuvanäytöksiä HAMin mediataidekokoelmasta.</p><p>Esitettävät teokset on valinnut Biennaalin 2023 kuraattori Joasia Krysa ja koordinoiva kuraattori Petronella Grönroos. Teoksia yhdistävät Biennaalin 2023 käsitteet kontaminaatio, uusiutuminen ja toimijuus. Teokset peilaavat nuorten maailmannäkemyksiä, faktan ja fiktion välistä hienovaraista rajaa ja pohtivat tulevaisuutta. Vuoden 2023 Helsinki Biennaalin nimi Uusia suuntia voi syntyä viittaa vaihtoehtoiseen tapaan elää maailmassa ja ymmärtää sitä – sekä kuvitella muita mahdollisia tulevaisuuksia.</p><p>Elokuvanäytöksen aluksi Helsinki Biennaalin henkilökunta johdattelee vuoden 2023 Biennaalin teemoihin. Tämän jälkeen esitetään n. 45 minuutin mittainen elokuvanäytös. Kaikille avoimet näytökset ovat maksuttomia, eikä niihin tarvitse ilmoittautua etukäteen.</p>", "sv": "<p>Helsingforsbiennalen kommer till kulturhus runtom i Helsingfors! Som en del av Helsingforsbiennalens program genomförs bioföreställningar ur HAM:s mediekonstsamling.</p><p>Verken som visas har valts ut av Joasia Krysa, Biennalens kurator 2023 och Petronella Grönroos, koordinerande kurator. Verken förenas av temana för Biennalen 2023: kontaminering, förnyelse och aktivism. Verken speglar ungas världsåskådningar, den fina linjen mellan fakta och fiktion, och utmanar till att fundera över framtiden. Nya riktningar, namnet på Helsingforsbiennalen 2023, kan ge upphov till en hänvisning till ett annat sätt att leva i världen och förstå den samt föreställa sig andra alternativa framtider.</p><p>I början av bioföreställningen leder personalen på Helsingforsbiennalen publiken till temana kring Biennalen 2023. Därefter visas en cirka 45 minuter lång film. De kostnadsfria föreställningarna är öppna för alla och man behöver inte anmäla sig till dem på förhand.</p>", "en": "<p>Helsinki Biennial arrives in Helsinki’s cultural centres! The programme of the Helsinki Biennial includes film screenings from HAM’s media art collection.</p><p>The screenings have been selected by Joasia Krysa, curator of the Biennial 2023, and coordinating curator Petronella Grönroos. The works are linked by the Biennial 2023 concepts of contamination, renewal and agency. The works reflect young people’s perceptions of the world and the fine line between fact and fiction, as well as consider what the future holds. The title of the 2023 Helsinki Biennial, New Directions May Emerge, refers to exploring a way of living in and understanding the world – and imagining other possible futures.</p><p>Before the screening, the staff of the Helsinki Biennial introduces the themes of the 2023 Biennial. This is followed by a film screening of around 45 minutes. The screenings, which are open to all, are free of charge and do not require registration in advance.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60405/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60134", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/linda-fredriksson-juniper-vuotalo-17198695/", "sv": "https://www.lippu.fi/event/linda-fredriksson-juniper-vuotalo-17198695/", "en": "https://www.lippu.fi/event/linda-fredriksson-juniper-vuotalo-17198695/" }, "description": null, "price": { "fi": "23 €", "sv": "23 €", "en": "23 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:45.250502Z", "last_modified_time": "2023-09-07T14:21:45.250525Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730696.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4206/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:45.075804Z", "last_modified_time": "2023-11-13T21:13:30.043380Z", "date_published": null, "start_time": "2023-09-14T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Linda Fredriksson: Juniper", "sv": "Linda Fredriksson: Juniper", "en": "Linda Fredriksson: Juniper" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Linda Fredriksson on noussut nopeasti yhdeksi maamme valovoimaisimmista saksofonisteista ja jazzmuusikoista.", "sv": "Linda Fredriksson har snabbt blivit en av landets ljusstarkaste saxofonister och jazzmusiker.", "en": "Linda Fredriksson has quickly become one of the country’s most prominent saxophonists and jazz musicians." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/42869AA63BD7BCF4B822B4130A405547/Linda_Fredriksson_Juniper", "sv": "http://www.vuotalo.fi/sv/evenemang/event/42869AA63BD7BCF4B822B4130A405547/Linda_Fredriksson_Juniper", "en": "http://www.vuotalo.fi/en/events/event/42869AA63BD7BCF4B822B4130A405547/Linda_Fredriksson_Juniper" }, "description": { "fi": "<p>Linda Fredriksson on noussut nopeasti yhdeksi maamme valovoimaisimmista saksofonisteista ja jazzmuusikoista.</p><p>Fredrikssonin debyyttialbumi Juniper on ihastuttanut kriitikoita ja yleisöä yli genrerajojen. Juniper palkittiin Vuoden Jazz Emma -palkinnolla sekä arvostetulla Teosto-palkinnolla vuonna 2022. Fredriksson on saanut uransa aikana myös monia muita palkintoja ja tunnustusta muusikkoudestaan. Juniper tuo kuultavaksemme Lindan \"hiljaisen ja ujon puolen” säveltämää musiikkia: rehellistä, yksityistä ja sielultaan singer-songwriter-musiikkia jazz-yhtyeen soittamana.</p><p>Linda Fredriksson on säveltänyt musiikkia mm. teatteriin, elokuviin ja esitystaideteoksiin sekä esiintynyt laajalla skaalalla monen muusikon kanssa. Hänen yhteistyökumppaneitaan ovat olleet mm. Timo Lassy, Raoul Björkenheim, Ultra Bra, Pyhimys, Jimi Tenor, The Valkyrians, The Northern Governors, Niillas Holmberg ja European Jazz Orchestra.</p><p>Koonpano:<br>Linda Fredriksson, saksofonit<br>Tuomo Prättälä, koskettimet<br>Mikael Saastamoinen, basso<br>Olavi Louhivuori, rummut</p><p>Liput 23 € / Lippu.fi<br>Kesto: 75 min, ei väliaikaa<br>Klubi-ilta: tarjoilusta vastaa Kahvila Pokkari, A-oikeudet. Alle 18 v. aikuisen seurassa. <br>Sali avautuu klo 17.30.</p>", "sv": "<p>Linda Fredriksson har snabbt blivit en av landets ljusstarkaste saxofonister och jazzmusiker.</p><p>Fredriksson har komponerat musik bland annat till teater, film och performancekonstverk samt uppträtt med ett brett spektrum av andra musiker. Debutalbumet Juniper har charmerat kritiker och publik över genregränserna. Juniper belönades med priset Årets Jazz Emma samt det högt skattade Teosto-priset 2022.</p>", "en": "<p>Linda Fredriksson has quickly become one of the country’s most prominent saxophonists and jazz musicians.</p><p>Fredriksson has composed music for theatre, film and performance art and performed extensively with a wide range of musicians. The artist’s debut album Juniper has delighted critics and audiences across genres. Juniper was recognised with the Jazz Emma of the Year Award and the prestigious Teosto Prize in 2022.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60134/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60399", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4204, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:44.498805Z", "last_modified_time": "2023-09-07T14:21:44.498826Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733022.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4204/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:44.354141Z", "last_modified_time": "2023-11-13T21:13:29.958980Z", "date_published": null, "start_time": "2023-09-14T14:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Lintuja ja liskoja – keramiikan perhekurssi" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFE490F953F75B7EDD7EDBBB5422C3C4/Lintuja_ja_liskoja_keramiikan_perhekurssi" }, "description": { "fi": "<p>Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä.</p><p>Kurssin ensimmäisellä kerralla syvennymme eläimen rakenteeseen ja valmistamme eläinveistokset kivitavarasavesta. Toisella kerralla jatkamme raakapoltettujen esineiden pintakäsittelyllä käyttäen erilaisia keramiikan värejä ja lasitteita. Työt jäävät vielä toiseen polttoon, jonka jälkeen ne voi noutaa Malmitalosta.</p><p>Kurssipäivät ja -ajat ovat seuraavat (ilmoittautuneet sitoutuvat osallistumaan molemmille kerroille):<br>14.9. 17.30–19.45<br>28.9. 17.30–19.45</p><p>Huom! Kurssi on täyteen varattu. Voit ilmoittautua jonoon sähköpostitse: anni.hiekkala@hel.fi<br>Kurssi on tarkoitettu vanhempi-lapsi-pareille.</p><p>Ohjauskieli on suomi.<br>Kurssi on maksuton ja se soveltuu yli 3-vuotiaille lapsille aikuisen kanssa.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60399/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60408", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:669/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": { "fi": "14 €", "sv": "14 €", "en": "14 €" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4202, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:42.440205Z", "last_modified_time": "2023-09-07T14:21:42.440223Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732128.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4202/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:42.110418Z", "last_modified_time": "2023-11-13T21:13:29.853258Z", "date_published": null, "start_time": "2023-09-14T13:30:00Z", "end_time": "2023-09-14T16:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Queer-lintukävelyt", "sv": "Queer-fågelpromenader", "en": "Queer Bird Walk" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.", "sv": "Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.", "en": "People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/00D96BE0143BDBAA5A041945980FD44D/Queer-lintukavelyt", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/00D96BE0143BDBAA5A041945980FD44D/Queer-fagelpromenader", "en": "http://www.kanneltalo.fi/en/events/event/00D96BE0143BDBAA5A041945980FD44D/Queer_Bird_Walk" }, "description": { "fi": "<p>Ihmisillä on taipumus tulkita luonnon ilmiöitä omien arvojensa kautta ja käyttää tätä arvolatautunutta versiota luonnosta omien arvojensa perusteluna.</p><p>Esimerkiksi kyyhkyä on pidetty uskollisuuden ja romanttisen rakkauden symbolina sen pitkän parisiteen takia, minkä perusteella avioliittoa ja ydinperhettä on pidetty luonnollisina. Miksi vaikkapa lutkamaista rautiaista ei pidetä polyamorian symbolina tai kalalokkia lesbouden?</p><p>Queer-linturetkellä katsotaan ja kuunnellaan lähiluonnossa esiintyviä lintuja ja perehdytään siihen, miten läpikotaisesti yleiset käsitykset \"luonnollisesta\" ja katsomisen tavat ovat rakentuneet cis- ja heteronormien ympärille. Oppaana toimii Camille Auer.</p><p>Kurssi järjestetään yhteistyössä Helsingin työväenopiston, Baltic Circle -teatterifestivaalin ja Kanneltalon kanssa.</p><p>Linturetket ovat osa työväenopiston kurssitarjontaa ja niille ilmoittaudutaan osoitteessa https://www.ilmonet.fi. Ilmoittautuminen avautuu myöhemmin. Löydät kunkin retken seuraavien kurssitunnisteiden avulla:</p><p>H235444 Töölönlahti, ke 13.9. klo 7.30–10, kurssimaksu 14 €<br>H235445 Vanhankaupunginlahti, to 14.9. klo 16.30–19, kurssimaksu 14 €<br>H235446 Vanhankaupunginlahti, ke 20.9. klo 8–10.30, kurssimaksu 14 €<br>H235447 Mätäjoki, to 21.9. klo 15.30–18, kurssimaksu 14 €</p><p><b>Camille Auer</b> on monialainen taiteilija ja kirjoittaja. Tällä hetkellä hän tutkii lintujen tarkkailun fenomenologiaa sekä cis- ja heteronormien vaikutusta lintuja koskevan tiedon tuottamisessa. Hän näkee esimerkiksi liikkuvan kuvan, äänen ja esityksen keinoilla tapahtuvan toiminnan teoreettisen ajattelun muotoina siinä missä tekstinkin. Auerin tuotantoa yhdistää toiseuden ja toiseuttamisen tutkiminen suhteessa itseen posthumanistisesta trans- ja queer-näkökulmasta. Auerin työskentelyä tukee Suomen kulttuurirahasto.</p><p>Retki on osa Camille Auerin esityksen Ruff Knowledge taustatyötä. Ruff Knowledge esitetään 22., 24. ja 25. marraskuuta Kanneltalossa osana kansainvälisen Baltic Circle -teatterifestivaalin ohjelmistoa.</p>", "sv": "<p>Människor har en tendens att tolka naturfenomen genom sina egna värderingar och använda denna värdeladdade version av naturen som grund för sina egna värderingar.</p><p>Under Queer-fågelpromenaden tittar och lyssnar vi på fåglar i den närliggande naturen och sätter oss in i hur ingående allmänna uppfattningar av ”naturligt” och att se på saker har byggts upp kring cis- och heteronormer. Camille Auer är vår guide.</p><p>Kursen ordnas i samarbete med Helsingfors medborgarinstitut, teaterfestivalen Baltic Circle och Gamlasgården.</p><p>Camille Auer är en mångsidig konstnär och författare. För närvarande forskar hon i fågelskådningens fenomenologi samt cis- och heteronormernas inverkan på produktionen av information gällande fåglar. Utflykten är en del av bakgrundsarbetet till Auers föreställning Ruff Knowledge. Ruff Knowledge visas 22, 24 och 25 november i Gamlasgården som en del av programmet för den internationella teaterfestivalen Baltic Circle.</p><p>Registrering via https://www.ilmonet.fi:<br>H235444 Töölönlahti, Wed 13. Sept 7.30–10, 14 €<br>H235445 Vanhankaupunginlahti, Thu 14 Sept 16.30–19, 14 €<br>H235446 Vanhankaupunginlahti, Wed 20 Sept 8–10.30, 14 €<br>H235447 Mätäjoki, Thu 21 Sept 15.30–18, 14 €</p>", "en": "<p>People tend to interpret natural phenomena through their own values and use this value-loaded version of nature as a justification for those said values.</p><p>For example, the dove has been considered a symbol of loyalty and romantic love because of its long-lasting pair bonds, on the basis of which marriage and the nuclear family have been seen as natural. Why then haven’t people considered the slutty dunnock a symbol of polyamory, or the seagull of lesbianism? On the Queer Bird Walk, you will observe and listen to the birds in the nearby nature and get to know how the general concepts of “natural” and ways of looking are built around cis and hetero norms. Your guide on the trip is Camille Auer.</p><p>Registration via https://www.ilmonet.fi:<br>H235444 Tölöviken, ons. 13.9 kl. 7.30–10, kursavgift 14 euro<br>H235445 Gammelstadsviken, tors. 14.9 kl. 16.30–19, kursavgift 14 euro<br>H235446 Gammelstadsviken, ons. 20.9 kl. 8–10.30, kursavgift 14 euro<br>H235447 Rutiån, tors. 21.9 kl. 15.30–18, kursavgift 14 euro</p><p>Camille Auer is a trans-disciplinary artist and writer. Her art practice has always been theory driven, but instead of illustrating existing theories, she uses forms ranging from sound, moving image, performance and text-based installations to contribute to theoretical discourse as modes of thinking in their own right. A common theme in her diverse body of work is the othering of trans and nonhuman bodies, such as herself or queer birds. Her work has been shown and published in The Finnish Museum of Photography (Helsinki), Wäinö Aaltonen Museum (Turku) and Atlas Arts (Skye, Scotland) among others. Her work is currently supported by the Finnish Cultural Foundation.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60408/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59962", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4201, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:41.885994Z", "last_modified_time": "2023-09-07T14:21:41.886014Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731846.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4201/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:41.740271Z", "last_modified_time": "2023-11-13T21:13:29.763232Z", "date_published": null, "start_time": "2023-09-14", "end_time": "2023-12-14", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taidejumppa – anna taiteen liikuttaa!", "sv": "Konstgympa – låt konsten röra och beröra dig!", "en": "Art workouts" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan.", "sv": "Balansgympa, kroppsvård, sittgympa, djupstretch... Kom och njut av ledd motion med varierande teman i Gamlasgårdens galleri.", "en": "Balance exercises, body maintenance, chair exercises, deep stretching... Come and enjoy instructor-led physical activity with a changing theme at Kanneltalo Gallery" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/5E78DAD1D35A0FFB1630FE7E7BEFD37E/Taidejumppa_anna_taiteen_liikuttaa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/5E78DAD1D35A0FFB1630FE7E7BEFD37E/Konstgympa_lat_konsten_rora_och_berora_dig_", "en": "http://www.kanneltalo.fi/en/events/event/5E78DAD1D35A0FFB1630FE7E7BEFD37E/Art_workouts" }, "description": { "fi": "<p>Tule mukaan nauttimaan ohjatusta liikunnasta vaihtuvin teemoin Kanneltalon galleriaan.</p><p>Taidejumpat <b>torstaisin 14.9.–14.12. klo 13–13.50</b> Kanneltalon galleriassa.</p><p>Syksyn aikana mm. vahvistetaan lihasvoimaa kuminauhaa apuna käyttäen, tanssahdellaan villasukat jalassa sekä tasapainoillaan ja venytellään livemusiikin säestämänä. Ota oma alusta mukaan ja anna taiteen liikuttaa.</p><p>Tunneille osallistuminen edellyttää alueliikuntapassin (30 €) ostamista. Lisätiedot: www.hel.fi/alueliikunta</p><p>HUOM! Taidejumppaa ei järjestetä to 19.10.</p><p>14.–28.9. keppijumppa <br>5.10. lihaskunto-tuolijumppa <br>12.10. taideliikuntaa<br>19.10. ei tuntia <br>26.10. taideliikuntaa<br>2.–9.11. lihaskunto-tuolijumppa <br>16.11. ulkoliikuntaa<br>23.11.–14.12 kehonhuolto-rentoutus</p><p>Yhteistyössä Kanneltalo ja Liikuntapalvelut</p>", "sv": "<p>Balansgympa, kroppsvård, sittgympa, djupstretch... Kom och njut av ledd motion med varierande teman i Gamlasgårdens galleri.</p><p>Ta med dig ett underlag och låt konsten sätta dig i rörelse!</p><p>Konstgympa i Gamlasgårdens galleri <b>tors.14.9–14.12 kl. 13–13.50</b>. OBS! Konstgymnastik ordnas inte tors. 19.10.<br> <br>För att delta i passen behöver du köpa ett förortsmotionspass (30 euro). Mer information: www.hel.fi/alueliikunta</p><p>14–28.9 käppgymnastik <br>5.10 muskeltonus – stolgymnastik <br>12.10 konstgymnastik<br>19.10 inget pass <br>26.10 konstgymnastik<br>2–9.11 muskeltonus – stolgymnastik <br>16.11 utegymnastik<br>23.11–14.12 kroppsvård – avslappning</p>", "en": "<p>Balance exercises, body maintenance, chair exercises, deep stretching... Come and enjoy instructor-led physical activity with a changing theme at Kanneltalo Gallery</p><p>Bring your own exercise mat and let art get you moving!</p><p>Art workout sessions in Kanneltalo's gallery <b>on Thursdays 14 September – 14 December 13.00–13.50.</b></p><p>You need a regional exercise service pass (€30) to participate in the art workout sessions. Enquiries: https://liikunta.hel.fi/en/pages/support-for-physical-activity/regional-exercise-services</p><p>PLEASE NOTE! Art workout will not take place on Thu, 19 October.</p><p>14–28 September: broomstick exercise <br>5 October: strength training and chair workout <br>12 October: art workout<br>19 October: no class <br>26 October: art workout<br>2–9 November: strength training and chair workout <br>16 November: outdoor exercise<br>23 November–14 December: body maintenance and relaxation</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59962/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60348", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4200, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:41.524914Z", "last_modified_time": "2023-09-07T14:21:41.524936Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734055.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4200/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:41.386968Z", "last_modified_time": "2023-11-13T21:13:29.685295Z", "date_published": null, "start_time": "2023-09-14T07:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jussin metsäsatutuokiot", "sv": "Jussis skogssagor", "en": "Jussi’s Forest Fairy Tales" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.", "en": "We take a trip to the forest with Jussi Ollila to find the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/2F2BB80E754784A65F0BC4972973BACF/Jussin_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/2F2BB80E754784A65F0BC4972973BACF/Jussis_skogssagor_", "en": "http://www.vuotalo.fi/en/events/event/2F2BB80E754784A65F0BC4972973BACF/Jussi_s_Forest_Fairy_Tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p><b>Ryhmä 1 klo 9.15, ryhmä 2 klo 10.30</b></p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min<br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.fi</p>", "sv": "<p>Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.</p><p><b>Obs. Två grupper: gruppen 1 kl. 9.15 och gruppen 2 kl. 10.15 </b></p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av de djur man möter i skogen. Jussis trogna utflyktsgitarren är med.</p><p>Lämpar sig för barn som fyllt 3 år eller som orkar gå en liten skogspromenad. <br>Fri entré <br>Åldersrekommendation: 3–7 år <br>Längd: ca 45 min <br>Språk: finska <br>Passar dagisgrupper och familjer <br>Obligatorisk förhandsregistrering för dagisgrupper www.kultus.fi <br>Utflykten arrangeras i Nybondas klippskog. Avgång från parkeringsområdet mellan café Kampela och Nybondas skog.</p>", "en": "<p>We take a trip to the forest with Jussi Ollila to find the most magical stories.</p><p><b>Notice: two groups, group on at 9.15 AM and group 2 at 10.15 AM</b></p><p>The stories are improvised based on children’s ideas and inspired by the life we encounter in the woods. The faithful campground guitar will accompany our travels.</p><p>The event is suitable for children over 3, or children who will be able to walk for a short stroll in the woods. <br>Age recommendation: 3- to 7-year-olds <br>Duration: approx. 45 min. <br>Language: Finnish <br>Location: Uutela’s forest on rocky terrain. Departure from the parking area between the café Kampela and Uutela forest. <br>Suits families and daycare groups. <br>Daycare groups’ preregistration www.kultus.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60348/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60467", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4199, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:41.167519Z", "last_modified_time": "2023-09-07T14:21:41.167550Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725254.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4199/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:40.566752Z", "last_modified_time": "2023-11-13T21:13:29.587645Z", "date_published": null, "start_time": "2023-09-14T07:00:00Z", "end_time": "2023-09-14T09:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/910B9CB8ADE0202FECCBC20B59A1720F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/910B9CB8ADE0202FECCBC20B59A1720F/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/910B9CB8ADE0202FECCBC20B59A1720F/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60467/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60347", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4198, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:39.927841Z", "last_modified_time": "2023-09-07T14:21:39.927862Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734054.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4198/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:21:39.361482Z", "last_modified_time": "2023-11-13T21:13:29.490518Z", "date_published": null, "start_time": "2023-09-14T06:15:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Jussin metsäsatutuokiot", "sv": "Jussis skogssagor", "en": "Jussi’s Forest Fairy Tales" }, "provider_contact_info": null, "provider": null, "location_extra_info": null, "short_description": { "fi": "Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.", "sv": "Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.", "en": "We take a trip to the forest with Jussi Ollila to find the most magical stories." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6532A416440C1AB6DBAB4755DB088137/Jussin_metsasatutuokiot", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6532A416440C1AB6DBAB4755DB088137/Jussis_skogssagor_", "en": "http://www.vuotalo.fi/en/events/event/6532A416440C1AB6DBAB4755DB088137/Jussi_s_Forest_Fairy_Tales_" }, "description": { "fi": "<p>Jussi Ollilan kanssa retkeillään metsään etsimään jännittävimmät sadut ja maagisimmat tarinat.</p><p><b>Ryhmä 1 klo 9.15, ryhmä 2 klo 10.30</b></p><p>Sadut syntyvät lasten ideoista improvisoiden ja metsässä vastaan tulevan elämän innoittamana. Mukana kulkee uskollinen retkikitara. Myrskysään sattuessa tuokio siirtyy myöhempään ajankohtaan.</p><p>Sopii yli 3-vuotiaille, tai lapsille, jotka jaksavat kävellä pienen metsäretken verran.</p><p>Paikkana on Uutelan kalliometsä. Lähtö kahvila Kampelan ja Uutelan metsän väliseltä parkkialueelta.</p><p>Ikäsuositus: 3–7-vuotiaille <br>Kesto: n. 45 min<br>Kieli: suomi <br>Vapaa pääsy <br>Tarkoitettu päiväkotiryhmille ja perheille. Päiväkotiryhmille pakolliset ennakkoilmoittautumiset osoitteessa kultus.fi</p>", "sv": "<p>Jussi Ollila leder oss till skogen för att leta efter de mest magiska berättelserna.</p><p><b>Obs. Två grupper: gruppen 1 kl. 9.15 och gruppen 2 kl. 10.15 </b></p><p>Sagorna skapas genom improvisation utifrån barnens idéer och med inspiration av de djur man möter i skogen. Jussis trogna utflyktsgitarren är med.</p><p>Lämpar sig för barn som fyllt 3 år eller som orkar gå en liten skogspromenad. <br>Fri entré <br>Åldersrekommendation: 3–7 år <br>Längd: ca 45 min <br>Språk: finska <br>Passar dagisgrupper och familjer <br>Obligatorisk förhandsregistrering för dagisgrupper www.kultus.fi <br>Utflykten arrangeras i Nybondas klippskog. Avgång från parkeringsområdet mellan café Kampela och Nybondas skog.</p>", "en": "<p>We take a trip to the forest with Jussi Ollila to find the most magical stories.</p><p><b>Notice: two groups, group on at 9.15 AM and group 2 at 10.15 AM</b></p><p>The stories are improvised based on children’s ideas and inspired by the life we encounter in the woods. The faithful campground guitar will accompany our travels.</p><p>The event is suitable for children over 3, or children who will be able to walk for a short stroll in the woods. <br>Age recommendation: 3- to 7-year-olds <br>Duration: approx. 45 min. <br>Language: Finnish <br>Location: Uutela’s forest on rocky terrain. Departure from the parking area between the café Kampela and Uutela forest. <br>Suits families and daycare groups. <br>Daycare groups’ preregistration www.kultus.fi</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60347/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26801, "next": "