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
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
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 normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
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=1456
{ "meta": { "count": 32746, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1457", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1455" }, "data": [ { "id": "kulke:60908", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?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/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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4220, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:55.426986Z", "last_modified_time": "2023-09-07T14:21:55.427006Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736551.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4220/?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:55.078848Z", "last_modified_time": "2023-11-14T06:13:06.145866Z", "date_published": null, "start_time": "2023-09-16T11: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": "DanceAbility: Lasten inklusiivinen tanssitunti", "en": "DanceAbility: Children's inclusive dance class" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/87E286ACA09648BAEA6D2BEC4266D8A7/DanceAbility_Lasten_inklusiivinen_tanssitunti_", "en": "http://www.annantalo.fi/en/events/event/87E286ACA09648BAEA6D2BEC4266D8A7/DanceAbility_Children_s_inclusive_dance_class" }, "short_description": { "fi": "DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "en": "DanceAbility uses movement improvisation and exercises that everyone is able to do." }, "description": { "fi": "<p>DanceAbility Finland ry:n kaikenlaisten lasten tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat avoimia kaikille lapsille ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta. Opetus kestää tunnin. Yksi aikuinen voi osallistua tunnille useamman lapsen kanssa, esimerkiksi sisarusten kanssa. Tila on esteetön.</p><p>Tiedustelut ja ilmoittautumiset sähköpostitse osoitteeseen daf@danceabilityfinland.com.</p><p>www.danceabilityfinland.com/daf/</p>", "en": "<p>DanceAbility uses movement improvisation and exercises that everyone is able to do.</p><p>The classes are mixed ability, children with and without disabilities, parents are also welcome.</p><p>The space is accessible. Free of charge.</p><p>Bookings: daf@danceabilityfinland.com</p><p>https://www.danceabilityfinland.com/daf/</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60908/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60895", "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": [], "price": { "fi": "12 €", "en": "12 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/liput/", "en": "https://hiff.fi/liput/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4219, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:54.845595Z", "last_modified_time": "2023-09-07T14:21:54.845623Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737002.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4219/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:54.699517Z", "last_modified_time": "2023-11-14T06:13:06.067939Z", "date_published": null, "start_time": "2023-09-16T10: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": "Blind willow, sleeping woman (2022) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Blind willow, sleeping woman (2022) – 36th Helsinki International Film Festival – Love & Anarchy" }, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Helsinki International Film Festival – Love & Anarchy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/D907735F04286FB046D60B65C061B2DC/Blind_willow_sleeping_woman_2022_", "en": "http://www.savoyteatteri.fi/en/events/event/D907735F04286FB046D60B65C061B2DC/Blind_willow_sleeping_woman_2022_" }, "short_description": { "fi": "Haruki Murakamin novelleihin pohjautuva elokuva esittelee joukon tavallisia japanilaisia, jotka koettavat käsitellä mittavan maanjäristyksen pintaan tuomia traumoja, tyytymättömyyttä ja kaipausta. Murakamin arjesta ponnistavaan maagiseen realismiin animaation keinot sopivat fantastisesti." }, "description": { "fi": "<p>Haruki Murakamin novelleihin pohjautuva elokuva esittelee joukon tavallisia japanilaisia, jotka koettavat käsitellä mittavan maanjäristyksen pintaan tuomia traumoja, tyytymättömyyttä ja kaipausta. Murakamin arjesta ponnistavaan maagiseen realismiin animaation keinot sopivat fantastisesti.</p><p>Tarinat lähtevät liikkeelle virastosta, jossa moni niiden hahmoista työskentelee. Virkamies Komura koettaa pitää työrutiineistaan kiinni, kunnes maanjäristyksestä järkyttynyt vaimo jättää hänet, mikä saa hänet erikoisen tehtävän äärelle. Toisaalla yksinäinen vanhus näkee yllättäen ihmisen kokoisen, puhuvan ja nietzscheläisen sammakon, joka yrittää värvätä hänet taistelemaan maanjäristyksiä aiheuttavaa matoa vastaan. Naapurin nuoret aikuiset etsivät omalle seikkailulleen kadonnutta kissaa. Komura alkaa muistella mennyttä rakkauttaan.</p><p>Esikoisohjaaja Pierre Földes on toiminut aiemmin säveltäjänä ja kuvataiteilijana. Animaattorina hänen työnsä vakuutti tiettävästi myös itse kirjailijan. Elokuva toimii niin ranskalaisen kuin japanilaisenkin animaation ystäville, kuten myös niin Murakamin kirjat läpikotaisin tunteville kuin täysille ummikoillekin. Kirjailijan monipuolisuutta ihmissuhdekuvaajana ja omaperäisten skenaarioiden kehittäjänä ei ole aiemmin saatu taltioitua näin monitahoisesti.</p><p>Paavo Ihalainen</p><p>Teema: Animoituja unia<br>Maa: Alankomaat, Kanada, Luxemburg, Ranska<br>Ohjaus: Pierre Földes<br>Käsikirjoitus: Pierre Földes, Haruki Murakami<br>Näyttelijät: Amaury de Crayencour, Mathilde Auneveux, Arnaud Maillard, Bruno Paviot, Féodor Atkine, Pierre Földes<br>Tuotanto: Pierre Baussaron, Tom Dercourt, Emmanuel-Alain Raynal / Miyu Productions, Cinémadefacto<br>Kesto: 108 min<br>Ikäraja: K16<br>Alkup. nimi: Saules aveugles, femme endormie<br>Kieli: englanti<br>Tekstitys: suomi<br>Levittäjä: NonStop Entertainment<br>Esityskopio: NonStop Entertainment<br>Kuvaus: Étienne Boilard<br>Leikkaus: Kara Blake<br>Musiikki: Pierre Földes<br>Äänisuunnittelu: Mattew Földes<br>Lavastus: Julien De Man, Pierre Földes</p>", "en": "<p>Pierre Földes, a composer and visual artist at the helm of his first feature, has made something that mixes the painterly and the stylized, a film that’s lovely, mysterious and also, at times, fittingly odd.</p><p>The writer-director finds connective tissue among the various storylines in the idea of an earthquake as a psychic rupture, shaking loose the dissatisfactions and yearnings that are usually under wraps, keeping people shut off and stuck. Földes’ multiple roles here include writing the score, voicing a key part and, not least, designing the characters and settings — his graphic style having won over Murakami, otherwise not a fan of animated movies.</p><p>Sheri Linden, The Hollywood Reporter</p><p>Regardless of whether this new Murakami adaptation (based on his short story collection of the same name) comes to be considered the best, I think it might actually capture the elusive essence of Murakami more than any other – something in it being a Rotoscope animation of elegant simplicity. It has the ruminative lightness, almost weightlessness, the watercolour delicacy and reticence of the emotions, the sense of the uncanny, the insistent play of erotic possibility and that Murakami keynote: a cat.</p><p>Peter Bradshaw, The Guardian</p><p>Theme: Animated Dreams<br>Country: Netherlands, Canada, Luxembourg, France<br>Director: Pierre Földes<br>Screenplay: Pierre Földes, Haruki Murakami<br>Starring: Amaury de Crayencour, Mathilde Auneveux, Arnaud Maillard, Bruno Paviot, Féodor Atkine, Pierre Földes<br>Production: Pierre Baussaron, Tom Dercourt, Emmanuel-Alain Raynal / Miyu Productions, Cinémadefacto<br>Duration: 108 min<br>Age limit: K16<br>Orig. title: Saules aveugles, femme endormie<br>Language: English<br>Subtitles: Finnish<br>Distribution: NonStop Entertainment<br>Print source: NonStop Entertainment<br>Cinematography: Étienne Boilard<br>Editing: Kara Blake<br>Music: Pierre Földes<br>Sound: Mattew Földes<br>Production design: Julien De Man, Pierre Földes</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60895/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60351", "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: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:669/?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": [], "price": null, "description": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4218, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:54.443088Z", "last_modified_time": "2023-09-07T14:21:54.443120Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731337.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4218/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:54.283446Z", "last_modified_time": "2023-11-14T06:13:05.978309Z", "date_published": null, "start_time": "2023-09-16T10:00:00Z", "end_time": "2023-09-16T14: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": "Debatti: 1970-luvun arkkitehtuurin aatteet ja arki tänään – Helsinki Design Week 2023", "sv": "Debatt: Ideologier inom 1970-talets arkitektur och vardagen idag – Helsinki Design Week 2023", "en": "Debate: 1970s architectural ideologies and everyday life today – Helsinki Design Week 2023" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/27544A107CA1BEB25379D9533A642B8A/Debatti_1970-luvun_arkkitehtuurin_aatteet_ja_arki_tanaan_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/27544A107CA1BEB25379D9533A642B8A/Debatt_Ideologier_inom_1970-talets_arkitektur_och_vardagen_idag", "en": "http://www.vuotalo.fi/en/events/event/27544A107CA1BEB25379D9533A642B8A/Debate_1970s_architectural_ideologies_and_everyday_life_today" }, "short_description": { "fi": "Keskustelua arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä.", "sv": "Diskussion om arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.", "en": "Discussion on architecture, ideas, and everyday life in the spirit of 1970s debating culture." }, "description": { "fi": "<p>Keskustelua arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä.</p><p>Dialogiin perustuvassa, osallistavassa tapahtumassa keskustellaan arkkitehtuurista, aatteista ja arjesta 1970-luvun debatointikulttuurin hengessä. Tapahtuman järjestävät yhteistyössä Docomomo Suomi Finland ry, Arkkitehti-lehti, Architectural Democracy -kollektiivi ja Vuotalo.</p><p>Paikka: Vuosali, Vuotalo (Mosaiikkitori 2, Vuosaari, 00980 Helsinki)<br>Kieli: suomi ja englanti<br>Osallistuminen: maksuton, pakollinen ennakkoilmoittautuminen</p><p>Debatti 1: 1970-luvun rakennusperintö – uhka vai mahdollisuus? <br>Debatti 2: Arkkitehtuurin aatteet ja arki vuonna 2023<br>Debatti 3: Meidän on parannettava osallistavaa kaupunkisuunnittelua!</p><p><b>Osallistuminen</b><br>Ilmoittautuminen tapahtumaan avatttu! Tapahtumaan voidaan ottaa yhteensä 200 osallistujaa. Huomioithan, että ilmoittautuminen on sitova ja henkilökohtainen: yhdellä lomakkeella voi tehdä ainoastaan yhden ilmoittautumisen yhdelle henkilölle. Lomakkeen onnistunut lähettäminen on merkki onnistuneesta ilmoittautumisesta. Jos joutuisit perumaan osallistumisesi, ilmoita siitä sähköpostitse osoitteeseen: jemina.lindholm@mfa.fi. Tieto mahdollisesta esteestä on tärkeä, jotta voimme antaa paikkasi jonotuslistalla seuraavalle.</p><p><b>Saavutettavuus</b><br>Tapahtuma on kaikille avoin ja maksuton. Tapahtuma järjestetään suomeksi ja englanniksi. Tapahtumassa on tarjolla virvokkeita. Tapahtuma striimataan kokonaisuudessaan Helsinki-kanavalle, josta se on mahdollista katsoa reaaliajassa tai tallenteena jälkikäteen kahden viikon ajan.</p><p>Vuotalo on liikuntaesteetön. Lisätietoja Vuotalon saavutettavuudesta löydät <u><a href=\"https://www.vuotalo.fi/yhteystiedot\">täältä</a></u>.</p><p>Arkkitehtuurimuseossa on käytössä turvallisemman tilan periaatteet, joihin sitoudutaan kaikessa museon toiminnassa. Lisätietoja Arkkitehtuurimuseon turvallisemman tilan periaatteista löydät <u><a href=\"https://www.mfa.fi/tule-meille/arkkitehtuurimuseon-turvallisemman-tilan-periaatteet/\">täältä</u></a>.</p><p><b>Lisätietoja:</b><br>Jemina Lindholm, yleisötyövastaava, Arkkitehtuurimuseo <br>+358 45 7731 0476, jemina.lindholm@mfa.fi</p>", "sv": "<p>Diskussion om arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.</p><p>Vid detta inkluderande evenemang som baseras på dialog, diskuterar vi arkitektur, ideologier och vardagen i andan av 1970-talets debattkultur.</p><p>Debatt 1: 1970-talets byggnadstradition – ett hot eller en möjlighet? <br>Debatt 2: Ideologier inom arkitektur och vardagen 2023<br>Debatt 3: Vi måste förbättra den inkluderande stadsplaneringen!</p><p>Evenemanget är gratis och öppet för alla. Evenemanget ordnas på finska och engelska. Se deltagaranvisningarna och tillgänglighetsuppgifterna på Finlands arkitekturmuseums webbplats:<br>på finska https://www.mfa.fi/tapahtumat/debatti-1970-luvun-arkkitehtuurin-aatteet-ja-arki-tanaan/<br>på engelska https://www.mfa.fi/en/events/debate-1970s-architectures-ideas-and-everyday-life-today/</p><p>Nordhuset är tillgängligt. Ytterligare information om Nordhusets tillgänglighet hittar du här: https://www.vuotalo.fi/sv/kontaktuppgifter.</p><p>På Finlands arkitekturmuseum tillämpas principerna för tryggare rum, vilka man förbinder sig till i all verksamhet på museet. Ytterligare information om Finlands arkitekturmuseums principer för tryggare rum hittar du här: https://www.mfa.fi/sv/valkommen-till-arkitekturmuseet/finlands-arkitekturmuseums-principer-for-ett-tryggare-utrymme/</p>", "en": "<p>Discussion on architecture, ideas, and everyday life in the spirit of 1970s debating culture.</p><p>Date: Saturday, September 16th, 2023, from 1:00 PM to 5:00 PM - Helsinki Design Week 2023 Location: Vuosali, Vuotalo (Mosaiikkitori 2, Vuosaari, 00980 Helsinki) <br>Language: Finnish and English <br>Participation: Free | Pre-registration required</p><p>Debate: \"The Ideas and Everyday Life of 1970s Architecture Today\" is a participatory and dialogue-based event where architecture, ideas, and everyday life are discussed in the spirit of the 1970s debating culture. The event is organized in cooperation by Docomomo Suomi Finland ry, Finnish Architectural Review, Architectural Democracy collective, and Vuotalo.</p><p>Debate 1: The Built Heritage of the 1970s - A Threat or an Opportunity?<br>Debate 2: Architecture's Ideas and Everyday Life in 2023<br>Debate 3: We Need to Improve Participatory Urban Planning!</p><p><b>Participation</b><br>Registration for the event is now open. A total of 200 participants can be admitted to the event. Please note that the registration is binding and personal: you can only make one registration for one person with one form. Successful submission of the form is a sign of successful registration. If you have to cancel your participation, please notify us by email to: jemina.lindholm@mfa.fi. Information about a possible cancellation is important so that we can give your place to the next person on the waiting list.</p><p><b>Accessibility</b><br>The event is open to everyone and free of charge. The event is organized in Finnish and English. Refreshments are available at the event. The event will be streamed in its entirety on the Helsinki channel, where it is possible to watch it in real time or as a recording afterwards for two weeks.</p><p>Vuotalo is physically accessible. You can find more information about Vuotalo's accessibility <u><a href=\"https://www.vuotalo.fi/en/contact-information\">here</u></a>.</p><p>The Museum of Finnish Architecture is committed to the principles for a safer space in all museum activities. You can find more information about the Museum of Finnish Architecture's principles for a safer space <u><a href=\"https://www.mfa.fi/en/visit-us/the-museum-of-finnish-architecture-principles-for-a-safer-space/\">here</u></a>.</p><p><b>For more information</b><br>Jemina Lindholm, Manager of Learning and Public Programmes, Museum of Finnish Architecture<br>+358 45 7731 0476, jemina.lindholm@mfa.fi</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60351/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60894", "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": [], "price": { "fi": "12 €", "en": "12 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/liput/", "en": "https://hiff.fi/liput/" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4217, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:54.050712Z", "last_modified_time": "2023-09-07T14:21:54.050741Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737001.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4217/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:53.555219Z", "last_modified_time": "2023-11-14T06:13:05.898612Z", "date_published": null, "start_time": "2023-09-15T18: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": "Return to reason (1923) – 36th Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Return to reason (1923) – 36th Helsinki International Film Festival – Love & Anarchy" }, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Helsinki International Film Festival – Love & Anarchy" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/E301985E29001663704AA0A5F0BCFA79/Return_to_reason_1923_", "en": "http://www.savoyteatteri.fi/en/events/event/E301985E29001663704AA0A5F0BCFA79/Return_to_reason_1923_" }, "short_description": null, "description": { "fi": "<p>Man Ray, maalari ja valokuvaaja dadaismin ja surrealismin ytimessä, kohtasi 1921 lumoavan Kiki de Montparnassen, 20-luvun Pariisin keskushahmoihin lukeutuvan taiteilijan ja mallin. Heidän yhdessäolonsa aikana syntyivät neljä Man Rayn kuuluisinta elokuvaa Le Retour à la raison (1923), Emak-Bakia (1926), L’Étoile de mer (1928) ja Les Mystères du château de Dé (1929). Ne ovat rakkausrunoja. Kysymys ”mieskatseesta” on surrealistien kohdalla epäilemättä aina aiheellinen. Mutta Kiki de Montparnasse on naissubjekti. Hän katsoo ja haastaa meitä.</p><p>Kuvarunoissaan Man Ray näyttää meille taivaan merkit. Niissä on tähtitaivas ja meritähti. Niissä on tulikukkia ja vauhdin hurmaa. Ne ovat kineettistä taidetta, jossa on monivalotuksia, päällekkäiskuvia, abstrakteja valoilmiöitä, geometrisiä muotoja, negatiivikuvia, 360 asteen panorointeja ja tietenkin rayogrammeja. Mutta myös tanssin ja transsin hurmiota. Niistä kasvaa elävä virta, tajunnanvirta, matka ulkoiseen ja sisäiseen.</p><p>Man Rayn elokuvat ovat innoittaneet taiteilijasukupolvia sadan vuoden ajan. Tänä vuonna sai Cannesissa ensiesityksensä neljän mykkäklassikon uusi tyylikäs restaurointi. Kuvia siivittää Sqürlin (Jim Jarmuschin ja Carter Loganin) musiikki. Man Rayn elokuvat on tuotu nykypäivään tavalla, joka houkuttelee palaamaan niihin seuraavat sata vuotta.</p><p>Antti Alanen</p><p>Teema: R&A Trailblazers<br>Maa: Ranska<br>Ohjaus: Man Ray<br>Tuotanto: Man Ray<br>Kesto: 70 min<br>Ikäraja: K12<br>A bunch of amateurs (2022)<br>Alkup. nimi: Le Retour à la raison<br>Kieli: ranska<br>Tekstitys: suomi<br>Levittäjä: NonStop Entertainment<br>Esityskopio: NonStop Entertainment<br>Kuvaus: Man Ray<br>Leikkaus: Man Ray<br>Musiikki: Sqürl</p>", "en": "<p>In 1923, Man Ray improvises his first film. This movie, boldly surrealist, is called Le Retour à la raison. Subsequently, he renews the experience with Emak-Bakia in 1926, L‘Étoile de mer in 1928 and Les Mystères du château de Dé in 1929.</p><p>In 2023, Jim Jarmush and Carter Logan, the founding members of the group Sqürl, compose a soundtrack to the four films as if they were forming one unique piece.</p><p>Return To Reason celebrates the 100th anniversary of Man Ray’s cinematic Œuvre, restored for the first time in 4K. Il reveals the unique dialogue between two multitalented artists, and creates an undefinable object, a piece of visual music that resonates through its modernity and poetry.</p><p>Production notes</p><p>Man Ray’s films have inspired generations of artists for a hundred years. This year, a stylish new restoration of his four silent film classics had its world premiere at the Cannes Film Festival. The images are brought to life by the music of Sqürl (Jim Jarmusch and Carter Logan). Man Ray’s films have been brought to the modern day here in a way that will tempt audiences to return to them for the next hundred years.</p><p>Antti Alanen (translated by Inari Ylinen)</p><p>Theme: R&A Trailblazers<br>Country: France<br>Director: Man Ray<br>Production: Man Ray<br>Duration: 70 min<br>Age limit: K12<br>Orig. title: Le Retour à la raison<br>Language: French<br>Subtitles: Finnish<br>Distribution: NonStop Entertainment<br>Print source: NonStop Entertainment<br>Cinematography: Man Ray<br>Editing: Man Ray<br>Music: Sqürl</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60894/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59874", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?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:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923", "sv": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923", "en": "https://www.lippu.fi/artist/stoa/itaekuskus-stand-up-klubi-k-18-3417923" } } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4216, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:21:52.840890Z", "last_modified_time": "2023-09-07T14:21:52.840914Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730789.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4216/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:21:52.251930Z", "last_modified_time": "2023-11-14T06:13:05.808410Z", "date_published": null, "start_time": "2023-09-15T16: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": "Itäkuskus stand up -klubi", "sv": "Itäkuskus stand up-klubb", "en": "Itäkuskus Stand-up Club" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_stand_up_-klubi", "sv": "http://www.stoa.fi/sv/evenemang/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_stand_up-klubb", "en": "http://www.stoa.fi/en/events/event/A48345A3F7E67702E7F61962A07490F9/Itakuskus_Stand-up_Club" }, "short_description": { "fi": "Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"", "sv": "Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”", "en": "Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”" }, "description": { "fi": "<p>Itäkuskus-klubi on hulvaton stand up -ilta, josta on lyhyessä ajassa tullut ilmiö. ”Tarjoamme yleisölle vitsejä ja kielioppivirheitä!\"</p><p>Klubilla unohdat murheet ja stressit. Tämä ainutlaatuinen show vie sinut idän matkalle ja tarjoaa hulvatonta komiikkaa, ainutlaatuisia havaintoja kulttuurieroista ja suomen kielestä. Joka keikalla on useampi vaihtuva maahanmuuttajataustainen koomikko – ja totta kai joka illassa esiintyy myös vaihtuva nimekäs kiintiösuomalainen koomikko.<br> <br>Kaikilla klubeilla esiintyy viihdetähti Fabe. Et ole voinut välttyä Faben videoilta, sillä kuukausittain niitä katsotaan yli miljoonaa kertaa Suomessa ja jaetaan yli 50 000 kertaa. Miksi klubista on tullut ilmiö? Fabe vastaa: ”Koska suomalaiset rakastavat mun käsikarvoja ja niistä vitsailua. Huumorin avulla voi käsitellä kaikkia aiheita ja yhdistää kulttuureita. Tämä on jotain aivan ainutlaatuista ja uskomatonta. Kannattaa tulla paikalle!”<br> <br>Klubi-iltojen isäntänä toimii yksi suomen monipuolisimpia koomikoita: Koomikko Mebe! Mebe on tuottaja, koomikko sekä MC! Hän on sympaattinen ja muistuttaa nallekarhua, joka hurmaa yleisön terävillä heitoilla ja vitseillä! ”Tätä ei näe ja kuule muualla, hulvaton Itäkuskus show on täynnä ullatuksia ja ainutlaatuisia vitsejä ja havaintoja. Tämä on kuin Fazerin maitosuklaa, kerrasta jää koukkuun!! Tule ja koe ainutlaatuinen Itäkuskus-show, monet käy joka kerta.\"<br> <br>Klubilla osansa saavat Verovirasto, Alko, Vantaa, maahanmuuttajien kulttuurierot sekä suomenkieliset fraasit, joita kantasuomalaisetkaan eivät osaa lausua itse oikein.<br> <br>Yleisön suusta:<br>\"Haluamme tukea maahanmuuttajaesiintyjiä.\" <br>\"Täällä kuulen erinomaista läppää, mitä muualla en kuule.\" <br>\"Loistavaa konsepti ja ilta on täynnä hyviä esiintyjiä, jokainen esiintyjä on niin erilainen ja omalla tavalla hyvä.\" <br> <br>Tule kokemaan itse ja tuo kaverit mukaan!<br>Liput kannattaa ostaa hyvissä ajoin ennen, kun ne myydään loppuun.<br> <br>www.instagram.com/comedyfabe/ <br>www.instagram.com/mebekoomikko/, www.tiktok.com/@comedyfabe/ <br> <br>Kesto: n. 2,5 t <br>Ikäraja: K18<br>Kieli: suomi, välillä huono soomi ja ehkä joskus yksi esiintyjä vetää englanniksi<br> <br>Klubi-illan tarjoiluista vastaa ravintola Skutta.<br> <br>Paikka: teatterisali <br>Liput: 20/15 €</p>", "sv": "<p>Itäkuskus-klubben är en fantastisk standupkväll, som på kort tid har blivit ett fenomen. ”Vi erbjuder publiken roliga historier och grammatikfel!”</p><p>I klubben glömmer du dina bekymmer och stress. Denna unika show tar dig på en resa österut och bjuder på uppsluppen komedi, unika observationer av kulturskillnader och finska språket. Under varje show uppträder flera olika komiker med invandrarbakgrund – och givetvis uppträder även olika, kända kvotfinländska komiker under dessa kvällar.</p><p>I klubben skämtas det friskt om såväl Skatteförvaltningen som Alko, Vanda, invandrarnas kulturskillnader samt finska fraser, som inte ens infödda finländare kan uttala rätt.</p><p>Kom och upplev detta själv och ta med dig en kompis! Det lönar sig att köpa biljetter i god tid.</p>", "en": "<p>Itäkuskus Club is a hilarious stand-up evening that has quickly become a phenomenon. “We entertain the audience with jokes and grammatical errors!”</p><p>You will forget your worries and stresses at the club. This unique show will take you on a journey to the East, offering hilarious comedy and unique insights into cultural differences and the Finnish language. Each show will feature a different comedian from an immigrant background – and of course, each night will also feature a different renowned comedian from Finland.</p><p>The club will feature comedy about the Finnish Tax Administration, Alko, Vantaa, immigrants’ cultural differences and Finnish phrases that even native Finns can’t pronounce correctly themselves.</p><p>Come and experience the show for yourself and bring your friends! Make sure to buy your tickets in good time before they sell out.</p>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59874/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "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": [], "price": { "fi": "12 €", "en": "12 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/liput/", "en": "https://hiff.fi/liput/" } } ], "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", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737000.jpg", "name": "", "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" }, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Helsinki International Film Festival – Love & Anarchy" }, "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_" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": { "fi": "23 €", "sv": "23 €", "en": "23 €" }, "description": null, "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/" } } ], "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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730879.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" } } ], "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", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735136.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3F913936EF2EF9850A682770D29072F3/Kuolleet_lehdet_7_" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735831.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3BF06D9C5D3F6484F6DDE14FB3E8F39C/Machu_Picchu_-yhtye_tietokirjailija_Jaana_Kanninen" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": { "fi": "12 €", "en": "12 €" }, "description": null, "info_url": { "fi": "https://hiff.fi/liput/", "en": "https://hiff.fi/liput/" } } ], "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", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736999.jpg", "name": "", "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" }, "location_extra_info": null, "provider": { "fi": "Helsinki International Film Festival – Rakkautta & Anarkiaa", "en": "Helsinki International Film Festival – Love & Anarchy" }, "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_" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": { "fi": "8 €" }, "description": null, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/" } } ], "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", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735132.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/699C0411BBD66CD73B8A8B02BF76055F/Kesyttamaton_12_" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734249.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_734248.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735479.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/A6CC0BA69D998986A7113D5F61269A27/Helsinki_Design_Week_Visioita_tulevaisuuden_kaduista" }, "short_description": { "fi": "Kuinka muotoillaan tulevaisuuden katu? Miten muotoilulla voidaan lisätä kaupungin viihtyisyyttä? Mitä kaupunkimuotoilijat tekevät?" }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728463.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_727785.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "https://www.helmet.fi/download/noname/{7AF5225E-FED0-4079-B8EC-21946D260714}/107315", "name": "", "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" }, "location_extra_info": null, "provider": null, "info_url": null, "short_description": { "fi": "Tervetuloa tekemään digimaalauksen keinoin joulukoristeita ja -kortteja Pähkinärinteen kirjastolle!" }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731903.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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_" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": { "fi": "23 €", "sv": "23 €", "en": "23 €" }, "description": null, "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/" } } ], "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", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730696.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "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" }, "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." }, "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>" }, "provider_contact_info": null, "@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": [], "price": null, "description": null, "info_url": 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", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733022.jpg", "name": "", "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" }, "location_extra_info": null, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/EFE490F953F75B7EDD7EDBBB5422C3C4/Lintuja_ja_liskoja_keramiikan_perhekurssi" }, "short_description": { "fi": "Tule tekemään savesta lintuja, liskoja ja muita mielenkiintoisia eläimiä." }, "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>" }, "provider_contact_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60399/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }