Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default 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&is_free=true&page=213
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=214", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=212" }, "data": [ { "id": "kulke:65847", "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:31/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 408696, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T09:13:51.644931Z", "last_modified_time": "2025-03-26T09:13:51.644947Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767652.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408696/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-26T09:13:51.625012Z", "last_modified_time": "2025-03-26T09:13:51.684127Z", "date_published": null, "start_time": "2025-04-24T13:30:00Z", "end_time": "2025-04-24T15:30: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, "provider_contact_info": null, "short_description": { "fi": "Are you a foreign-born artist living in Finland? Come and join our free art workshops!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BD1A96E02D172D3E681CC1F4D6794FCA/Art_workshops_for_foreign-born_artists", "sv": "http://www.stoa.fi/sv/evenemang/event/BD1A96E02D172D3E681CC1F4D6794FCA/Art_workshops_for_foreign-born_artists", "en": "http://www.stoa.fi/en/events/event/BD1A96E02D172D3E681CC1F4D6794FCA/Art_workshops_for_foreign-born_artists" }, "name": { "fi": "Art workshops for foreign-born artists", "sv": "Art workshops for foreign-born artists", "en": "Art workshops for foreign-born artists" }, "description": { "fi": "<p>Are you a foreign-born artist living in Finland? Come and join our free art workshops!</p><p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>", "sv": "<p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>", "en": "<p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65847/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65846", "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:31/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 408695, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T09:13:50.954399Z", "last_modified_time": "2025-03-26T09:13:50.954414Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767650.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408695/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-26T09:13:50.936846Z", "last_modified_time": "2025-03-26T09:13:50.991450Z", "date_published": null, "start_time": "2025-04-17T12:00:00Z", "end_time": "2025-04-17T14: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, "provider_contact_info": null, "short_description": { "fi": "Are you a foreign-born artist living in Finland? Come and join our free art workshops!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/75CBBB9FC7BED95826AF31B5D263E74A/Art_workshops_for_foreign-born_artists", "sv": "http://www.stoa.fi/sv/evenemang/event/75CBBB9FC7BED95826AF31B5D263E74A/Art_workshops_for_foreign-born_artists", "en": "http://www.stoa.fi/en/events/event/75CBBB9FC7BED95826AF31B5D263E74A/Art_workshops_for_foreign-born_artists" }, "name": { "fi": "Art workshops for foreign-born artists", "sv": "Art workshops for foreign-born artists", "en": "Art workshops for foreign-born artists" }, "description": { "fi": "<p>Are you a foreign-born artist living in Finland? Come and join our free art workshops!</p><p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>", "sv": "<p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>", "en": "<p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65846/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65845", "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:31/?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/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 408694, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-26T09:13:46.482389Z", "last_modified_time": "2025-03-26T09:13:46.482410Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767648.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/408694/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-26T09:13:46.442700Z", "last_modified_time": "2025-03-26T09:13:46.543597Z", "date_published": null, "start_time": "2025-03-27T13:00:00Z", "end_time": "2025-03-27T15: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, "provider_contact_info": null, "short_description": { "fi": "Are you a foreign-born artist living in Finland? Come and join our free art workshops!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/0532D36CD9293759C0C5BE87F7643BD9/Art_workshops_for_foreign-born_artists", "sv": "http://www.stoa.fi/sv/evenemang/event/0532D36CD9293759C0C5BE87F7643BD9/Art_workshops_for_foreign-born_artists", "en": "http://www.stoa.fi/en/events/event/0532D36CD9293759C0C5BE87F7643BD9/Art_workshops_for_foreign-born_artists" }, "name": { "fi": "Art workshops for foreign-born artists", "sv": "Art workshops for foreign-born artists", "en": "Art workshops for foreign-born artists" }, "description": { "fi": "<p>Are you a foreign-born artist living in Finland? Come and join our free art workshops!</p><p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>", "sv": "<p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>", "en": "<p>We are organizing music and visual art workshops between March -May 2025 aimed at artists who have moved to Finland from abroad. Also local born artists are welcome.<br>Artists with background in any field of art are welcome (dance, theatre, literature, music, visual arts etc.).</p><p>The first workshop starts Thursday 27.3.2025!<br>Register now: https://forms.gle/9BqZ6MET9KHSyXy96</p><p>The workshops offer the opportunity to meet other artists and network at the same time. Depending on your schedule, you can participate several times or just once.<br>More information in Finnish and English: https://www.myllyteatteri.fi/taidetyopajat/</p><p><b>Open comic art workshops</b><br>In the workshop we make small exercises together about comic scripts and ideas for a comic story.<br>You don’t need to have any experience in drawing or comics. Workshops are open to adults. We are offering all the tools so you can just bring yourself.<br>Location: Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p><b>Workshop facilitator:</b><br>Suvi Ermilä (b. 1985 in Tampere) is a visual artist based in Helsinki. She often works with Indian ink, drawing nib and brush. Her recent comics deal with miscommunication, feelings of not belonging and family dynamics, often mixing comic and sad undertones. She has published three comic books: Vastaanottokeskus (Suuri Kurpitsa 2021), Jälki (Suuri Kurpitsa 2018) ja Hauho (Suuri Kurpitsa 2017). “Vastaanottokeskus” won the Comics Finlandia prize for the best book of 2022.<br> <br><b>Open Music Workshop</b><br>The workshops will focus on singing together, community through music, physicality and movement in space. The workshops offer an opportunity to meet and get to know each other through music and to strengthen the cultural dialogue between the different participants.</p><p><b>Workshop facilitator:</b><br>Marouf Majidi is a versatile music professional who works as a performer, composer and bandleader. He has studied Kurdish and Persian music, as well as Finnish folk music at the Sibelius Academy. Marouf specialises in rhythm music from the Middle East and North Africa. He is the artistic director of the Me Jam festival, which emphasises intercultural dialogue and music’s ability to bring together many different artistic disciplines.</p><p>Location. Cultural Centre Stoa (Turunlinnantie 1, Itäkeskus)<br>Thursday 27.3. at 15 – 17<br>Thursday 17.4. at 15 – 17<br>Thursday 24.4. at 16:30 – 18:30</p><p>The project is funded by TAIKE (Arts Promotion Centre Finland)</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65845/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65841", "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: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:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 398501, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-24T15:13:41.497894Z", "last_modified_time": "2025-03-24T15:13:41.497910Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760162.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/398501/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-24T15:13:41.434013Z", "last_modified_time": "2025-03-25T17:13:46.568803Z", "date_published": null, "start_time": "2025-04-23T15: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, "provider_contact_info": null, "short_description": { "fi": "Catwalkin menestyksen jälkeen Glada Hudik -teatterin Emma Örtlund ja Ida Johansson ovat kaksi Ruotsin rakastetuimpia elokuvapersoonia.", "sv": "Efter succén med Catwalk är Emma Örtlund och Ida Johansson från Glada Hudik-teatern två av Sveriges mest älskade filmpersonligheter.", "en": "A journey back to a dark time in Swedish history is the theme of ‘It Could Have Been Us’." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9B46C16431CEC65EBB97FDCB3DED67EF/Det_kunde_varit_vi_12_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9B46C16431CEC65EBB97FDCB3DED67EF/Det_kunde_varit_vi_12_", "en": "http://www.vuotalo.fi/en/events/event/9B46C16431CEC65EBB97FDCB3DED67EF/It_Could_Have_Been_Us_12_" }, "name": { "fi": "Det kunde varit vi (12) – Onsdagsbio", "sv": "Det kunde varit vi (12) – Onsdagsbio", "en": "It Could Have Been Us (12) – Onsdagsbio" }, "description": { "fi": "<p>Catwalkin menestyksen jälkeen Glada Hudik -teatterin Emma Örtlund ja Ida Johansson ovat kaksi Ruotsin rakastetuimpia elokuvapersoonia.</p><p>Nyt he ovat palanneet elokuvaan It Could Have Been Us. Vanhentuneella matkailuautolla he lähtivät yhdessä Pär Johanssonin kanssa selvittämään, millaista oli elää kehitysvammaisena toisena aikana. Aikana, jolloin Ruotsissa oli maailman johtava rotututkimus ja Vipeholmin vankilassa tehtiin kauheita kokeita.</p><p>Matkan aikana Emmaa, Idaa ja Päriä auttavat muun muassa Ola Larsmo, Elin Bommenel ja Kalle Lind.</p><p>Ohjaus: Björn Tjärnberg<br>Genre: dokumentti<br>Kieli: Ruotsi<br>Tekstitys: Ruotsi<br>Kesto: 90 min<br>Ikäraja: K12</p><p>Vapaa pääsy!</p>", "sv": "<p>Efter succén med Catwalk är Emma Örtlund och Ida Johansson från Glada Hudik-teatern två av Sveriges mest älskade filmpersonligheter.</p><p>Nu följer vi med dem på en annan spännande resa, lika gripande som underhållande. I en bedagad husbil ger de sig ut på vägarna tillsammans med Glada Hudik-teaterns grundare Pär Johansson, för att ta reda på hur det var att leva med en intellektuell funktionsnedsättning i en annan tid. En tid då Sverige var världsledande inom rasforskning och det utfördes fruktansvärda experiment på funktionsnedsatta på Vipeholmsanstalten.</p><p>Under resan får Emma, Ida och Pär hjälp av experter som Ola Larsmo, Elin Bommenel, Göran Rosenberg och Kalle Lind för att förstå vad som kan hända om vi glömmer alla människors lika värde och begår samma förödande misstag igen. Det kunde varit vi är en berättelse om upprättelse, men också om mod och livsglädje.</p><p>Manus och regi: Björn Tjärnberg<br>Genre: dokumentär<br>Språk: Svenska<br>Textning: Svenska<br>Långd: 90 min<br>Åldersgräns: F12</p><p>Fritt inträde!</p>", "en": "<p>A journey back to a dark time in Swedish history is the theme of ‘It Could Have Been Us’.</p><p>Presented by Emma Örtlund and Ida Johansson, stars of Viaplay’s Kristallen-nominated feature ‘Catwalk’, ‘It Could Have Been Us’ relates the experiences of people with disabilities who were confined to institutions across the country from the start of the 20th century.</p><p>The film is directed by award-winning filmmaker Björn Tjärnberg and will premiere exclusively on Viaplay in 2023.</p><p>Together with Pär Johansson, founder of the renowned Swedish theatre group Glada Hudik, Emma and Ida meet relatives of those affected, along with expert researchers. They share the true story of Olle, a young man who wrote moving letters to his mother from Lund’s Vipeholm facility – and cast unsettling light on events that to this day remain largely unknown to a broad audience.</p><p>Direction: Björn Tjärnberg<br>Genre: documentary<br>Language: Swedish<br>Subtitles: Swedish<br>Duration: 90 min<br>Age limit 12 yrs</p><p>Free entry!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65841/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65852", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 404071, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-25T14:14:00.875204Z", "last_modified_time": "2025-03-25T14:14:00.875219Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764760.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/404071/?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": "2025-03-25T14:14:00.835839Z", "last_modified_time": "2025-03-25T17:13:43.136657Z", "date_published": null, "start_time": "2025-04-02T06: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, "provider_contact_info": null, "short_description": { "fi": "Håkan Bråkan passas av världens, enligt honom, tråkigaste barnvakt och han måste rymma därifrån för att vinna årets viktigaste dataspelstävling.", "sv": "Håkan Bråkan passas av världens, enligt honom, tråkigaste barnvakt och han måste rymma därifrån för att vinna årets viktigaste dataspelstävling." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/83D69308B806D034D501065170D6C74F/Hakan_Brakan", "sv": "http://www.vuotalo.fi/sv/evenemang/event/83D69308B806D034D501065170D6C74F/Hakan_Brakan" }, "name": { "fi": "Håkan Bråkan – Skolbio", "sv": "Håkan Bråkan – Skolbio" }, "description": { "fi": "<p>Håkan Bråkan passas av världens, enligt honom, tråkigaste barnvakt och han måste rymma därifrån för att vinna årets viktigaste dataspelstävling.</p><p>Håkan Bråkan on omasta mielestään maailman tylsimmän lapsenvahdin Amandan hoivissa, ja sieltä on ihan pakko karata voittamaan vuoden tärkein tietokonepelikilpailu! Näin käynnistyy väärinkäsitysten sarja, joka vie Håkanin törmäyskurssille ikävän murtovarasliigan kanssa. Varkaiden päihittämiseksi Håkanin pitää soveltaa pelitaitojaan tosielämään. Onnistuminen ei takaisi hänelle pelkästään pelirauhaa - samalla hän pelastaisi koko naapuruston ja oman tulevaisuutensa.</p><p>Ohjaus: Ted Kjellsson. Rooleissa: Silas Strand, Sissela Benn och Fredrik Hallgren, Per Andersson, Yussra EL Abdouni m.fl. Kesto: 90 min. <br>Kieli: Ruotsi. <br>Ikä: S</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p><p>Vapaa pääsy. Koululuokille ja muille ryhmille paikanvaraus @ Kultus.fi</p>", "sv": "<p>Håkan Bråkan passas av världens, enligt honom, tråkigaste barnvakt och han måste rymma därifrån för att vinna årets viktigaste dataspelstävling.</p><p>Det är starten på en serie missförstånd där Håkan hamnar på kollisionskurs med en härjande inbrottsliga.</p><p>Regi: Ted Kjellsson. I rollerna: Silas Strand, Sissela Benn och Fredrik Hallgren, Per Andersson, Yussra EL Abdouni m.fl.</p><p>Längd: 90 min. <br>Språk: Svenska. <br>Ålder: T <br>Fritt inträde.</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p><p>Fri entré, obligatorisk platsbokning för skolklasser och andra grupper via Kultus.fi.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65852/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65718", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 330627, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-12T13:14:58.331721Z", "last_modified_time": "2025-03-12T13:14:58.331737Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764096.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330627/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-12T13:14:58.293692Z", "last_modified_time": "2025-03-25T15:13:46.293419Z", "date_published": null, "start_time": "2025-04-09T15: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, "provider_contact_info": null, "short_description": { "fi": "Tule Vuosaliin katsomaan upeita luontokuvia ja kuulemaan hyvät vinkit luonnossa kuvaamiseen. Luontovalokuvaus on harrastus, jos sopii ihan kaikille!", "sv": "Kom till Nordsalen för att titta på fina naturbilder och få tips om hur man fotograferar naturen. Naturfotografering är en hobby som passar alla!", "en": "Come to Vuosali Hall to marvel at gorgeous nature photographs and hear tips on photography in the wild. Nature photography is a fun hobby for everyone!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/9592FD807C1FB6A13D645555E30451CE/Luontovalokuvaus_Vuoden_Luontokuva_2024_-kilpailun_parhaat", "sv": "http://www.vuotalo.fi/sv/evenemang/event/9592FD807C1FB6A13D645555E30451CE/Naturfotografering_De_basta_bilderna_fran_tavlingen_Arets_naturbild_2024", "en": "http://www.vuotalo.fi/en/events/event/9592FD807C1FB6A13D645555E30451CE/Nature_photography_the_best_of_the_nature_photograph_of_the_year_competition_2024" }, "name": { "fi": "Luontovalokuvaus + Vuoden Luontokuva 2024 -kilpailun parhaat – Muuttolinnut-näyttelyn oheisohjelmaa", "sv": "Naturfotografering + De bästa bilderna från tävlingen Årets naturbild 2024 – Program i samband med utställningen om flyttfåglar", "en": "Nature photography + the best of the nature photograph of the year competition 2024 – Side programme for the ‘Muuttolinnut’ (Migratory birds) exhibition" }, "description": { "fi": "<p>Tule Vuosaliin katsomaan upeita luontokuvia ja kuulemaan hyvät vinkit luonnossa kuvaamiseen. Luontovalokuvaus on harrastus, jos sopii ihan kaikille!</p><p>Suomen Luonnonvalokuvaajat SLV ry:n puheenjohtaja Pirjo Lindfors esittelee yhdistyksen toimintaa sekä kertoo Vuoden Luontokuva -kilpailusta. Tilaisuudessa nähdään Vuoden Luontokuva 2024 -kilpailun parhaimpia kuvia Vuosalin suurelta valkokankaalta, videon kesto on 25 minuuttia.</p><p>Suomen Luonnonvalokuvaajat yhdistyksen ydintavoitteena on tarjota mahdollisimman monelle luontokuvauksesta kiinnostuneelle tietoja ja taitoja onnistuneeseen ja vastuulliseen kuvaamiseen sekä tehdä työtä luonnon ja sen monimuotoisuuden turvaamiseksi. Yhdistykseen ovat tervetulleita kaikki luontokuvauksesta kiinnostuneet.</p><p>Yhdistyksen tunnetuin toimintamuoto on vuosittain järjestettävä Vuoden Luontokuva -kilpailu. Siihen ovat tervetulleita mukaan kaikki luonnonkuvaajat. Kilpailun tavoitteena on nostaa valokeilaan suomalainen luonto ja vuoden parhaat valokuvat suomalaisesta luonnosta – sen kaikessa kauneudessa ja monimuotoisuudessa.</p><p>Kesto: noin 1 tunti<br>Kieli: suomi<br>Vapaa pääsy</p>", "sv": "<p>Kom till Nordsalen för att titta på fina naturbilder och få tips om hur man fotograferar naturen. Naturfotografering är en hobby som passar alla!</p><p>Finlands Naturfotografer SLV rf:s ordförande Pirjo Lindfors presenterar föreningens verksamhet och berättar om tävlingen Årets naturbild. Under evenemanget får vi se de bästa bilderna från tävlingen Årets naturbild 2024 på Nordsalens stora vita duk. Videon är 25 minuter lång.</p><p>Föreningen Finlands Naturfotografers centrala mål är att erbjuda kunskap och färdigheter för lyckad och ansvarsfull fotografering till så många som möjligt som är intresserade an naturfotografering samt att arbeta för att trygga naturen och dess mångfald. Alla som är intresserade av naturfotografering är välkomna till föreningen. <br>Föreningens mest kända verksamhetsform är den årliga tävlingen</p><p>Årets naturbild. Alla naturfotografer är välkomna att delta i tävlingen. Tävlingens mål är att lyfta fram den finländska naturen och årets bästa fotografier av den – i all dess skönhet och mångfald.</p><p>Längd cirka 1 h<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>Come to Vuosali Hall to marvel at gorgeous nature photographs and hear tips on photography in the wild. Nature photography is a fun hobby for everyone!</p><p>Suomen Luonnonvalokuvaajat SLV ry Chair Pirjo Lindfors presents the association’s activities and the ‘Vuoden Luontokuva’ (nature photograph of the year) competition. The best of the ‘Vuoden Luontokuva 2024’ competition will be projected onto the large screen in Vuosali Hall; the duration of the video is approximately 25 minutes.</p><p>The core objective of the Suomen Luonnonvalokuvaajat association is to provide information and know-how to as many people interested in nature photography as possible to enable successful and responsible photography and to work for the benefit of nature and natural diversity. Anyone interested in nature photography is welcome to join the association.</p><p>The association's most well-known form of activity is the ‘Vuoden Luontokuva’ nature photography competition. All nature photographers are invited to participate. The objective of the competition is to shine a spotlight on Finnish nature and the best nature photographs taken of Finnish nature – in all its beauty and diversity.</p><p>Duration: approximately 1 hour<br>Language: Finnish<br>Free entrance</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65718/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65709", "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: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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 320897, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-10T15:16:08.183583Z", "last_modified_time": "2025-03-10T15:16:08.183606Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765630.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/320897/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-10T15:16:08.155175Z", "last_modified_time": "2025-03-25T14:14:05.494391Z", "date_published": null, "start_time": "2025-04-29T11: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, "provider_contact_info": null, "short_description": { "fi": "Matinea-luennolla kokeneet luontokuvaajat Arno Rautavaara ja Pirjo Lindfors kertovat valokuvaamisesta ja luonnossa liikkumisesta.", "sv": "I den här matinéföreläsningen berättar de erfarna naturfotograferna Arno Rautavaara och Pirjo Lindfors om fotografering och hur man rör sig i naturen.", "en": "Experienced nature photographers Arno Rautavaara and Pirjo Lindfors talk about nature photography and walking in nature in this afternoon lecture." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/0C33FCD35AF9D76E88019DAFDFDC68D3/Lintukuvia_Suomenlahdelta_-luento", "sv": "http://www.vuotalo.fi/sv/evenemang/event/0C33FCD35AF9D76E88019DAFDFDC68D3/Forelasning_Lintukuvia_Suomenlahdelta", "en": "http://www.vuotalo.fi/en/events/event/0C33FCD35AF9D76E88019DAFDFDC68D3/Lecture_Lintukuvia_Suomenlahdelta" }, "name": { "fi": "Lintukuvia Suomenlahdelta -luento – Muuttolinnut-näyttelyn oheisohjelmaa / tiistaimatinea", "sv": "Föreläsning: Lintukuvia Suomenlahdelta – Program i samband med utställningen om flyttfåglar", "en": "Lecture: Lintukuvia Suomenlahdelta – Side programme for the ‘Muuttolinnut’ (Migratory birds) exhibition" }, "description": { "fi": "<p>Matinea-luennolla kokeneet luontokuvaajat Arno Rautavaara ja Pirjo Lindfors kertovat valokuvaamisesta ja luonnossa liikkumisesta.</p><p>Pääsemme näkemään upeita kuvia ja kuulemaan tarinoita niiden takana. Valokuvaus on harrastus, jonka voi aloittaa missä iässä tahansa!</p><p>Arno Rautavaara on eläkkeellä oleva helsinkiläinen biologi, tietokirjatoimittaja ja luontokuvaaja, joka aloitti luonnon valokuvaamisen vuonna 1963. Hän on kotimaassa kuvannut ensisijaisesti merensaariston lintuja, kasveja ja maisemia. Rautavaara on pitänyt omia näyttelyitä Suomessa ja Virossa sekä osallistunut yhteisnäyttelyihin. Hän on pitänyt kuvaesityksiä Suomessa ja Ruotsissa sekä julkaissut kuviaan lukuisissa kirjoissa ja lehdissä. Hän on Suomen luonnonvalokuvaajat ry:n perustaja- ja kunniajäsen sekä Suomen ammattiluontokuvaajat ry:n jäsen. Vuonna 1984 Rautavaaralle myönnettiin Valokuvataiteen valtionpalkinto.</p><p>Suomen Luonnonvalokuvaajat SLV ry:n puheenjohtaja Pirjo Lindfors kertoo yhdistyksen toiminnasta ja luonnossa kuvaamisen eettisistä periaatteista.</p><p>Tilaisuus kestää noin tunnin.<br>Kieli: suomi<br>Vapaa pääsy!</p>", "sv": "<p>I den här matinéföreläsningen berättar de erfarna naturfotograferna Arno Rautavaara och Pirjo Lindfors om fotografering och hur man rör sig i naturen.</p><p>Vi får se fantastiska bilder och höra historierna bakom dem. Fotografering är en hobby som man kan börja med i vilken ålder som helst!</p><p>Arno Rautavaara är en pensionerad biolog, fackboksredaktör och naturfotograf från Helsingfors, som började fotografera naturen 1963. Här i Finland har han främst fotograferat fåglar, växter och landskap i skärgården. Rautavaara har hållit egna utställningar i Finland och Estland samt deltagit i gemensamma utställningar. Han har också ordnat bildvisningar i Finland och Sverige samt publicerat sina bilder i många böcker och tidningar. Han är grundare och hedersmedlem i Finlands Naturfotografer rf och medlem i Yrkesnaturfotografer i Finland SAL rf. Rautavaara tilldelades statspriset i fotokonst år 1984.</p><p>Finlands Naturfotografer SLV rf:s ordförande Pirjo Lindfors berättar om föreningens verksamhet och etiska principer för fotografering i naturen.</p><p>Längd: cirka 1 h<br>Språk: finska</p><p>Fritt inträde</p>", "en": "<p>Experienced nature photographers Arno Rautavaara and Pirjo Lindfors talk about nature photography and walking in nature in this afternoon lecture.</p><p>Attendees will have the chance to see wonderful photographs and hear the stories behind them. Photography is a hobby that you can start at any age!</p><p>Arno Rautavaara is a Helsinki-based retired biologist, non-fiction book editor and nature photographer who started photographing nature in 1963. In Finland, he has primarily photographed birds, plants and landscapes in the archipelago. Rautavaara has had solo exhibitions in Finland and Estonia and he has participated in joint exhibitions. He has presented slideshows in Finland and Sweden and his images have been published in numerous books and magazines. He is a founding and honorary member of the Suomen luonnonvalokuvaajat ry association for Finnish nature photographers and a member of the Suomen ammattiluontokuvaajat ry association for professional Finnish nature photographers. Rautavaara was awarded the State Prize for Photographic Art in 1984.</p><p>Chair of Suomen Luonnonvalokuvaajat SLV ry, Pirjo Lindfors, talks about the activities of the association and the ethical principles of nature photography.</p><p>Duration: approximately 1 hour.<br>Language: Finnish<br>Free entrance</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65709/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65708", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 320896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-10T15:16:00.361089Z", "last_modified_time": "2025-03-10T15:16:00.361108Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765631.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/320896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-10T15:16:00.302456Z", "last_modified_time": "2025-03-25T14:14:00.652827Z", "date_published": null, "start_time": "2025-04-01", "end_time": "2025-06-12", "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, "provider_contact_info": null, "short_description": { "fi": "Arno Rautavaara on eläkkeellä oleva helsinkiläinen biologi, tietokirjatoimittaja ja luontokuvaaja, joka aloitti luonnon valokuvaamisen vuonna 1963.", "sv": "Arno Rautavaara är en pensionerad biolog, fackboksredaktör och naturfotograf från Helsingfors, som började fotografera naturen 1963.", "en": "Arno Rautavaara is a Helsinki-based retired biologist, non-fiction book editor and nature photographer who started photographing nature in 1963." }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/33671E26565E24B5178A2AA62F529F9F/Arno_Rautavaara_Lintukuvia_Suomenlahdelta", "sv": "http://www.vuotalo.fi/sv/evenemang/event/33671E26565E24B5178A2AA62F529F9F/Arno_Rautavaara_Fagelbilder_fran_Finska_viken", "en": "http://www.vuotalo.fi/en/events/event/33671E26565E24B5178A2AA62F529F9F/Arno_Rautavaara_Images_of_birds_in_the_Gulf_of_Finland" }, "name": { "fi": "Arno Rautavaara: Lintukuvia Suomenlahdelta – Muuttolinnut-näyttelyn oheisohjelmaa", "sv": "Arno Rautavaara: Fågelbilder från Finska viken – Program i samband med utställningen om flyttfåglar", "en": "Arno Rautavaara: Images of birds in the Gulf of Finland – Side programme for the ‘Muuttolinnut’ (Migratory birds) exhibition" }, "description": { "fi": "<p>Arno Rautavaara on eläkkeellä oleva helsinkiläinen biologi, tietokirjatoimittaja ja luontokuvaaja, joka aloitti luonnon valokuvaamisen vuonna 1963.</p><p>Hän on kotimaassa kuvannut ensisijaisesti merensaariston lintuja, kasveja ja maisemia. Hän on lapsuudesta saakka viettänyt kesiä perheen kesämaisemissa Kotkan Mussalossa, mistä käsin hän on liikkunut kuvausreissuilla Itäisellä Suomenlahdella.</p><p>Erityisen mieluisana kuvauspaikkana hän on pitänyt Loviisan Pernajassa sijaitsevaa Aspskärin linnustonsuojelualuetta, missä hän on oleskellut eri vuodenaikoina yli 50 vuoden ajan. Suurin osa tämän Vuotalon esityksen kuvista on otettu juuri Aspskärissä ja sen lähisaarilla.</p><p>Kotimaan lisäksi Rautavaara on tehnyt kuvausmatkoja eri puolille maapalloa, esimerkiksi Huippuvuorille, Islantiin, Tansaniaan, Galapagossarille, Patagoniaan ja Etelämantereelle.<br>Rautavaara on pitänyt omia näyttelyitä Suomessa ja Virossa sekä osallistunut yhteisnäyttelyihin, Hän on pitänyt kuvaesityksiä Suomessa ja Ruotsissa sekä julkaissut kuviaan lukuisissa kirjoissa ja lehdissä.</p><p>Hän on Suomen luonnonvalokuvaajat ry:n perustaja- ja kunniajäsen sekä Suomen ammattiluontokuvaajat ry:n jäsen. Vuonna 1984 Rautavaaralle myönnettiin Valokuvataiteen valtionpalkinto.</p><p>Kuvaesitys on nähtävissä Vuotalon aulassa. Se on osa kevään prosessinäyttelyn ohjelmaa, jonka teemana on muuttolinnut.</p><p>Arno Rautavaara luennoi Vuotalolla lintukuvaamisesta yhdessä Suomen Luonnonvalokuvaajat SLV ry:n puheenjohtaja Pirjo Lindforsin kanssa 29.4. klo 14–15.</p><p>Tapahtumiin on vapaa pääsy!</p>", "sv": "<p>Arno Rautavaara är en pensionerad biolog, fackboksredaktör och naturfotograf från Helsingfors, som började fotografera naturen 1963.</p><p>Här i Finland har han främst fotograferat fåglar, växter och landskap i skärgården. Han har sedan barnsben tillbringat sina somrar vid familjens sommarställe på Mussalö i Kotka, som också varit hans bas för fotograferingsutflykter i östra Finska viken. En fotograferingsplats som han har uppskattat särskilt mycket är Aspskärs fågelskyddsområde i Pernå, Lovisa, där han har vistats under olika årstider i över 50 års tid. Största delen av de bilder som ställs ut på Nordhuset är tagna just på Aspskär och närliggande öar.</p><p>Förutom i Finland har Rautavaara rest till olika delar av världen för att fotografera, till exempel till Svalbard, Island, Tanzania, Galapagosöarna, Patagonien och Antarktis.</p><p>Rautavaara har hållit egna utställningar i Finland och Estland samt deltagit i gemensamma utställningar. Han har också ordnat bildvisningar i Finland och Sverige samt publicerat sina bilder i många böcker och tidningar.</p><p>Han är grundare och hedersmedlem i Finlands Naturfotografer rf och medlem i Yrkesnaturfotografer i Finland SAL rf. Rautavaara tilldelades statspriset i fotokonst år 1984.</p><p>Fotoutställningen visas i Nordhusets entré. Den ingår i programmet för vårens processutställning på temat flyttfåglar.</p><p>Arno Rautavaara föreläser på Nordhuset om fågelfotografering tillsammans med Finlands Naturfotografer SLV rf:s ordförande Pirjo Lindfors den 29 april kl. 14–15.</p><p>Evenemangen har fritt inträde.</p>", "en": "<p>Arno Rautavaara is a Helsinki-based retired biologist, non-fiction book editor and nature photographer who started photographing nature in 1963.</p><p>In Finland, he has primarily photographed birds, plants and landscapes in the archipelago. Since childhood, he has spent summers at the family’s summer place in Mussalo in Kotka, from where he has moved around on the eastern Gulf of Finland on his photography expeditions. He has grown especially fond of taking photographs in the Aspskär bird conservation area in Pernaja in Loviisa, which he has visited in different seasons for more than 50 years. Most of the photographs in this Vuosaari House exhibition were taken in Aspskär and the surrounding islands.</p><p>In addition to Finland, Rautavaara has also travelled the globe taking photographs, including to Svalbard, Iceland, Tanzania, the Galápagos Islands, Patagonia and Antarctica.</p><p>Rautavaara has had solo exhibitions in Finland and Estonia and he has participated in joint exhibitions. He has presented slideshows in Finland and Sweden and his images have been published in numerous books and magazines.</p><p>He is a founding and honorary member of the Suomen luonnonvalokuvaajat ry association for Finnish nature photographers and a member of the Suomen ammattiluontokuvaajat ry association for professional Finnish nature photographers. Rautavaara was awarded the State Prize for Photographic Art in 1984.</p><p>The slideshow is presented in the lobby of Vuosaari House. It is part of the programme for the spring’s process exhibition centred around migratory birds.</p><p>Arno Rautavaara will be giving a lecture on bird photography at Vuosaari House together with the chair of Suomen Luonnonvalokuvaajat SLV ry, Pirjo Lindfors, on 29 April at 14.00–15.00</p><p>Entry to the events is free of charge.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65708/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65771", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 357700, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-17T12:14:54.263540Z", "last_modified_time": "2025-03-17T12:14:54.263554Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767367.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/357700/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-17T12:14:54.218354Z", "last_modified_time": "2025-03-25T10:13:56.187636Z", "date_published": null, "start_time": "2025-03-31T11:00:00Z", "end_time": "2025-03-31T14: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, "provider_contact_info": null, "short_description": { "fi": "Stoa juhlistaa ramadanin eli islamilaisen paastokuukauden päättymistä kutsumalla kaikki viettämään iloista yhteistä aikaa. Tapahtuma tarjoaa monipuolista ohjelmaa koko perheelle.", "sv": "Kulturcentret Stoa firar slutet på den islamska fastemånaden Ramadan med en fest för alla.", "en": "You are warmly invited to celebrate the end of Ramadan at Stoa on Monday, March 31, 2025, from 2 PM to 5 PM!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3B3328B15936BA626D6D64823C8831C1/Stoan_Eid-juhla", "sv": "http://www.stoa.fi/sv/evenemang/event/3B3328B15936BA626D6D64823C8831C1/Vi_firar_Eid_i_Stoa", "en": "http://www.stoa.fi/en/events/event/3B3328B15936BA626D6D64823C8831C1/Eid_Celebration_at_Stoa_" }, "name": { "fi": "Stoan Eid-juhla", "sv": "Vi firar Eid i Stoa", "en": "Eid Celebration at Stoa" }, "description": { "fi": "<p>Stoa juhlistaa ramadanin eli islamilaisen paastokuukauden päättymistä kutsumalla kaikki viettämään iloista yhteistä aikaa. Tapahtuma tarjoaa monipuolista ohjelmaa koko perheelle.</p><p>Tule nauttimaan ohjelmasta, jossa voit tehdä käsin värikkäitä paperikukkia, tutustua monotypiaan ja kasviväreillä taiteiluun, valmistaa kauniita Eid-juhlakortteja, ottaa hauskoja kuvia selfiepisteessä sekä fiilistellä juhlan tunnelmaa Mo Clownin esityksessä ja DJ-setin rytmeissä.</p><p><b>Ohjelma ja aikataulu</b></p><p><b>Klo 14–17</b> <br>•\tPaperikukkien askartelutyöpaja <br>•\tKasviväritaiteilua <br>•\tEid-korttityöpaja <br>•\tJuhlakuvaus selfiepisteessä</p><p><b>Klo 15–15:30</b> <br>•\tMo Clown -esitys</p><p><b>Klo 14–16</b><br>•\tDJ-musiikkia</p><p>Tapahtuma on maksuton ja kaikille avoin. Tervetuloa juhlimaan yhdessä!</p><p>Tapahtuman järjestävät yhteistyössä Kulttuurikeskus Stoa, Itäkeskuksen kirjasto, Helsingin työväenopisto, Nuorten toimintatalo Kipinä ja muut yhteistyökumppanit. <br> <br><b>Mikä on Eid-juhla?</b><br>Eid al-Fitr on islamilainen juhla, jota vietetään ramadanin, paastokuukauden, päättymisen kunniaksi. Juhla kestää useita päiviä ja ajoittuu islamilaisen kalenterin kymmenennen eli shawwal-kuukauden alkuun. Se on muslimeille suuri juhla, joka muistuttaa monilta osin joulun viettoa. Juhlapäivien aikana tavataan ystäviä ja sukulaisia, annetaan lahjoja ja nautitaan yhdessä hyvästä ruoasta.</p><p>Kuvan luomisessa on hyödynnetty tekoälyä.</p>", "sv": "<p>Kulturcentret Stoa firar slutet på den islamska fastemånaden Ramadan med en fest för alla.</p><p>Mångsidigt program för hela familjen utlovas: Ung som gammal är välkommen till glatt umgänge och att knåpa ihop färggranna pappersblommor tillsammans, bekanta sig med monotyp och skapa konst med växtfärger. Eller varför inte skapa festliga Eid-kort att ge till varandra, ta roliga eller högtidliga selfies på det specialdesignade stället och ha festskoj med en föreställning av clownen Mo Clown och i takterna till ett för högtiden passande DJ-set?<br> <br><b>Program och tidtabell</b><br> <br><b>Kl. 14–17</b><br>• Pysselverkstad för pappersblommor <br>• Skapande konst med växtfärger<br>• Eid-kortworkshop<br>• Festligt fototillfälle i selfieområdet<br> <br><b>Kl. 15–15:30</b><br>• Mo Clown-föreställning</p><p><b>Kl. 14–16</b><br>• DJ-musik</p><p>Den festliga tillställningen är gratis och öppen för alla. Välkomna att fira tillsammans!</p><p>Tillställningen är ett samarbete mellan Kulturcentret Stoa, biblioteket i Östra Centrum, det finska arbiset Helsingin työväenopisto, ungdomsverksamheten Nuorten toimintatalo Kipinä och andra samarbetspartner.</p><p><b>Varför och hur firas Eid?</b><br>Fastemånaden Ramadan avslutas med högtiden, festen eid al-fitr. Festen bryter fastan och familjer och vänner firar ofta i flera dagar. Eid infaller i början av den islamska kalenderns tionde månad som kallas shawwal. Den påminner i mångt om julfirande; barn får nya kläder och gåvor eller pengar (eidiyah). Familj, släkt och vänner samlas och äter god mat.</p><p>Bilden har skapats med hjälp av artificiell inteligens.</p>", "en": "<p>You are warmly invited to celebrate the end of Ramadan at Stoa on Monday, March 31, 2025, from 2 PM to 5 PM!</p><p>You are warmly invited to celebrate the end of Ramadan at Stoa on Monday, March 31, 2025, from 2 PM to 5 PM! The event offers fun activities for the whole family, including craft workshops, botanical painting, a festive selfie spot, and an entertaining performance by Mo Clown, all set to the beats of a lively DJ set.</p><p>The entire event is free and open to everyone!</p><p>Restaurant Box Stoa will be open with delicious treats throughout the event.</p><p>This event is organized in collaboration with Stoa Cultural Center, Itäkeskus Library, Helsinki Adult Education Centre, Youth Activity House Kipinä, and other partners. <br> <br>The image was created using AI.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65771/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65686", "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:596/?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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 294089, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-03T14:14:38.097142Z", "last_modified_time": "2025-03-03T14:14:38.097165Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766184.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/294089/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-03T14:14:38.070908Z", "last_modified_time": "2025-03-25T09:15:34.231659Z", "date_published": null, "start_time": "2025-03-27T15:00:00Z", "end_time": "2025-03-27T18: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, "provider_contact_info": null, "short_description": { "fi": "Kevät on melkein täällä ja pian ovat linnutkin pesäpaikkaa vailla. Tule siis Vuotaloon rakentamaan itse linnunpönttö!", "sv": "Våren är snart här, och då behöver fåglarna någonstans att bo. Kom till Nordhuset och bygg din egen fågelholk!", "en": "Spring has almost sprung, and birds are looking for a place to nest. Come along to Vuosaari House and build a birdhouse!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/5A9526825266359F3821C873586DA0D4/Linnunponttopaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/5A9526825266359F3821C873586DA0D4/Fagelholksverkstader", "en": "http://www.vuotalo.fi/en/events/event/5A9526825266359F3821C873586DA0D4/Birdhouse_workshops" }, "name": { "fi": "Linnunpönttöpaja – Muuttolinnut-näyttelyn oheisohjelmaa", "sv": "Fågelholksverkstäder – Program i samband med utställningen om flyttfåglar", "en": "Birdhouse workshops – Side programme for the ‘Muuttolinnut’ (Migratory birds) exhibition" }, "description": { "fi": "<p>Kevät on melkein täällä ja pian ovat linnutkin pesäpaikkaa vailla. Tule siis Vuotaloon rakentamaan itse linnunpönttö!</p><p>Yhteen pajaan mahtuu mukaan kuusi aikuinen + lapsi -paria. Saat tarvittavat materiaalit työpajassa. Pöntön saa valmiiksi ja mukaan heti pajan jälkeen, joten voit jo etukäteen miettiä sille sopivaa paikkaa. <br>Työpaja on osa kevään prosessinäyttelyn ohjelmaa, jonka teemana on muuttolinnut.</p><p>Ilmoittautuminen ja lisätiedustelut: salla.fornaro@hel.fi tai 0405371520</p><p>Yhteistyössä Helsingin Työväenopisto. <br>Kohderyhmä: lapsiperheet, lapset ja isovanhemmat<br>Kieli: suomi<br>Hinta: 0 €</p><p>Paikka: Vuotalon K-kerroksen puupaja</p>", "sv": "<p>Våren är snart här, och då behöver fåglarna någonstans att bo. Kom till Nordhuset och bygg din egen fågelholk!</p><p>Varje verkstad har plats för sex par med en vuxen och ett barn. Du får de material som behövs på plats. Du får ta med dig den färdiga holken hem genast, så du kan på förhand se ut en lämplig plats för den.</p><p>Verkstaden ingår i programmet för vårens processutställning på temat flyttfåglar.</p><p>Anmälningar och mer information: salla.fornaro@hel.fi / 0405371520</p><p>I samarbete med Helsingfors arbetarinstitut.</p><p>Målgrupp: barnfamiljer, barn med mor- och farföräldrar<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>Spring has almost sprung, and birds are looking for a place to nest. Come along to Vuosaari House and build a birdhouse!</p><p>Each workshop accommodates six pairs of one adult + child. All of the necessary materials are provided at the workshop. You can think of a suitable location for the birdhouse in advance because you will be able to complete the birdhouse during the workshop and take it with you.</p><p>The workshop is part of the programme for the spring’s process exhibition centred around migratory birds.</p><p>Sign up and further information: salla.fornaro@hel.fi / 0405371520</p><p>In cooperation with the Finnish Adult Education Centre.</p><p>Target group: families with children, children and grandparents<br>Language: Finnish<br>Free entrance</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65686/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65685", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 294088, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-03T14:14:37.345124Z", "last_modified_time": "2025-03-03T14:14:37.345142Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766183.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/294088/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-03T14:14:37.299109Z", "last_modified_time": "2025-03-25T09:15:33.333216Z", "date_published": null, "start_time": "2025-03-25T15:00:00Z", "end_time": "2025-03-25T18: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, "provider_contact_info": null, "short_description": { "fi": "Kevät on melkein täällä ja pian ovat linnutkin pesäpaikkaa vailla. Tule siis Vuotaloon rakentamaan itse linnunpönttö!", "sv": "Våren är snart här, och då behöver fåglarna någonstans att bo. Kom till Nordhuset och bygg din egen fågelholk!", "en": "Spring has almost sprung, and birds are looking for a place to nest. Come along to Vuosaari House and build a birdhouse!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/262A5844D3E9ABDC651915A931BD87EF/Linnunponttopaja", "sv": "http://www.vuotalo.fi/sv/evenemang/event/262A5844D3E9ABDC651915A931BD87EF/Fagelholksverkstader", "en": "http://www.vuotalo.fi/en/events/event/262A5844D3E9ABDC651915A931BD87EF/Birdhouse_workshops" }, "name": { "fi": "Linnunpönttöpaja – Muuttolinnut-näyttelyn oheisohjelmaa", "sv": "Fågelholksverkstäder – Program i samband med utställningen om flyttfåglar", "en": "Birdhouse workshops – Side programme for the ‘Muuttolinnut’ (Migratory birds) exhibition" }, "description": { "fi": "<p>Kevät on melkein täällä ja pian ovat linnutkin pesäpaikkaa vailla. Tule siis Vuotaloon rakentamaan itse linnunpönttö!</p><p>Yhteen pajaan mahtuu mukaan kuusi aikuinen + lapsi -paria. Saat tarvittavat materiaalit työpajassa. Pöntön saa valmiiksi ja mukaan heti pajan jälkeen, joten voit jo etukäteen miettiä sille sopivaa paikkaa.</p><p>Työpaja on osa kevään prosessinäyttelyn ohjelmaa, jonka teemana on muuttolinnut.</p><p>Ilmoittautuminen ja lisätiedustelut: salla.fornaro@hel.fi tai 0405371520.</p><p>Yhteistyössä Helsingin Työväenopisto. <br>Kohderyhmä: lapsiperheet, lapset ja isovanhemmat<br>Kieli: suomi<br>Hinta: 0 €<br>Paikka: Vuotalon K-kerroksen puupaja</p>", "sv": "<p>Våren är snart här, och då behöver fåglarna någonstans att bo. Kom till Nordhuset och bygg din egen fågelholk!</p><p>Varje verkstad har plats för sex par med en vuxen och ett barn. Du får de material som behövs på plats. Du får ta med dig den färdiga holken hem genast, så du kan på förhand se ut en lämplig plats för den.</p><p>Verkstaden ingår i programmet för vårens processutställning på temat flyttfåglar.</p><p>Anmälningar och mer information: salla.fornaro@hel.fi / 0405371520</p><p>I samarbete med Helsingfors arbetarinstitut.</p><p>Målgrupp: barnfamiljer, barn med mor- och farföräldrar<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>Spring has almost sprung, and birds are looking for a place to nest. Come along to Vuosaari House and build a birdhouse!</p><p>Each workshop accommodates six pairs of one adult + child. All of the necessary materials are provided at the workshop. You can think of a suitable location for the birdhouse in advance because you will be able to complete the birdhouse during the workshop and take it with you.</p><p>The workshop is part of the programme for the spring’s process exhibition centred around migratory birds.</p><p>Sign up and further information: salla.fornaro@hel.fi / 0405371520</p><p>In cooperation with the Finnish Adult Education Centre.</p><p>Target group: families with children, children and grandparents<br>Language: Finnish<br>Free entrance</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65685/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65813", "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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 398502, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-24T15:13:41.643154Z", "last_modified_time": "2025-03-24T15:13:41.643172Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_767539.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/398502/?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": "2025-03-24T15:13:41.603060Z", "last_modified_time": "2025-03-24T15:13:41.704897Z", "date_published": null, "start_time": "2025-04-23T15: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, "provider_contact_info": null, "short_description": { "fi": "Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu jälleen Stoaan! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.", "sv": "Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Stoa. Vi bjuder på en modern tolkning av Karagöz.", "en": "The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Stoa. Karagöz is with you with a modern interpretation." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/2D83195CF5766A46B8A9E18F37B0F6F5/Pizza_Pizza_Karagoz_", "sv": "http://www.stoa.fi/sv/evenemang/event/2D83195CF5766A46B8A9E18F37B0F6F5/Pizza_Pizza_Karagoz_", "en": "http://www.stoa.fi/en/events/event/2D83195CF5766A46B8A9E18F37B0F6F5/Pizza_Pizza_Karagoz" }, "name": { "fi": "Pizza Pizza Karagöz", "sv": "Pizza Pizza Karagöz", "en": "Pizza Pizza Karagöz" }, "description": { "fi": "<p>Vuosisatoja vanha anatolialainen nukketeatteriperinne Karagöz saapuu jälleen Stoaan! Näyttämöllä nähdään siitä nykyaikaan tuotu tulkinta.</p><p>Perinteistä turkkilaista nukketeatteria esitetään nyt ensimmäisen kerran yhdistämällä melkein 700 vanhaa perinnettä moderniin ilmaisuun. Karagöz ja Hacivat ovat tarinan päähenkilöt.</p><p>Tarina saa alkunsa seuraavasti:<br>Karagöz on taas kerran työttömänä, ja Hacivat löytää hänelle työn Suomesta. Karagöz pääsee töihin pitseriaan, jossa hän ottaa vastaan tilauksia. Tilauksia tehdään eri kielillä, ja asiakkailla on monenlaisia erityistoiveita. Karagoziltä menevät kaikki tilaukset sekaisin, ja seuraa suuri sotku. Miten on mahdollista palauttaa järjestys ja sopusointu? Esityksen aiheena on rinnakkaiselo, ja sen metaforana toimii pitsa.</p><p>Pizza Pizza Karagöz on vertauskuvallinen nukketeatteriesitys, joka kuvaa, miten kaikista eri taustoista tulevat ihmiset Suomessa voivat elää rauhassa ja sopusoinnussa eroistaan huolimatta. Pitsan tavoin erilaisista aineksista syntyy herkullinen kokonaisuus.</p><p>Esityksen kieliä ovat ruotsi, somali, arabia ja turkki. Visuaalisesti nautittavaa esitystä täydentävät värikkäät hahmot ja asut esimerkiksi suomalaisesta, romani-, englantilaisesta ja virolaisesta kulttuurista. Karagöz-teatteriperinne nimettiin Unescon ihmiskunnan aineettoman kulttuuriperinnön luetteloon vuonna 2009.</p><p>Esiintyjät: Filiz Aksu, Mustafa Aksu and M.Emin Aksu<br>Kesto: 44 min<br>Ikäsuositus: 5 +<br>Kieli: monikielinen esitys. Kuullaan mm. turkkia, suomea, ruotsia, arabiaa ja viroa.</p>", "sv": "<p>Den 700 år gamla traditionella anatoliska dockteatern ”Karagöz” kommer till Stoa. Vi bjuder på en modern tolkning av Karagöz.</p><p>För första gången intar den traditionella och nästan 700 år gamla dockteatern scenen i en kombination av traditionella och moderna stilar. Karagöz och Hacivat är de två huvudpersonerna. Så här lyder berättelsen: Karagöz är arbetslös, som vanligt, och Hacivat hittar ett jobb till honom i Finland. Karagöz tar emot beställningar på en pizzeria. Beställningarna görs på olika språk och kunderna har olika speciella önskemål. Karagöz blandar ihop alla beställningarna och allt blir en enda röra. Hur ska det kunna bli ordning och harmoni igen? Den här uppvisningen handlar om att samexistera och genom att använda pizza som en metafor.</p><p>Det traditionella verket ”Karagöz” skrevs 2009 in på Unescos (United Nations Educational Scientific and Cultural Organization) representativa lista över mänsklighetens immateriella kulturarv.</p><p>Pizza Pizza Karagöz är en metaforisk dockteater som handlar om att människor av olika ras som bor i Finland kan leva i fred och harmoni. Trots alla skillnader kan vi göra varandra glada i det stora hela, precis som en pizza.</p><p>Föreställningen är svensk, somalisk, irakisk och turkisk.</p><p>Den bjuder på trevliga visuella element bestående av de färggranna personligheterna och dräkterna hos personer från olika kulturer, som exempelvis finsk, engelsk, romsk och estnisk kultur.</p>", "en": "<p>The 700-year-old traditional Anatolian puppet art \"Karagöz\" is coming to Stoa. Karagöz is with you with a modern interpretation.</p><p>A traditional Turkish puppet theatre, nearly 700 years old, takes the stage for the first time combining traditional and modern styles. Karagöz and Hacivat are the two main characters. The story is as follows: Karagöz is unemployed, as always, and Hacivat finds him a job in Finland. Karagöz takes orders in a pizzeria. The orders are made in different languages and the customers have various special requests. Karagöz gets all the orders wrong and things become a mess. How can order and harmony be restored? This is a performance about coexistence which uses pizza as the metaphor.</p><p>The traditional play of Karagöz was inscribed in 2009 on the Representative List of the Intangible Cultural Heritage of Humanity of the United Nations Educational Scientific and Cultural Organization (UNESCO).</p><p>Pizza Pizza Karagöz show is a metaphorical puppet play that tells that people from all different races living in Finland can live in peace and harmony, despite all the differences, we can make each other happy as a whole like a pizza. The show is Swedish, Somali, Iraqi, Turkish. It offers an enjoyable visual with the colorful personalities and costumes of people from different cultures such as Finnish, English, Romani, and Estonian. <br> <br>With: Filiz Aksu, Mustafa Aksu and M.Emin Aksu</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65813/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64946", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 156456, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-17T15:15:37.026894Z", "last_modified_time": "2025-01-17T15:15:37.026913Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761755.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/156456/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-01-17T15:15:36.988608Z", "last_modified_time": "2025-03-24T12:15:26.076265Z", "date_published": null, "start_time": "2025-03-07", "end_time": "2025-03-31", "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, "provider_contact_info": null, "short_description": { "fi": "Valokuvaaja Johannes Romppanen esittelee Caisan Lempeä katse -näyttelyssä henkilökuvia kahdenkymmenen vuoden ajalta.", "sv": "I utställningen Lempeä katse på Caisa presenterar fotografen Johannes Romppanen porträtt från över tjugo års tid.", "en": "Photographer Johannes Romppanen presents portraits from the last twenty years at Caisa’s Lempeä Katse exhibition." }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/D3949738104FD6A62345A2CCFD69A691/Johannes_Romppanen_Lempea_katse", "sv": "http://www.caisa.fi/sv/evenemang/event/D3949738104FD6A62345A2CCFD69A691/Johannes_Romppanen_Lempea_katse_En_vanlig_blick_", "en": "http://www.caisa.fi/en/events/event/D3949738104FD6A62345A2CCFD69A691/Johannes_Romppanen_Lempea_katse_A_gentle_gaze_" }, "name": { "fi": "Johannes Romppanen: Lempeä katse", "sv": "Johannes Romppanen: Lempeä katse (En vänlig blick)", "en": "Johannes Romppanen: Lempeä katse (A gentle gaze)" }, "description": { "fi": "<p>Valokuvaaja Johannes Romppanen esittelee Caisan Lempeä katse -näyttelyssä henkilökuvia kahdenkymmenen vuoden ajalta.</p><p>Valokuvissa korostuvat kuvaajan lempeä katse ja uteliaisuus kuvattavaa kohtaan.</p><p>Lempeä katse on kiinnostava kurkistus valokuvaaja Johannes Romppasen kuva-arkistoihin. Näyttely esittelee läpileikkauksen Romppasen 20-vuotisesta urasta: toimeksiantoja valtion päähenkilöistä kansainvälisille julkaisuille ja palkittuja perhevalokuvia.</p><p>Esillä on monipuolinen valikoima henkilökuvia eri käyttötarkoituksiin ja tarpeisiin: viestintää, journalismia, taidetta, valokuvia yrityksille ja yksityishenkilöille. Näitä kuvia yhdistävät lempeä katse kuvattavaan, uteliaisuus ja valokuvaajan halu tallentaa yhdessä koettu hetki kuvaksi. Henkilökuvauksen ydin on Romppasen mielestä juuri tässä – kahden henkilön kohtaamisessa ja heidän välisessä vuorovaikutuksessa tiettynä hetkenä, tietyssä ajassa ja paikassa.</p><p>Pohdinnat henkilökuvan syvimmästä olemuksesta on vienyt itseoppineen valokuvaajan taideopintojen pariin. Romppanen työstää parhaillaan opinnäytetyötään kuvaajan ja kuvattavan välisestä vuorovaikutuksesta Aalto-yliopistolla. <br>Näyttelyssä tutkitaan myös sitä, miten kuvan materiaalinen olemus vaikuttaa sen kokemiseen: vedostustavat, koko ja materiaalivalinnat vaikuttavat kaikki siihen, miten kuva koetaan tilassa.</p><p>Esimerkiksi vapaasti roikkuvalle kankaalle vedostettu valokuva herättää erilaisia tunteita kuin alumiinille pohjustettu pigmenttivedos. Jokaisella valokuvalla on lukemattomia tapoja tulla nähdyksi ja koetuksi, ja tärkeää on löytää ne ratkaisut, jotka parhaiten tukevat kuvien sisältöä.</p><p>Samaan aikaan Romppanen toteuttaa Suomen valokuvataiteen museoon Kaapelitehtaalla teoksen, joka kutsuu yleisöä osallistumaan viikoittaiseen henkilökuvausprojektiin: keskustelemaan ja luomaan henkilökuvaa. Tämä prosessimainen teos on osa valokuvataiteen opiskelijoiden ryhmänäyttelyä, ja se tarjoaa yleisölle mahdollisuuden osallistua valokuvaajan kanssa yhteistyöhön sekä pohtia omaa suhdettaan henkilökuvaukseen.</p><p>Kulttuurikeskus Caisan näyttelyiden viittomakielinen opastus 15.3.2025 13:00-14:00 / opas Aino Laiho</p>", "sv": "<p>I utställningen Lempeä katse på Caisa presenterar fotografen Johannes Romppanen porträtt från över tjugo års tid.</p><p>Utställningen ger en fascinerande inblick i Johannes Romppanens bildarkiv, den presenterar ett tvärsnitt av hans 20-åriga karriär som innefattar allt från internationella publikationers beställningar av porträtt av statliga ledare till prisbelönta familjeporträtt.</p><p>Utställningen visar ett mångsidigt urval av porträtt för olika ändamål och behov: konst, journalistik, kommunikation, fotografier för företag och privatpersoner. Det som förenar dessa bilder är en mild blick på den som avbildas, nyfikenhet och fotografens önskan att fånga ett gemensamt ögonblick i en bild. Enligt Romppanen är det just detta som är kärnan i ett porträtt – mötet mellan två människor och samspelet mellan dem i ett specifikt ögonblick, under en viss tid på en viss plats.</p><p>Reflektioner över porträttets djupaste väsen har lett den självlärde fotografen till djupare studier i konst. Romppanen arbetar för närvarande med sitt examensarbete vid Aalto-universitetet, med fokus på interaktionen mellan fotografen och den fotograferade.<br>Utställningen undersöker också hur bildens materiella natur påverkar upplevelsen av den: tryckmetoderna, storleken och valet av material påverkar alla hur bilden upplevs i rummet.</p><p>Till exempel väcker ett fotografi som tryckts på en frihängande duk andra känslor än ett pigmenttryck som grundats på aluminium. Varje fotografi har otaliga sätt att ses och upplevas, och det är viktigt att hitta de lösningar som bäst stöder bildernas innehåll.</p><p>Samtidigt skapar Romppanen ett verk på Finlands fotografiska museum på Kabelfabriken som bjuder in publiken att delta i ett veckovist porträttprojekt: att diskutera och skapa ett porträtt. Detta processbaserade verk är en del av en grupputställning med studerande i fotografikonst och ger allmänheten möjlighet att delta i ett samarbete med fotografen och reflektera över sitt eget förhållande till porträtt.</p>", "en": "<p>Photographer Johannes Romppanen presents portraits from the last twenty years at Caisa’s Lempeä Katse exhibition.</p><p>His photographs highlight the photographer’s gentle gaze and curiosity toward the subject.<br>A Gentle Gaze offers an intriguing look into Johannes Romppanen’s photographic archives. The exhibition provides a cross-section of his 20-year career, ranging from commissioned portraits of state figures for international publications, as well as award-winning family portraits.</p><p>The exhibition showcases a diverse selection of portraits for various purposes and needs: art, journalism, communication, photography for businesses, and private individuals. What unites these images is the gentle gaze directed at the subject, curiosity, and the photographer’s desire to capture a shared moment in an image. According to Romppanen, the essence of portrait photography lies precisely in this — the encounter between two people and their interaction between them at a specific moment, in a particular time and place.</p><p>Reflections on the deepest essence of portrait photography have led the self-taught photographer to pursue art studies. Romppanen is currently working on his thesis at Aalto University, focusing on the interaction between the photographer and the subject. The exhibition also explores how the material nature of an image affects the experience of it: printmaking techniques, size, and material choices all influence how the image is experienced in a space.</p><p>For example, a photograph printed on freely hanging fabric evokes different emotions than a pigment print mounted on aluminum. Every photograph has countless ways of being seen and experienced, and it is essential to find the solutions that best support the content<br>of the images.</p><p>Simultaneously with A Gentle Gaze in Caisa, Romppanen is creating a piece for the Finnish Museum of Photography at Kaapelitehdas, inviting the public to participate in a weekly portrait project involving discussions and the creation of portraits. This process-orientated work is part of a group exhibition by photography students, offering the public the opportunity to collaborate with the photographer and reflect on their relationship with portraiture.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64946/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65039", "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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 221071, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-13T12:14:55.535366Z", "last_modified_time": "2025-02-13T12:14:55.535385Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763681.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/221071/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-13T12:14:55.500151Z", "last_modified_time": "2025-03-22T11:13:49.877012Z", "date_published": null, "start_time": "2025-04-28T15: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, "provider_contact_info": null, "short_description": { "fi": "Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana. Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.", "sv": "Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.", "en": "This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/AA4F8F6DC118D90BBF4E8B82081E22A1/Kino_Kuutamo_Myrskyluodon_Maija", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/AA4F8F6DC118D90BBF4E8B82081E22A1/Kino_Kuutamo_Myrskyluodon_Maija", "en": "http://www.kanneltalo.fi/en/events/event/AA4F8F6DC118D90BBF4E8B82081E22A1/Kino_Kuutamo_Myrskyluodon_Maija" }, "name": { "fi": "Kino Kuutamo: Myrskyluodon Maija – Maksuttomat maanantait", "sv": "Kino Kuutamo: Myrskyluodon Maija – Kostnadsfria måndagar", "en": "Kino Kuutamo: Myrskyluodon Maija – Free Mondays" }, "description": { "fi": "<p>Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana. Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Elokuvan ilmaisnäytökset alkavat klo 14 ja klo 18. Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa päivän elokuvaan näytösten välissä klo 17–17.45.</p><p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella. Elokuva perustuu Anni Blomqvistin Myrskyluoto-kirjasarjaan ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin. Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Tiina Lymin käsikirjoittama ja ohjaama Myrskyluodon Maija -elokuva palkittiin kuudella Jussi-patsaalla sekä yleisön suosikkielokuva -kunniakirjalla</p><p>Ensi-ilta: 19.01.2024<br>Käsikirjoitus ja ohjaus: Tiina Lymi</p><p>Näyttelijät:<br>Amanda Jansson – Maja, Linus Troedsson – Janne, Jonna Järnefelt – Majan äiti, Tobias Zilliacus – Majan isä, Amanda Kilpeläinen Arvidsson – Anna, Majan sisko, Desmond Eastwood – Wilson, brittiläinen upseeri, Tony Doyle – Harris, brittiläinen upseeri</p><p>Ikäraja: K-12<br>Kesto: 2 tuntia 45 min.<br>Kieli: ruotsi<br>Tekstitys: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.</p><p>Gratisvisningarna av filmen börjar kl. 14 och 18. Filmhistorikern fil.dr. Harri Kilpi introducerar dagens film mellan visningarna kl. 17–17.45.</p><p>Stormskärs Maja är en rörande historia om en stark kvinna och de utmaningar hon möter på en stormig ö. Filmen är baserad på Anni Blomqvists Stormskäret-bokserie och utspelar sig i kusttrakterna i 1800-talets Finland. Maja som är cirka 17 år gammal gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fullt av utmaningar och motgångar: som fiskarhustru är hon tvungen att klara av sin mans långa frånvaron på havet och ta hand om sin familj ensam. Maja har dock vuxit till en självständig kvinna med stark vilja, som inte är rädd att ta itu med saker och ting i den karga skärgården. Maja och Janne har en stark kontakt och med tiden en djupare kärlek till varandra. Janne stöder sin hustrus strävanden och förstår att familjens styrka uppstår ur gemensamt bemödande.</p><p>Premiär: 19.01.2024<br>Manus och regi: Tiina Lymi</p><p>Åldersgräns: F 12<br>Längd: 2 h 45 min.<br>Språk: svenska<br>Textning: finska</p>", "en": "<p>This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love.</p><p>Free screenings of the film start at 14:00 and 18:00. Film history expert, PhD Harri Kilpi will introduce the film of the day between the screenings from 17:00 to 17:45.</p><p>Stormskerry Maja is the touching story of a strong woman and the challenges she faces on a stormy island. The film is based on Anni Blomqvist’s Stormskerry book series and is set in coastal Finland in the 19th century. Against her will, the young 17-year-old Maja marries Janne, a fisherman. Her life on Stormskerry is full of challenges and adversity: as a fisherman’s wife, she has to cope with her husband’s long absences away at sea and look after her family on her own. But Maja has grown into a strong-willed, independent woman who is not afraid to face the challenges of the rugged archipelago. Maja and Janne have a strong connection and a love that has deepened over time. Janne supports his wife’s efforts and understands that the strength of a family comes from joint efforts.</p><p>Premiere: 19 January 2024<br>Screenplay and direction: Tiina Lymi</p><p>Age limit: 12+<br>Duration: 2 hours 45 min<br>Language: Swedish<br>Subtitles: Finnish</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65039/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65040", "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:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?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:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 192443, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-04T12:16:41.059288Z", "last_modified_time": "2025-02-04T12:16:41.059305Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763682.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/192443/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-04T12:16:41.024390Z", "last_modified_time": "2025-03-22T11:13:49.805966Z", "date_published": null, "start_time": "2025-04-28T11: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, "provider_contact_info": null, "short_description": { "fi": "Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana. Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.", "sv": "Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.", "en": "This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/FC3E51606141A41C144913A1201F500F/Kino_Kuutamo_Myrskyluodon_Maija", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/FC3E51606141A41C144913A1201F500F/Kino_Kuutamo_Myrskyluodon_Maija", "en": "http://www.kanneltalo.fi/en/events/event/FC3E51606141A41C144913A1201F500F/Kino_Kuutamo_Myrskyluodon_Maija" }, "name": { "fi": "Kino Kuutamo: Myrskyluodon Maija – Maksuttomat maanantait", "sv": "Kino Kuutamo: Myrskyluodon Maija – Kostnadsfria måndagar", "en": "Kino Kuutamo: Myrskyluodon Maija – Free Mondays" }, "description": { "fi": "<p>Tänä keväänä Kanneltalon Kino Kuutamon elokuvissa tutkitaan luontoa rakkauden vertauskuvana. Myrskyluodon Maija on tarina tahdosta, voimasta ja rakkaudesta.</p><p>Elokuvan ilmaisnäytökset alkavat klo 14 ja klo 18. Elokuvahistorian asiantuntija FT Harri Kilpi johdattaa päivän elokuvaan näytösten välissä klo 17–17.45.</p><p>Myrskyluodon Maija on koskettava tarina vahvasta naisesta ja hänen kohtaamistaan haasteista myrskyisällä saarella. Elokuva perustuu Anni Blomqvistin Myrskyluoto-kirjasarjaan ja sijoittuu 1800-luvun Suomen rannikkoseudulle. Nuori 17-vuotias Maija avioituu vasten tahtoaan kalastajamies Jannen kanssa. Hänen elämänsä Myrskyluodolla on täynnä haasteita ja vastoinkäymisiä: kalastajan vaimona hän joutuu selviytymään miehensä pitkistä poissaoloista merellä ja huolehtimaan perheestään yksin. Maijasta on kuitenkin kasvanut lujatahtoinen ja itsenäinen nainen, joka ei pelkää tarttua toimeen karussa saaristossa. Maijalla ja Jannella on vahva yhteys, sekä ajan myötä syventynyt rakkaus. Janne tukee vaimonsa pyrkimyksiä ja ymmärtää, että perheen vahvuus syntyy yhteisistä ponnisteluista.</p><p>Tiina Lymin käsikirjoittama ja ohjaama Myrskyluodon Maija -elokuva palkittiin kuudella Jussi-patsaalla sekä yleisön suosikkielokuva -kunniakirjalla.</p><p>Ensi-ilta: 19.01.2024<br>Käsikirjoitus ja ohjaus: Tiina Lymi</p><p>Näyttelijät:<br>Amanda Jansson – Maja, Linus Troedsson – Janne, Jonna Järnefelt – Majan äiti, Tobias Zilliacus – Majan isä, Amanda Kilpeläinen Arvidsson – Anna, Majan sisko, Desmond Eastwood – Wilson, brittiläinen upseeri, Tony Doyle – Harris, brittiläinen upseeri</p><p>Ikäraja: K-12<br>Kesto: 2 tuntia 45 min.<br>Kieli: ruotsi<br>Tekstitys: suomi</p><p>Vapaa pääsy</p>", "sv": "<p>Denna vår undersöker vi naturen som symbol för kärleken i Gamlasgårdens Kino Kuutamo-filmer.</p><p>Gratisvisningarna av filmen börjar kl. 14 och 18. Filmhistorikern fil.dr. Harri Kilpi introducerar dagens film mellan visningarna kl. 17–17.45.</p><p>Stormskärs Maja är en rörande historia om en stark kvinna och de utmaningar hon möter på en stormig ö. Filmen är baserad på Anni Blomqvists Stormskäret-bokserie och utspelar sig i kusttrakterna i 1800-talets Finland. Maja som är cirka 17 år gammal gifter sig mot sin vilja med fiskaren Janne. Hennes liv på Stormskäret är fullt av utmaningar och motgångar: som fiskarhustru är hon tvungen att klara av sin mans långa frånvaron på havet och ta hand om sin familj ensam. Maja har dock vuxit till en självständig kvinna med stark vilja, som inte är rädd att ta itu med saker och ting i den karga skärgården. Maja och Janne har en stark kontakt och med tiden en djupare kärlek till varandra. Janne stöder sin hustrus strävanden och förstår att familjens styrka uppstår ur gemensamt bemödande.</p><p>Premiär: 19.01.2024<br>Manus och regi: Tiina Lymi</p><p>Åldersgräns: F 12<br>Längd: 2 h 45 min.<br>Språk: svenska<br>Textning: finska</p>", "en": "<p>This spring, Kanneltalo’s Kino Kuutamo will showcase films that explore nature as a metaphor for love.</p><p>Free screenings of the film start at 14:00 and 18:00. Film history expert, PhD Harri Kilpi will introduce the film of the day between the screenings from 17:00 to 17:45.</p><p>Stormskerry Maja is the touching story of a strong woman and the challenges she faces on a stormy island. The film is based on Anni Blomqvist’s Stormskerry book series and is set in coastal Finland in the 19th century. Against her will, the young 17-year-old Maja marries Janne, a fisherman. Her life on Stormskerry is full of challenges and adversity: as a fisherman’s wife, she has to cope with her husband’s long absences away at sea and look after her family on her own. But Maja has grown into a strong-willed, independent woman who is not afraid to face the challenges of the rugged archipelago. Maja and Janne have a strong connection and a love that has deepened over time. Janne supports his wife’s efforts and understands that the strength of a family comes from joint efforts.</p><p>Premiere: 19 January 2024<br>Screenplay and direction: Tiina Lymi</p><p>Age limit: 12+<br>Duration: 2 hours 45 min<br>Language: Swedish<br>Subtitles: Finnish</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65040/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23ddri", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dd6e/?format=api" }, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-03-21T12:51:25.522654Z", "last_modified_time": "2025-03-21T12:51:25.522669Z", "date_published": null, "start_time": "2025-05-20T13:00:00Z", "end_time": "2025-05-20T14: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, "provider_contact_info": null, "short_description": { "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00." }, "info_url": null, "name": { "fi": "Luovat - nuorten luovan kirjoittamisen piiri" }, "description": { "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.</p><p>Alkaen tiistaina 7.1. klo 16.00!</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>" }, "location_extra_info": { "fi": "Jukeboksi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddri/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "espoo_le:agmk23dd6e", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15321/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ie/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65ka/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11406/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p8113/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ddri/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7azy/?format=api" } ], "created_time": "2025-03-21T12:51:22.648073Z", "last_modified_time": "2025-03-21T12:51:22.648089Z", "date_published": null, "start_time": "2025-03-25T14:00:00Z", "end_time": "2025-05-27T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": "recurring", "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Luovat - nuorten luovan kirjoittamisen piiri tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00." }, "info_url": null, "name": { "fi": "Luovat - nuorten luovan kirjoittamisen piiri" }, "description": { "fi": "<p>Tiistaisin Entressen kirjaston Jukeboksissa klo 16 - 17.00.</p><p>Alkaen tiistaina 7.1. klo 16.00!</p><p>Tule kokeilemaan sanataidetta. Ryhmässä saa kirjoittaa, piirtää ja jutella mukavassa porukassa.</p><p>Kaikki ovat tervetulleita ryhmään!</p>" }, "location_extra_info": { "fi": "Jukeboksi" }, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23dd6e/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65490", "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: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: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/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 163429, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-01-22T14:15:03.978301Z", "last_modified_time": "2025-01-22T14:15:03.978317Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763417.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/163429/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" } ], "created_time": "2025-01-22T14:15:03.953868Z", "last_modified_time": "2025-03-21T11:14:03.258105Z", "date_published": null, "start_time": "2025-04-03T14: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, "provider_contact_info": null, "short_description": { "fi": "Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa keväällä 2025!", "sv": "De ungas aktivitetshus Kipinä tar över Stoas musiksal en gång i månaden våren 2025!", "en": "Kipinä Youth Activity House takes over the Stoa Music Hall once a month in spring 2025!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/441707CEE127EFA7C5D576ECD18A0F05/Kipina_X_Stoa", "sv": "http://www.stoa.fi/sv/evenemang/event/441707CEE127EFA7C5D576ECD18A0F05/Kipina_X_Stoa", "en": "http://www.stoa.fi/en/events/event/441707CEE127EFA7C5D576ECD18A0F05/Kipina_X_Stoa" }, "name": { "fi": "Kipinä X Stoa", "sv": "Kipinä X Stoa", "en": "Kipinä X Stoa" }, "description": { "fi": "<p>Nuorten toimintatalo Kipinä valtaa Stoan Musiikkisalin kerran kuussa keväällä 2025!</p><p>Lavalle nousevat mm. Helsinki Unity Musicin artistit ja muut Kipinän toimijat. Kipinä x Stoa -tapahtumien sisällöt ja aikataulut tarkentuvat myöhemmin.<br> <br>Tsekkaa ajankohtaisin tieto Nuorten toimintatalo Kipinän Instagramissa @kipina_official sekä nettisivuilla https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p>", "sv": "<p>De ungas aktivitetshus Kipinä tar över Stoas musiksal en gång i månaden våren 2025!</p><p>På scenen ser vi bland andra Helsinki Unity Musics artister och andra aktörer inom Kipinä. Innehållen och tidtabellerna för Kipinä x Stoa-evenemangen preciseras senare.</p><p>Se aktuell information om De ungas aktivitethus Kipinä på Instagram på @kipina_official och på webbplatsen https://nuorten.hel.fi/sv/ungdomsgardar/de-ungas-aktivitetshus-kipina</p>", "en": "<p>Kipinä Youth Activity House takes over the Stoa Music Hall once a month in spring 2025!</p><p>Artists from Helsinki Unity Music and other Kipinä operators and many more will be taking the stage. The content and schedules of the Kipinä x Stoa events will be specified later.</p><p>Check out the most up-to-date information on the Kipinä Youth Activity House Instagram @kipina_official page and website https://nuorten.hel.fi/nuorisotalot/nuorten-toimintatalo-kipina-itakeskus/</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65490/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65716", "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: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/kulke:596/?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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 330185, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-03-12T11:14:43.651111Z", "last_modified_time": "2025-03-12T11:14:43.651130Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_766359.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/330185/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-03-12T11:14:43.591854Z", "last_modified_time": "2025-03-21T11:14:02.940890Z", "date_published": null, "start_time": "2025-04-02T14:30:00Z", "end_time": "2025-04-02T16:30: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, "provider_contact_info": null, "short_description": { "fi": "Millaisia merkityksiä metsällä on helsinkiläisille taiteilijoille? Miltä näyttää metsien tulevaisuus?", "sv": "Hurdana betydelser har skogen för konstnärer i Helsingfors? Hur ser skogarnas framtid ut?", "en": "What significance does the forest have for artists in Helsinki? What does the future look like for forests?" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/AC6F694CF0F8EBF1EF2CF81EEB3F5EDF/Stoan_metsadialogi_Taiteen_rooli_metsakeskustelussa_", "sv": "http://www.stoa.fi/sv/evenemang/event/AC6F694CF0F8EBF1EF2CF81EEB3F5EDF/Stoas_skogsdialog_Konstens_roll_i_diskussionen_om_skogen", "en": "http://www.stoa.fi/en/events/event/AC6F694CF0F8EBF1EF2CF81EEB3F5EDF/Forest_dialogue_at_Stoa_The_role_of_art_in_discussions_about_the_forest" }, "name": { "fi": "Stoan metsädialogi: Taiteen rooli metsäkeskustelussa", "sv": "Stoas skogsdialog Konstens roll i diskussionen om skogen", "en": "Forest dialogue at Stoa: The role of art in discussions about the forest" }, "description": { "fi": "<p>Millaisia merkityksiä metsällä on helsinkiläisille taiteilijoille? Miltä näyttää metsien tulevaisuus?</p><p>Entä mitä rooleja taiteella voi olla metsäkeskustelussa ympäristökriisin ja luontokadon aikakaudella?</p><p>Stoan metsädialogi on osa Suurten metsädialogipäivän ohjelmaa. Tervetuloa mukaan!</p><p>Metsillä on ratkaisevan tärkeä rooli ilmastonmuutoksen hillinnässä ja luontokadon pysäyttämisessä. Samaan aikaan ne ovat tärkeä osa talouselämää ja monien ihmisten elinkeinoa. Metsät ovat myös syvästi merkityksellinen elämisen, harrastamisen ja rauhoittumisen paikka ihmisille ja välttämätön elinympäristö tuhansille eliölajeille. Metsät, niiden merkitys ja käyttö Suomessa ovat suuressa murroksessa. Tulevaisuudessa meidän on kyettävä sovittamaan yhteen metsään liittyvät monet merkitykset, arvot ja intressit sekä sopeuttamaan metsien käyttö luonnon kantokyvyn rajoihin.</p><p>Keskustelun tavoitteena on nostaa näkyviin metsiin liittyviä merkityksiä, arvoja ja tulevaisuuden näkymiä. Stoassa dialogiin käyvät eri alojen taiteilijat. Mukana keskustelussa ovat kirjailija <b>Hanna Weselius</b>, runoilija <b>Olli Sinivaara</b>, teatteriopettaja <b>Ida Backer</b>, käsityön suunnittelijaopettaja <b>Tiina Mikkelä</b>, esseisti <b>Katri Kiukas</b>, valokuvataiteilija <b>Sanni Seppo</b> ja tekstiilitaiteilija, tutkija <b>Sonja Salomäki</b>.</p><p>Metsädialogissa osallistujat keskittyvät käymään keskustelua toistensa kanssa piirissä. Dialogia voi seurata yleisöstä käsin. Keskustelua fasilitoi kirjastonhoitaja <b>Liisa Uimonen.</b></p><p>Keskustelu on osa Suurta Metsädialogipäivää. Eri puolilla Suomea järjestettävistä dialogeista tehdään anonymisoitu julkinen yhteenveto ja vaihtoehtoisia skenaarioita metsien tulevaisuudesta Suomessa. Yhteenveto ja skenaariot julkaistaan Koneen Säätiön sivuilla kaikkien hyödynnettäväksi.</p><p>Kokonaisuuden tavoitteena on saada näkyviin metsiin liittyvät merkitykset ja arvot sekä tukea metsiin liittyvän toiminnan uudistamista.</p><p>Stoan metsädialogin järjestävät yhteistyössä Itäkeskuksen kirjasto, Helsingin suomenkielinen työväenopisto ja Kulttuurikeskus Stoa.</p><p>Vapaa pääsy</p>", "sv": "<p>Hurdana betydelser har skogen för konstnärer i Helsingfors? Hur ser skogarnas framtid ut?</p><p>Och vilka roller kan konsten ha i diskussionen om skogen i miljökrisens och biodiversitetsförlustens tid?<br>Stoas skogsdialog ingår i den stora skogsdialogdagens program. Välkommen med!</p><p>Skogarna har en avgörande roll i arbetet för att bekämpa klimatförändringen och stoppa förlusten av biologisk mångfald. Samtidigt är de en viktig del av ekonomin och ett levebröd för många. Skogarna är också en djupt betydelsefull miljö för liv, hobbyer och avkoppling för människor, och en nödvändig livsmiljö för tusentals arter. Skogarna, deras betydelse och användningen av dem i Finland genomgår en stor omvälvning. I framtiden måste vi kunna samordna de många betydelser, värden och intressen som anknyter till skogen samt anpassa användningen av skogarna till gränserna för vad naturen klarar av.</p><p>Målet med diskussionen är att lyfta fram betydelser, värden och framtidsutsikter som anknyter till skogen. Dialogen på Stoa förs av konstnärer inom olika områden. Där deltar författaren Hanna Weselius, poeten Olli Sinivaara, teaterläraren Ida Backer, hantverksdesignern och -läraren Tiina Mikkelä, essäisten och Matokallio-aktiva Katri Kiukas, fotokonstnären Sanni Seppo och textilkonstnären och forskaren Sonja Salomäki.</p><p>I skogsdialogen fokuserar deltagarna på att diskutera med varandra. Publiken kan följa dialogen. Diskussionen faciliteras av bibliotekarien Liisa Uimonen.</p><p>Diskussionen är en del av den stora skogsdialogdagen. Utifrån dialoger som ordnas på olika håll i Finland sammanställs en anonymiserad offentlig sammanfattning och alternativa scenarier för skogarnas framtid i Finland. Sammanfattningen och scenarierna publiceras på Konestiftelsens webbplats så att alla kan använda dem.</p><p>Målet med helheten är att synliggöra betydelser och värden som anknyter till skogen samt stödja en förnyelse av den verksamhet som anknyter till skogen.</p><p>Stoas skogsdialog ordnas som ett samarbete mellan Östra centrums bibliotek, Helsingfors finska arbetarinstitut och Kulturcentret Stoa.</p><p>Fritt inträde</p>", "en": "<p>What significance does the forest have for artists in Helsinki? What does the future look like for forests?</p><p>And what are the roles that art can assume in discussions about the forest in the era of environmental crisis and biodiversity loss?<br>Forest dialogue at Stoa is part of the programme of the Great Forest Dialogue Day. Come and join in!</p><p>Forests play a crucial role in mitigating climate change and halting biodiversity loss. At the same time, they are an important part of the economy and the livelihoods of many people. Forests are also a deeply meaningful place for people to live, recreate and relax, and an essential habitat for thousands of species. Forests, their significance and use in Finland are undergoing a great change. In the future, we must be able to reconcile the different meanings, values and interests of forests and adapt their use to the limits of nature’s carrying capacity.</p><p>The aim of these dialogues is to make visible the meanings, values and future visions associated with forests. At Stoa, artists in different fields will engage in the dialogue. Author Hanna Weselius; poet Olli Sinivaara; theatre teacher Ida Backer; handcraft teacher and education planner Tiina Mikkelä; essayist, Matokallio activist Katri Kiukas; photographer Sanni Seppo; and textile artist, researcher Sonja Salomäki will be participating in the dialogue.</p><p>In the forest dialogue, the participants will focus on debating the topic together in a circle. The audience can follow the dialogue from their seats. The discussion will be facilitated by librarian Liisa Uimonen.</p><p>The debate is part of the Great Forest Dialogue Day. An anonymised, public summary will be created based on the dialogues held all over Finland along with alternative scenarios for the future of forests in Finland. The summary and the scenarios will be published on the Kone Foundation website for everyone to use.</p><p>The aim of these dialogues is to make visible the meanings and values associated with forests, to diversify the conversation on forests and to support the transformation of forest-related activities.</p><p>The forest dialogue at Stoa is organised in cooperation by Itäkeskus Library, the Finnish-language Adult Education Centre of the City of Helsinki and Cultural Centre Stoa.</p><p>Free entrance</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65716/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:65594", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?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: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: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:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 210450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2025-02-10T07:14:48.510740Z", "last_modified_time": "2025-02-10T07:14:48.510757Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_765462.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/210450/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2025-02-10T07:14:48.460999Z", "last_modified_time": "2025-03-21T10:15:43.482709Z", "date_published": null, "start_time": "2025-04-24T16: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, "provider_contact_info": null, "short_description": { "fi": "Pop & Jazz Konservatorion ammattiopiskelijat esittävät Malmitalossa pienoismusikaalin sekä jazz-konsertin, jossa kuullaan Ella Fitzgeraldin musiikkia.", "sv": "Pop & Jazz Konservatorios yrkesstuderande framför en minimusikal på Malms kulturhus, och därefter får vi höra en jazzhyllning till Ella Fitzgerald.", "en": "Vocational students from the Pop & Jazz Conservatory perform a minimusical in Malmitalo, after which they will perform a jazz tribute to Ella Fitzgerald." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/2175D3CDCD480CD9BC6A0AC5AD00AFA8/Kuka_mua_vois_rakastaa_Nella_sings_Ella", "sv": "http://www.malmitalo.fi/sv/evenemang/event/2175D3CDCD480CD9BC6A0AC5AD00AFA8/Kuka_mua_vois_rakastaa_Nella_sings_Ella", "en": "http://www.malmitalo.fi/en/events/event/2175D3CDCD480CD9BC6A0AC5AD00AFA8/Kuka_mua_vois_rakastaa_Nella_sings_Ella" }, "name": { "fi": "Kuka mua vois rakastaa? + Nella sings Ella – Pop & Jazz Konservatorion ammattiopiskelijoiden konsertit", "sv": "Kuka mua vois rakastaa? + Nella sings Ella – Pop & Jazz Konservatorios yrkesstuderandes konserter", "en": "Kuka mua vois rakastaa? + Nella sings Ella – Pop & Jazz Conservatory vocational students’ concert" }, "description": { "fi": "<p>Pop & Jazz Konservatorion ammattiopiskelijat esittävät Malmitalossa pienoismusikaalin sekä jazz-konsertin, jossa kuullaan Ella Fitzgeraldin musiikkia.</p><p><b>Kuka mua vois rakastaa?\" (Musikaaliprojekti)</b><br>Lukioaikoina toisiinsa ihastuneet Emma (Venla Malinen) ja Sophie (Meri Hellsten) kohtaavat yllättäen jazzbaarissa, jossa vuosien takaiset tunteet pulpahtavat tanssin pyörteissä jälleen pintaan. Menneisyyden pettymykset ja kimurantit suhdekuviot repivät Emmaa ja Sophieta eri suuntiin, saaden kaksikon miettimään mitä he oikeasti haluavat. Voittaako rohkeus epävarmuuden, ja löytävätkö Emma ja Sophie taas toisensa?</p><p>”Kuka mua vois rakastaa” on pienoismusikaali, joka käsittelee kahden päähenkilön kautta riittämättömyyden ja ulkopuolisuuden tunteita. Mukana lavalla on yli 20-henkinen orkesteri säestämässä tunnettuja musikaalikappaleita, jotka sitovat tarinan yhteen. Helsingin Pop&Jazz konservatorion opiskelijoiden suunnittelema, käsikirjoittama ja ohjaama teos nostaa esiin mm. seksuaalivähemmistöjen syrjinnän, epävarmuuden sekä yksinäisyyden teemoja, ja muistuttaa, että jokainen meistä pohjimmiltaan toivoo olevansa rakastettu juuri sellaisena kuin on.</p><p>Meri Hellsten - laulu<br>Venla Malinen - laulu<br>Onni Koivisto - rummut<br>Sofía Kaipainen - basso ja laulu<br>Aukusti Koskinen - kitara<br>Kim Jalonen - kitara<br>Helmi Ketola - koskettimet<br>Pessi Heiskanen - koskettimet ja ensemble<br>Joel Mäntyvaara - perkussiot<br>Olavi Miettinen - ensemble<br>Hanna Riikonen - ensemble<br>Aino Kallio - ensemble<br>Hanna Mikkanen - ensemble<br>Tuuli Piltonen - ensemble<br>Siiri Toiviainen - saksofoni<br>Jenna Mikkanen - trumpetti<br>Veera Aliska - pasuuna<br>Anniina Tuomaala - huilu<br>Elisa Wang - viulu<br>Felix Sorainen - viulu<br>Elena Rusakova - alttoviulu<br>Nicola Wilkman - sello</p><p><b>Nella sings Ella (jazz)</b><br>\"Nella sings Ella' on tribuuttikonsertti legendaariselle jazzlaulajalle Ella Fitzgeraldille.</p><p>Ellan uskomaton tulkinta, monipuolisuus, improvisaatio, ja lempeys tekemisessään kosketti, ja koskettaa sydämiä vielä tänäkin päivänä.</p><p>'Puhun usein siitä, kuinka onnekas olen, että Ella on yksi suurimmista esikuvistani. Hän on laulaja, jota saan ihailla kaikin puolin onnella ja ylpeydellä, enkä parempaa esikuvaa osaisi toivoakaan.' - Nella</p><p>Tämä konsertti on kunnianosoitus niin Ella Fitzgeraldin unohtumattomalle musiikilliselle perinnölleen, kuin myös hänen sydämelliselle ja ainutlaatuiselle itselleen.\"</p><p>Nella Voutilainen - Laulu<br>Elvis Rahka - Piano<br>Olavi Miettinen - Basso<br>Jerry Uusi-Mikkola - Kitara<br>Timo Tihtonen - Rummut<br>Joel Mäntyvaara - Perkussiot<br>Lume Himanen - Huilu / Tenorisaksofoni<br>Bongsu Jeong - Alttosaksofoni<br>Joonia Marttio - Tenorisaksofoni<br>Waltteri Hirvonen - Baritonisaksofoni<br>Rebecca Ekman - Trumpetti<br>Veera Aliska - Pasuuna<br>Pessi Heiskanen - Laulu</p><p><b>Aikataulu:</b><br>19.00 \"Kuka mua vois rakastaa?\" (Musikaaliprojekti)<br>20.00 \"Nella sings Ella\" (jazz)</p><p>Kesto: 2 tuntia, sis. 20 min väliajan</p><p>Vapaa pääsy</p>", "sv": "<p>Pop & Jazz Konservatorios yrkesstuderande framför en minimusikal på Malms kulturhus, och därefter får vi höra en jazzhyllning till Ella Fitzgerald.</p><p><b>Kuka mua vois rakastaa? (Musikalprojekt)</b><br>Emma (Venla Malinen) och Sophie (Meri Hellsten), som varit förälskade i varandra under gymnasietiden, träffas oväntat på en jazzbar och de gamla känslorna kommer åter upp till ytan i dansens virvlar. Tidigare besvikelser och knepiga relationer drar Emma och Sophie åt olika håll och får dem att fundera på vad de egentligen vill. Vinner modet över osäkerheten, och hittar Emma och Sophie tillbaka till varandra?</p><p>”Kuka mua vois rakastaa” är en minimusikal som genom de två huvudpersonerna tar upp känslor av otillräcklighet och utanförskap. Med på scenen finns en över 20-hövdad orkester som ackompanjerar med kända låtar, som knyter ihop berättelsen. Verket, som planerats, skrivits och regisserats av studerande vid Helsingin Pop&Jazz konservatorio, lyfter fram teman som diskriminering av sexuella minoriteter, osäkerhet och ensamhet, och påminner om att vi alla i grunden vill bli älskade som vi är.</p><p>Meri Hellsten - sång<br>Venla Malinen - sång<br>Onni Koivisto - trummor<br>Sofía Kaipainen - bas och sång<br>Aukusti Koskinen - gitarr<br>Kim Jalonen - gitarr<br>Helmi Ketola - klaviatur<br>Pessi Heiskanen - klaviatur och ensemble<br>Joel Mäntyvaara - percussion<br>Olavi Miettinen - ensemble<br>Hanna Riikonen - ensemble<br>Aino Kallio - ensemble<br>Hanna Mikkanen - ensemble<br>Tuuli Piltonen - ensemble<br>Siiri Toiviainen - saxofon<br>Jenna Mikkanen - trumpet<br>Veera Aliska - basun<br>Anniina Tuomaala - flöjt<br>Elisa Wang - violin<br>Felix Sorainen - violin<br>Elena Rusakova - altviolin<br>Nicola Wilkman - cello</p><p><b>Nella sings Ella (jazz)</b><br>”Nella sings Ella” är en hyllningskonsert till den legendariska jazzsångerskan Ella Fitzgerald.</p><p>Ellas otroliga tolkningar, mångsidighet, improvisation och mildhet i det hon gjorde berörde och berör hjärtan än i dag.</p><p>’Jag talar ofta om vilken tur jag har då Ella är en av mina största förebilder. Hon är en sångerska som jag helt och hållet får beundra med glädje och stolthet, och jag skulle inte kunna önska mig en bättre förebild.’ – Nella</p><p>Den här konserten är en hyllning till Ella Fitzgeralds oförglömliga musikaliska arv, men även till hennes hjärtliga och unika personlighet.”</p><p>Nella Voutilainen - Sång<br>Elvis Rahka - Piano<br>Olavi Miettinen - Bas<br>Jerry Uusi-Mikkola - Gitarr<br>Timo Tihtonen - Trummor<br>Joel Mäntyvaara - Percussion<br>Lume Himanen - Flöjt / Tenorsaxofon<br>Bongsu Jeong - Altsaxofon<br>Joonia Marttio - Tenorsaxofon<br>Waltteri Hirvonen - Barytonsaxofon<br>Rebecca Ekman - Trumpet<br>Veera Aliska - Basun<br>Pessi Heiskanen - Sång</p><p>Tidtabell:<br>19.00 \"Kuka mua vois rakastaa?\" (Musikalprojektti)<br>20.00 \"Nella sings Ella\" (jazz)</p><p>Längd: 2 timmar inkl. paus 20 minuter</p><p>Fritt inträde!</p>", "en": "<p>Vocational students from the Pop & Jazz Conservatory perform a minimusical in Malmitalo, after which they will perform a jazz tribute to Ella Fitzgerald.</p><p><b>Kuka mua vois rakastaa?\" (musical project)</b><br>Emma (Venla Malinen) and Sophie (Meri Hellsten) fell in love in general upper secondary school and now have a chance meeting at a jazz bar, where their long-forgotten feelings come up for air as they dance. The disappointments and complex interpersonal relationships of the past pull Emma and Sophie in different directions, making them think about what they really want. Will courage overcome insecurity, and will Emma and Sophie find each other again?</p><p>‘Kuka mua vois rakastaa’ (‘who could love me?’) is a minimusical addressing feelings of inadequacy and otherness through its two protagonists. They are joined on stage by a 20-piece orchestra accompanying beloved musical pieces that bring the story together. The work, designed, written and directed by students of the Pop & Jazz Conservatory, highlights themes of discrimination experienced by sexual minorities, uncertainty and loneliness, and reminds us that, at heart, each of us wants to be loved for who we are.</p><p>Meri Hellsten – vocals<br>Venla Malinen – vocals<br>Onni Koivisto – drums<br>Sofía Kaipainen – bass and vocals<br>Aukusti Koskinen – guitar<br>Kim Jalonen – guitar<br>Helmi Ketola – keyboard<br>Pessi Heiskanen – keyboard and ensemble<br>Joel Mäntyvaara – percussion<br>Olavi Miettinen – ensemble<br>Hanna Riikonen – ensemble<br>Aino Kallio – ensemble<br>Hanna Mikkanen – ensemble<br>Tuuli Piltonen – ensemble<br>Siiri Toiviainen – saxophone<br>Jenna Mikkanen – trumpet<br>Veera Aliska – trombone<br>Anniina Tuomaala – flute<br>Elisa Wang – violin<br>Felix Sorainen – violin<br>Elena Rusakova – viola<br>Nicola Wilkman – cello</p><p><b>Nella sings Ella (jazz)</b><br>‘Nella sings Ella' is a tribute concert to the legendary jazz singer Ella Fitzgerald.</p><p>Ella’s incredible interpretation, versatility, improvisation skills and gentleness in her art touched and touches hearts to this day.</p><p>“I often talk about how lucky I am to have Ella as one of my biggest inspirations. She is a singer that I am happy and proud to admire in every aspect, and I could not hope for a better role model.” – Nella</p><p>This concert is a homage to both Ella Fitzgerald’s unforgettable musical legacy and the warm and unique person she was.</p><p>Nella Voutilainen – vocals<br>Elvis Rahka – piano<br>Olavi Miettinen – bass<br>Jerry Uusi-Mikkola – guitar<br>Timo Tihtonen – drums<br>Joel Mäntyvaara – percussion<br>Lume Himanen – flute / tenor saxophone<br>Bongsu Jeong – alto saxophone<br>Joonia Marttio – tenor saxophone<br>Waltteri Hirvonen – baritone saxophone<br>Rebecca Ekman – trumpet<br>Veera Aliska – trombone<br>Pessi Heiskanen – vocals</p><p><b>Schedule:</b><br>19.00 ‘Kuka mua vois rakastaa?’ (musical project)<br>20.00 ‘Nella sings Ella’ (jazz)</p><p>Duration: 2 hours, incl. 20 min intermission</p><p>Free entry!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65594/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24611, "next": "