Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=257&weekday=6%2C7
{ "meta": { "count": 7212, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=258&weekday=6%2C7", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=256&weekday=6%2C7" }, "data": [ { "id": "espoo_le:agh7qoz5gy", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15311/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz65fm/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2630/?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" } ], "registration": null, "super_event": null, "event_status": "EventScheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "espoo_le", "publisher": "espoo:sito", "sub_events": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4hq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4ju/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4l4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4oa/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4rq/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4tu/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4vy/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz4x4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz42e/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz44u/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz47i/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz5b4/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz5ei/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agjngikixy/?format=api" } ], "images": [], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api" } ], "created_time": "2024-06-08T14:02:28.639182Z", "last_modified_time": "2024-06-12T11:58:01.594571Z", "date_published": "2024-06-08T13:47:00Z", "start_time": "2024-09-11T07:00:00Z", "end_time": "2024-12-11T10: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, "location_extra_info": { "fi": "Heikki", "sv": "Heikki", "en": "Heikki" }, "provider": { "fi": "Enter ry", "sv": "Enter ry", "en": "Enter ry" }, "short_description": { "fi": "Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.", "sv": "Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.", "en": "Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones" }, "name": { "fi": "Digiopastusta seniorilta seniorille", "sv": "IT-handledning", "en": "IT tutoring" }, "provider_contact_info": null, "info_url": { "fi": "https://www.entersenior.fi/opastus/lahiopastus/espoo/", "sv": "https://www.entersenior.fi/sv/", "en": "https://www.entersenior.fi/opastus/lahiopastus/espoo/" }, "description": { "fi": "<p>Seniori, et ole yksin digipulmiesi kanssa!<br><br><br>Mukavat vertaisopastajamme auttavat mielellään. Tule kysymään neuvoa! Tyhmiä kysymyksiä ei olekaan.<br><br><br>Ota opastukseen mukaan oma laitteesi, laturi sekä tarvittavat tunnukset ja salasanat!<br><br><br>Digiopastajat ovat Enter ry:n kouluttamia vapaaehtoisia, jotka ovat itsekin ikäihmisiä.<br><br><br>Tapiolan kirjasto<br>Kulttuuriaukio 2<br>02100 ESPOO<br><br><br>Opastusta 11.9.-11.12.2024<br>keskiviikkoisin klo 10-12:00.<br><br><br>Ajanvaraus Tapiolan kirjastosta tai puhelimitse p. 050 428 9392<br><br><br>Enter ry tarjoaa ikäihmisille maksutonta opastusta tietokoneiden, tablettien ja kännyköiden käytössä.<br><br><br>Lisätietoja: www.entersenior.fi<br></p>", "sv": "<p>Enter ry erbjuder personlig och avgiftsfri handledning i användning av datorer, pekplattor och smarttelefoner. Hos oss handleder seniorer andra seniorer.<br>Obs! Föreningen är huvudsakligen verksam på finska.<br></p>", "en": "<p>Enter ry offers personal and free guidance on the use of computers, tablets and mobile phones.<br>Note! The event is mainly in Finnish.<br></p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agh7qoz5gy/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63853", "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:42/?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:755/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151183, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-20T11:13:00.236119Z", "last_modified_time": "2024-05-20T11:13:00.236139Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746029.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151183/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-20T11:13:00.212234Z", "last_modified_time": "2024-06-12T07:12:56.204340Z", "date_published": null, "start_time": "2024-08-17T09:00:00Z", "end_time": "2024-08-17T11: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Opastetulla pyöräretkellä tutustutaan Malmin historiaan. Retki alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin kaksi ja puoli tuntia.", "sv": "På den guidade cykelturen tar vi del av Malms historia. Cykelturen börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar i cirka två och en halv timme.", "en": "Get to know the history of Malmi on a guided bicycle ride. The trip starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts for roughly two and a half hours." }, "name": { "fi": "Malmin vaiheita pyöräillen – Malmin tapahtumakesä", "sv": "Malms skeden på cykel – Malms evenemangssommar", "en": "History of Malmi on wheels – Malmi Summer of Events" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/71EDCABB346F9B705A851FFF100689B1/Malmin_vaiheita_pyoraillen", "sv": "http://www.malmitalo.fi/sv/evenemang/event/71EDCABB346F9B705A851FFF100689B1/Malms_skeden_pa_cykel", "en": "http://www.malmitalo.fi/en/events/event/71EDCABB346F9B705A851FFF100689B1/History_of_Malmi_on_wheels" }, "description": { "fi": "<p>Opastetulla pyöräretkellä tutustutaan Malmin historiaan. Retki alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin kaksi ja puoli tuntia.</p><p>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy laajan alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla pyöräilykierroksella.</p><p>Kierros kestää noin kaksi ja puoli tuntia.</p><p>Pyöräretki on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p><p>Vapaa pääsy, ei ennakkoilmoittautumista. Kierros on suomeksi.</p>", "sv": "<p>På den guidade cykelturen tar vi del av Malms historia. Cykelturen börjar framför Malms kulturhus på Nedre Malms torg kl. 12 och varar i cirka två och en halv timme.</p><p>Malms långa historiska utveckling från en medeltida by på landsbygden till en stor stadsdel som åter är i förnyelse syns på områdets mångfaldiga byggnader och landskap, som vi bekantar oss med på en guidad cykeltur. Turen varar i cirka två och en halv timme. Cykelturen har genomförts i samarbete med Helsingfors stadsmuseum och WalkHelsinki. Cykelturen anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.</p><p>Fritt inträde, ingen förhandsanmälan. På finska.</p>", "en": "<p>Get to know the history of Malmi on a guided bicycle ride. The trip starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts for roughly two and a half hours.</p><p>The development of Malmi from a rural village in the medieval period to a large, ever-changing city district can be seen in the variety of buildings and landscapes in the large area, which you can get to know with a guided bicycle tour. The tour takes roughly two and a half hours. The bicycle tour is implemented in cooperation with the Helsinki City Museum and WalkHelsinki. The bicycle ride is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p><p>Free admission, no advance registration. In Finnish.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63853/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63706", "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: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:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151115, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-13T12:12:49.379883Z", "last_modified_time": "2024-05-13T12:12:49.379898Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751788.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151115/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-13T12:12:49.365898Z", "last_modified_time": "2024-06-12T07:12:52.513568Z", "date_published": null, "start_time": "2024-06-15T12:00:00Z", "end_time": "2024-06-15T17: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Hurmaannu Pambikallion dreampopin eteerisistä soundeista ja omaleimaisen Sepikan uniikin pauhaavasta popista!", "sv": "Bli hänförd av de eteriska sounden i Pambikallios dreampop, och den personliga Sepikkas unikt dånande pop!", "en": "Be enchanted by Pambikallio’s ethereal dream-pop and Sepikka’s unique and distinctively roaring pop!" }, "name": { "fi": "Sepikka & Pambikallio – Malmin tapahtumakesä", "sv": "Sepikka & Pambikallio – Malms evenemangssommar", "en": "Sepikka & Pambikallio – Malmi Summer of Events" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/3A4E79E4F102EDA58EBAB14750741B04/Sepikka_Pambikallio", "sv": "http://www.malmitalo.fi/sv/evenemang/event/3A4E79E4F102EDA58EBAB14750741B04/Sepikka_Pambikallio", "en": "http://www.malmitalo.fi/en/events/event/3A4E79E4F102EDA58EBAB14750741B04/Sepikka_Pambikallio" }, "description": { "fi": "<p>Hurmaannu Pambikallion dreampopin eteerisistä soundeista ja omaleimaisen Sepikan uniikin pauhaavasta popista!</p><p>Ennen konsertteja pääset kokoamaan oman kukkaseppeleesi kesäiltaan. Joka lauantai olet myös tervetullut järjestämään oman vilttikirppiksesi Ala-Malmin puistoon.</p><p>Tule viettämään unohtumaton kesäpäivä Ala-Malmin puistoon! Nuorten kesäkahvila Malmi Coffee palvelee tapahtumapäivänä klo 13 alkaen.</p><p><b>OHJELMA:<br>klo 15–18<br>Kukkaseppele-työpaja</b></p><p>Tule tekemään unelmiesi kukkaseppele! Kukkaseppeleitä toteutetaan non-stop työpajassa. Jokainen osallistuja saa mahdollisuuden päästää luovuutensa valloilleen ja luoda oman upean kukkakruunun ammattitaitoisen opettajan johdolla.</p><p>Kukkaseppele koostuu punotuista kukista, lehdistä ja muista luonnon somisteista, ja ne ovat perinteisiä koristeita monissa kulttuureissa ja seremonioissa ympäri maailmaa. Kukkaseppeleitä on käytetty antiikin ajoista lähtien ja historiallisesti niitä on pidetty symboleina kauneudelle, nuoruudelle ja myös juhlalle.</p><p>Seppeletyöpajan järjestää Taito Etelä-Suomi ry.</p><p><b>klo 17–18<br>Sepikka</b></p><p>Sepikan soundi on suuri, mutta herkkä kuin puuskittainen myrskytuuli. Seppäsen pauhaava pop tuntuu inspiroituneen virroista ja hiljaisuudesta ja kaikenlaisista kasvavista ja seestyvistä voimista.</p><p>Sepikka -artistinimen takana on 2021 julkaistun debyyttialbuminsa myötä lukuisia palkintoja ja ehdokkuuksia haalinut Joni Seppänen. Artistin omaleimaisessa maailmassa samastutaan eläimiin, ylistetään ystävyyttä ja tehdään tarkkanäköisiä havaintoja ihmisistä ja ajastamme. Vahvana pohjavireenä on turhautuminen yhteiskunnan tehokkuusajatteluun ja luonnon hyväksikäyttämiseen. Omaleimaisen artistin äänimailmaa on verrattu mm. Grammy-palkittuun Bon Iveriin.</p><p><b>klo 19–20<br>Pambikallio</b></p><p>Pambikallio on hurmannut suomenkielisellä psykedeliapopillaan heti ensijulkaisuistaan lähtien. Tervetuloa tutkimusmatkalle Pambin puistoon!</p><p>Yhtye singahti indietaivaalle vuonna 2022 ja on rönsynnyt Pauliina Koivusaaren ja Lauri Kallion muodostamasta duosta viisihenkiseksi säkenöiväksi liveyhtyeeksi.</p><p>Pambikallion utuisen ja kimaltelevan kaikuisan dreampop-rangan ympärille on kasvanut duon käsissä ilahduttavan svengaavat, määrätietoisesti surisevat ja psykedeelisen taianomaiset raajat. Lopputulos on universaalin suvereeni. Kaikki yksityiskohdat ovat loppuun asti mietittyjä, ja sen huomaa: yhtyeen musiikista löydät toistuvasti jotain uutta.</p>", "sv": "<p>Bli hänförd av de eteriska sounden i Pambikallios dreampop, och den personliga Sepikkas unikt dånande pop!</p><p>Före konserterna får du binda en egen blomsterkrans för sommarkvällen i workshoppen som dras av Taito Etelä-Suomi ry! Varje lördag är du dessutom välkommen att ordna ditt eget filtloppis i Nedre Malms park.</p><p>Kom och tillbringa en oförglömlig sommardag i Nedre Malms park! De ungas sommarkafé Malmi Coffee betjänar under evenemangsdagen från kl. 13.</p><p><b>PROGRAM:<br>kl. 15–18<br>Blomsterkransworkshop</b><br>Kom och laga dina drömmars blomsterkrans!</p><p>Blomsterkransarna genomförs i en nonstop-workshop. Varje deltagare får möjlighet att släppa loss sin kreativitet och skapa en egen praktfull blomsterkrona under ledning av en kunnig lärare.<br>Blomsterkransar består av bundna blommor, blad och andra naturliga dekorationer, och är traditionella prydnader i många kulturer och ceremonier runt om i världen. Blomsterkransar har används sedan antiken och historiskt har de ansetts vara symboler för skönhet, ungdom och även fest.</p><p>Plats: Workshopområdet i Nedre Malms park</p><p><b>kl. 17–18<br>Sepikka</b><br>Sepikkas sound är stort, men känsligt som en byig stormvind. Seppänens dundrande pop verkar ha inspirerats av strömmar och tystnad och all slags växande och ljusnande krafter.</p><p>Bakom artistnamnet finns Joni Seppänen som i och med debutalbumet år 2021 har belönats med talrika priser och nomineringar. I artistens särpräglade värld sammansmälter man med djur, lovordar vänskapen och gör skarpsynta observationer om människor och vår tid. En stark underton är frustrationen över samhällets effektivitetstänk och utnyttjandet av naturen. Den personliga artistens ljudvärld har jämförts med bland annat den Grammy-belönade Bon Iver.</p><p>Artisten har även musikmässigt byggt upp en unik värld för sig själv: den öppna och oslipade bandmusiken kombineras med sample-estetik och klassiska instrument. Stråkar, horn och pianon klingar stort och tidvis även söndrigt. Ytligt verkar Sepikka som milt pyssel, barnaktigt naturmys. Det harmoniska bubblet stegras dock obemärkt till en fullständigt oberäknelig, andtruten löpning i kylan över dimhöljda åkrar.</p><p>Sepikkas debutalbum En kestä kylmää lailla ahvenen (2021) belöntes som årets album vid Indie Awards-galan, utöver vilket tidningen Soundi valde Sepikka till årets nykomling och han fick två nomineringar på Emma-galan. Debuten var också nominerad för det ansedda nordiska Nordic Music Prize.</p><p>Sepikka släppte sitt andra efterlängtade studioalbum “Ei koskaan rakkaudella” i februari 2024. Hittills har albumet fått idel lovord.</p><p><b>kl. 19–20<br>Pambikallio</b><br>Pambikallio har charmat med sin finskspråkiga psykedeliska pop från och med sitt debutalbum.</p><p>Bandet flög upp på indiehimlen 2022 och har vuxit från duon som bestod av Pauliina Koivusaari och Lauri Kallio till ett glittrande liveband med fem medlemmar.</p><p>I duons händer har Pambikallio fått glädjande svängande, målmedvetet surrande och psykedeliskt magiska lemmar runt bandets diffusa och glittrande ekande dreampop-skelett. Slutresultatet är universellt suveränt. Allt har övervägts i minsta detalj, och det märks: man hittar om och om igen nya aspekter i bandets musik.</p><p>Bandets andra album “Parc de Pambi” släpptes i oktober 2023 av Helmi Levyt. Albumet Parc de Pambi låter bandets musik växa sig ännu större och mer dramatisk. Plattans stilart och hänvisningar studsar skojigt från plats till plats; stämningen böljar från dramatiskt pompös till eteriskt flytande och från barnsligt uppsluppen till andligt hänryckande.</p><p>Bandet släppte sitt debutalbum i mars 2022. Albumet Pambikallio togs emot entusiastiskt både av publiken och kritikerna. Bandet har lyfts upp på bland annat YleX Läpimurto 2022-lista och varit nominerat både vid Indie Awards och Femma-galan år 2022.</p><p>Bandet som började som duo växer till ett fempersonsband på spelningar då Teemu Vänskä (keyboard), Io Petterson (bas) och Teemu Mustonen (trummor) kompletterar.</p>", "en": "<p>Be enchanted by Pambikallio’s ethereal dream-pop and Sepikka’s unique and distinctively roaring pop!</p><p>Before the concerts, you get to build your own flower crown for this summer night at the Taito Etelä-Suomi ry’s workshop! Don’t forget about our Saturday flea markets, if there’s anything you want to sell.</p><p>Come and spend an unforgettable summer day at Ala-Malmi Park! Youth café Malmi Coffee is open on the day of the event from 1 pm.</p><p><b>PROGRAMME:<br>3 pm to 6 pm<br>Flower Crown workshop</b><br>Join us to create the flower crown of your dreams!</p><p>This non-stop workshop is a place where every participant gets to unleash their creativity and create their own, fantastic flower crown with the help of a professional teacher.</p><p>Flower crowns are made of woven flowers, leaves and other natural decorations, and are traditional accessories used in many cultures and ceremonies everywhere in the world. Flower crowns have been used since antiquity and historically, they have been thought of as symbols of beauty, youth, and celebration.</p><p>Location: Ala-Malmi Park workshop area</p><p><b>5 pm to 6 pm<br>Sepikka</b><br>Sepikka’s sound is great but fragile, just like a gusting storm. Seppänen’s roaring pop seems to have been inspired by streams, silence, and all kinds of growing and calming powers.</p><p>The man behind the name Sepikka is Joni Seppänen, who won various awards and nominations with his 2021 debut album. The artist’s distinctive world leads listeners to identify with animals, praise friendship and make astute observations of people and the time we live in. There is a strong undercurrent of being frustrated with the modern efficiency mindset and the abuse of nature. Their distinctive soundscape has been compared with Grammy Award-winning Bon Iver.</p><p>The artist has created a world that is also musically unique: an open, rough band sound combined with sampling aesthetics and classical instruments. Strings, horns and pianos have a loud, at times broken place in this music. On the surface, Sepikka feels like a gentle hobby project, dabbling with nature in a child-like manner. But the calm bubbling under the surface will suddenly swell into an unexpectedly breathtaking sprint through foggy fields in the dead of winter.</p><p>Sepikka’s debut album, En kestä kylmää lailla ahvenen (2021), was awarded Album of the Year at the Indie Awards gala, in addition to which venerated Soundi magazine chose it as the newcomer of the year, as well as receiving two nominations at the Emma gala. The debut album was also nominated for the highly respected Nordic Music Prize.</p><p>Sepikka released their highly expected second album, Ei koskaan rakkaudella, in February 2024. So far, the album has only been reviewed very well.</p><p><b>7 pm to 8 pm<br>Pambikallio</b><br>Pambikallio’s Finnish-language psychedelic pop has charmed audiences since the band’s first releases.</p><p>The band’s star in the sky of indie music lit up in 2022, as they evolved from a duo consisting of Pauliina Koivusaari and Lauri Kallio into an energetic five-member live band.</p><p>Pambikallio’s hazy, glittering and resonant dreampop core is complemented with delightfully swinging, buzzing and psychedelic sounds. The result is universal and holistic. All the details are so clearly in place that it’s obvious: you can always find something new in the band’s music.</p><p>The band’s second album, ‘Parc de Pambi’ was released in October 2023 under Helmi Levyt. With Parc de Bambi, the band’s sound has developed to a more grand and dramatic direction. The genre of the album and its references go from place to place; the atmosphere fluctuates from dramatically pompous to ethereal drifting, and from child-like boisterousness to otherworldly fervour.</p><p>The band’s debut album was released in March 2022. Their self-titled album was received with enthusiasm by both audiences and critics. In 2022, the band received the spotlight on the YleX Läpimurto 2022 list, as well as was nominated at the Indie Awards and the Femma gala.</p><p>The band started as a duo and has now grown to be a five-person live ensemble with new additio</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63706/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63705", "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:42/?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:755/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151114, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-13T12:12:49.293793Z", "last_modified_time": "2024-05-13T12:12:49.293807Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746025.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151114/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-13T12:12:49.272759Z", "last_modified_time": "2024-06-12T07:12:52.455204Z", "date_published": null, "start_time": "2024-06-15T09:00:00Z", "end_time": "2024-06-15T10: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin klo 13.30 saakka.", "sv": "På den guidade promenadrundan bekantar vi oss med Malms historia. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 13 och varar fram till cirka kl. 13.30. På svenska.", "en": "Get to know the history of Malmi on a guided walking tour. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm. In Finnish." }, "name": { "fi": "Rauhallinen muistelukävely Malmilla – Malmin tapahtumakesä", "sv": "Lugn minnespromenad på Malm – Malms evenemangssommar", "en": "A peaceful walk down memory lane at Malmi – Malmi Summer of Events" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B54AA85FD00502EAB3ED6291617A6F80/Rauhallinen_muistelukavely_Malmilla", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B54AA85FD00502EAB3ED6291617A6F80/Lugn_minnespromenad_pa_Malm", "en": "http://www.malmitalo.fi/en/events/event/B54AA85FD00502EAB3ED6291617A6F80/A_peaceful_walk_down_memory_lane_at_Malmi" }, "description": { "fi": "<p>Opastetulla kävelykierroksella tutustutaan Malmin ja Ylä-Malmin historiaan. Kävelykierros alkaa Malmitalon edestä Ala-Malmin torilta klo 12 ja kestää noin klo 13.30 saakka.</p><p><b>Ylä-Malmin vaiheita kävellen</b><br>Malmin pitkä historiallinen kehitys keskiaikaisesta maalaiskylästä suureksi, jälleen uudistuvaksi kaupunginosaksi näkyy alueen moninaisissa rakennuksissa ja maisemissa, joihin tutustutaan opastetulla kävelykierroksella.</p><p>Kierros kestää noin puolitoista tuntia. Tervetuloa matkalle läpi rakkaan kaupunginosamme historian!</p><p>Kävely on toteutettu yhteistyössä Helsingin kaupunginmuseon ja WalkHelsingin kanssa, ja se liittyy Mestat ja huudit – Näe Helsinki toisin -näyttelyyn, joka on esillä 9.5.–15.9.2024 museon päärakennuksessa, Aleksanterinkatu 16.</p>", "sv": "<p>På den guidade promenadrundan bekantar vi oss med Malms historia. Promenadrundan börjar framför Malms kulturhus på Nedre Malms torg kl. 13 och varar fram till cirka kl. 13.30. På svenska.</p><p>Malm har förändrats mycket och förändringen fortsätter i rask takt. På minnespromenaden promenerar vi i lugn takt längs en lätt rutt från Nedre Malms park till Malms kyrka, och tar pauser på vägen. Dessutom väcker vi upp minnen genom att titta på gamla fotografier och samtala.</p><p>Rundan som dras av en frivilligarbetare varar i cirka en och en halv timme. Välkommen på en resa genom vår kära stadsdels historia!</p><p>Promenaden har genomförts i samarbete med Malms kulturhus och den anknyter till utställningen Mestor och paikkor – Se Helsingfors med nya ögon, som visas i stadsmuseets huvudbyggnad 9.5.–15.9.2024 på adressen Alexandersgatan 16.<br> <br>Språk: finska</p>", "en": "<p>Get to know the history of Malmi on a guided walking tour. The tour starts at Ala-Malmin tori in front of Malmitalo Cultural Centre at 12 noon and lasts until roughly 13:30 pm. In Finnish.</p><p>Malmi has changed a lot over the years, and that change keeps getting faster. This is an easy-going walk down memory lane from Ala-Malmi Park to the Malmi Church, with time to stop and rest. It is an excellent opportunity to jot your memory with old photos and discussion.</p><p>This walk, led by a volunteer, lasts for roughly an hour and a half. The walking tour is in Finnish.</p><p>Join us on a walk into the history of our part of town!</p><p>The walk is implemented in cooperation with Malmitalo Cultural Centre, and is a part of the Mestat ja huudit – Näe Helsinki toisin exhibition, which is being presented during 9 May – 15 September 2024 in the Helsinki City Museum at Aleksanterinkatu 16.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63705/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63701", "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: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" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151113, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-13T12:12:49.205390Z", "last_modified_time": "2024-05-13T12:12:49.205404Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751787.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151113/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-13T12:12:49.190043Z", "last_modified_time": "2024-06-12T07:12:52.324363Z", "date_published": null, "start_time": "2024-06-14T14: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Pitkän linjan malmilaiset - garage-psykedeliaa huokuva Pink Chameleons sekä elektronista syntikkatykitystä tarjoileva Trio Tetris valtaavat Malmin tapahtumakesän konttilavan perjantaina 14.6. Päivän vierailevana tähtenä pontevaa old-time musiikkia soittava Stuart, Spence & Shebish Amerikasta!", "sv": "De långvariga malmborna Pink Chameleons som utstrålar garage-psykedelika samt Trio Tetris som bjuder på elektroniskt syntbombardemang tar över containerscenen på Malms evenemangssommar fredag 14.6. Dagens gäststjärna är Stuart, Spence & Shebish från USA som spelar energisk old-time musik.", "en": "Long-term local groups from Malmi, garage-psych outfit Pink Chameleons and electro-synth band Trio Tetris take over the Malmi Summer of Events container stage on Friday, 14 June. Our visitors from afar today are Stuart, Spence & Shebish, from the USA, who play vigorous old-timey music!" }, "name": { "fi": "Stuart, Spence & Shebish (USA), Trio Tetris ja Pink Chameleons – Malmin tapahtumakesä", "sv": "Stuart, Spence & Shebish (USA), Trio Tetris och Pink Chameleons – Malms evenemangssommar", "en": "Stuart, Spence & Shebish (USA), Trio Tetris and Pink Chameleons – Malmi Summer of Events" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8E7916303EEED91289CE7FE9A0807345/Stuart_Spence_Shebish_USA_Trio_Tetris_ja_Pink_Chameleons", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8E7916303EEED91289CE7FE9A0807345/Stuart_Spence_Shebish_USA_Trio_Tetris_och_Pink_Chameleons", "en": "http://www.malmitalo.fi/en/events/event/8E7916303EEED91289CE7FE9A0807345/Stuart_Spence_Shebish_USA_Trio_Tetris_and_Pink_Chameleons" }, "description": { "fi": "<p>Pitkän linjan malmilaiset - garage-psykedeliaa huokuva Pink Chameleons sekä elektronista syntikkatykitystä tarjoileva Trio Tetris valtaavat Malmin tapahtumakesän konttilavan perjantaina 14.6. Päivän vierailevana tähtenä pontevaa old-time musiikkia soittava Stuart, Spence & Shebish Amerikasta!</p><p><b>OHJELMA</p><p>klo 17–18<br>Pink Chameleons</b></p><p>Pink Chameleons on Black Lizard-yhtyeen Paltsa-Kai Salaman luotsaama garage-psykedeliaa huokuva trio. <br>Yhtye yhdistää musiikissaan autotalliräminän ja psykedelian lisäksi elementtejä bluesista sekä kantrista. Tammikuussa 2024 yhtyeeltä ilmestyi tuoretta musiikkia ”Colors Seem to Fade” -singlen merkeissä.</p><p><b>klo 18.30-19.30<br>Stuart, Spence & Shebish (USA)</b></p><p>Amerikkalaiset Travis Stuart, Micah Spence ja Deb Shebish soittavat pontevaa old-time musiikkia. Muusikot yhdistävät uniikkiin soundiinsa viulun, banjon ja laulun.</p><p>Old-time musiikin eli perinteisen amerikkalaisen musiikin tyylin juuret ovat irlantilaisen, skotlantilaisen ja afrikkalaisen kansanmusiikissa. Sitä soitetaan kielisoittimilla, kuten bassolla, kitaralla, mandoliinilla, banjolla ja viululla.</p><p>Stuart, Spence ja Shebish ovat kotoisin Pohjois-Carolinasta, Georgiasta ja Indianasta. Travis Stuart ja Deb Shebish saivat vuonna 2023 arvostetun North Carolina Folklife Apprenticeship Grant -apurahan. Tämä dynaaminen trio puhaltaa uutta elämää perinteiseen old-time musiikkiin!</p><p><b>klo 20–21<br>Trio Tetris</b></p><p>Tanssi Malmin kesäillassa Trio Tetriksen tahtiin! Bändi tarjoilee elektronista tanssimusiikkia eri mausteilla.</p><p>Trio Tetris viettää tänä vuonna 25-vuotisjuhlavuottaan – toisin sanottuna vuosi on Trio Tetriksen varttihuntti! Juhlavuodestaan innoittuneena yhtye lähtee jälleen kiertueelle, joka kulkee nimellä “Wolrd Donimation Tour 2024”.</p><p>Tule, koe ja näe ja kuule tai jää kotiin, jolloin olet kokemusta köyhempi. Malmin tapahtumakesä esittää: Trio Tetris, olkaa hyvät.</p>", "sv": "<p>De långvariga malmborna Pink Chameleons som utstrålar garage-psykedelika samt Trio Tetris som bjuder på elektroniskt syntbombardemang tar över containerscenen på Malms evenemangssommar fredag 14.6. Dagens gäststjärna är Stuart, Spence & Shebish från USA som spelar energisk old-time musik.</p><p><b>Program:</p><p>kl. 17–18<br>Pink Chameleons</b><br>Pink Chameleons är en trio ledd av Paltsa-Kai Salama från bandet Black Lizard som utstrålar garage-psykedelika.</p><p>I sin musik kombinerar bandet garageskrällande och psykedelika med element från blues och country. I januari 2024 släppte bandet färsk musik med singeln “Colors Seem to Fade”.</p><p><b>kl. 18.30–19.30<br>Stuart, Spence & Shebish (USA)</b><br>Amerikanarna Travis Stuart, Micah Spence och Deb Shebish spelar energisk old-time musik. I sitt unika sound kombinerar musikerna fiol, banjo och sång.</p><p>Old-time musikens, det vill säga den traditionella amerikanska musikens stilrötter finns i irländsk, skotsk och afrikansk folkmusik. Den spelas på stränginstrument såsom bas, gitarr, mandolin, banjo och fiol.</p><p>Stuart, Spence and Shebish är hemma från Nord-Carolina, Georgia och Indiana. År 2023 mottog Travis Stuart och Deb Shebish mottog det ansedda stipendiet North Carolina Folklife Apprenticeship Grant. Den dynamiska trion blåser nytt liv i den traditionella old-time musiken!</p><p><b>kl. 20–21<br>Trio Tetris</b><br>Dans i Malms sommarkväll i takt med Trio Tetris! Bandet bjuder på elektronisk dansmusik med olika kryddor.</p><p>I år firar Trio Tetris sitt 25-årsjubileum – med andra ord är året Trio Tetris kvarthundring! Inspirerade av sitt jubileumsår åker bandet åter på en turné, som går under namnet “World Donimation Tour 2024”.</p><p>Kom, upplev och se och hör, eller bli hemma och var en upplevelse fattigare. Malm evenemangssommar presenterar: Trio Tetris, var goda!</p>", "en": "<p>Long-term local groups from Malmi, garage-psych outfit Pink Chameleons and electro-synth band Trio Tetris take over the Malmi Summer of Events container stage on Friday, 14 June. Our visitors from afar today are Stuart, Spence & Shebish, from the USA, who play vigorous old-timey music!</p><p><b>Programme:</p><p>5 pm to 6 pm<br>Pink Chameleons</b><br>Pink Chameleons are a garage-psych trio headed by Paltsa-Kai Salama, who is known for Black Lizard.</p><p>The band combines garage noise and psychedelia with elements from blues and country. Their latest single, ‘Colors Seem to Fade’, was released in January 2024.</p><p><b>6:30 pm to 7:30 pm<br>Stuart, Spence & Shebish (USA)</b><br>This American old-time music band consists of Travis Stuart, Micah Spence and Deb Shebish. The musicians combine violin, banjo and vocals to make their unique style of music.</p><p>Old-time music, or traditional American music, is based in Irish, Scottish and African folk music. It heavily features string instruments, such as bass, guitar, mandolin, banjo and violin.</p><p>Stuart, Spence and Shebish are from North Carolina, Georgia and Indiana. In 2023, Travis Stuart and Deb Shebish received the highly respected North Carolina Folklife Apprenticeship Grant. This terrific trio blows new life into traditional old-time music!</p><p><b>8 pm to 9 pm<br>Trio Tetris</b><br>Let Trio Tetris put the rhythm in your feet! Electronic dance music with all kinds of spice.</p><p>Trio Tetris is celebrating its 25th anniversary this year – it’s been a quarter century of Trio Tetris! Inspired by this occasion, the group is heading on our once again, calling it the ‘Wolrd Donimation Tour 2024’.</p><p>Come, see, hear and listen; be there, or be the square that misses out. Malmi Summer of Events presents: Trio Tetris, ladies and gentlemen.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63701/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63918", "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:42/?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/kulke:755/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151327, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-31T13:13:01.419779Z", "last_modified_time": "2024-05-31T13:13:01.419795Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753511.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151327/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-31T13:13:01.393574Z", "last_modified_time": "2024-06-12T07:12:51.947334Z", "date_published": null, "start_time": "2024-06-13", "end_time": "2024-08-03", "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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Näyttelyssä on esillä teoksia kahdesta eri maalaussarjasta.", "sv": "Utställningen visar verk från två olika serier av målningar.", "en": "The exhibition features works from two different series of paintings." }, "name": { "fi": "Tuuli Meriläinen: Ikimuistoiset hetket", "sv": "Tuuli Meriläinen: Ikimuistoiset hetket", "en": "Tuuli Meriläinen: Ikimuistoiset hetket" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/1F23B0E0BC456A0814E75766A67014B3/Tuuli_Merilainen_Ikimuistoiset_hetket", "sv": "http://www.malmitalo.fi/sv/evenemang/event/1F23B0E0BC456A0814E75766A67014B3/Tuuli_Merilainen_Ikimuistoiset_hetket", "en": "http://www.malmitalo.fi/en/events/event/1F23B0E0BC456A0814E75766A67014B3/Tuuli_Merilainen_Ikimuistoiset_hetket" }, "description": { "fi": "<p>Näyttelyssä on esillä teoksia kahdesta eri maalaussarjasta.</p><p>\"Ensimmäinen sarja, nimeltään Modern Fairytales käsittelee suomalaisten luontokokemuksia. Sarjaa varten<br>olen kerännyt ihmisten mieleenpainuvimpia kokemuksia luonnosta ja toteuttanut maalaukset niiden inspiroimana. Tarinat ovat luettavissa näyttelyn yhteydessä.</p><p>Toinen sarja, nimeltään Rauha käsittelee erilaisia tunnetiloja värien ja kauriiden välityksellä.</p><p>Modern Fairytales -sarjaa varten olen haastatellut kasvotusten ihmisiä ja tutustunut kuviin ja muuhun materiaaliin, jotka liittyvät kertomuksiin. Kertomukset on kirjoitettu<br>ylös ja niiden julkisuuteen on pyydetty haastateltavilta lupa. Tarinoita kertyi huomattava määrä ja kaikkia ei ole maalattu teokseksi. Sarjan toteuttamiseen sain apurahan<br>Karjalan kulttuurirahastosta, jonka avulla olen työskennellyt sarjan parissa puoli vuotta.</p><p>Olen aina pitänyt tarinoiden kuuntelemisesta sekä lukemisesta. Lapsuuteeni kuului eräretket ja tapahtumat, joihin liittyi tarinoiden kerrontaa nuotion ääressä. Vanhempien<br>ihmisten kertomuksista avautui toinen maailma ja niissä oli usein huumoria mukana, mikä puhutteli minua.</p><p>Vuonna 2019 näyttelyn avajaisten yhteydessä minulle kerrottiin niin vaikuttava tarina, että se sai haaveilemaan tarinan ikuistamisesta maalauksen keinoin. Tämä sai minut haastattelemaan ihmisiä, joilla oli hienoja kokemuksia<br>jaettavana ja kirjoittamaan tarinat ylös. Teoksia varten rajasin tarinoita niin, että ne liittyvät tavalla tai toisella luontoon. Suurin osa haastateltavista on vanhempaa ikäluokkaa, mutta mukana on myös nuoria.</p><p>Rauha-sarjan teokset ovat minulle tyypillisiä kauriinvasojen kuvauksia. Teoksissa on pääosassa rauhalliset värit ja tunteiden välittäminen ilmeikkäiden kauriinvasojen kautta.</p><p>Pyrin teoksillani tuottamaan iloa ja hyvää mieltä katsojalle. Teokset ovat visuaalisesti kauniita ja helposti samaistuttavia.\" taiteilija Tuuli Meriläinen kertoo.</p><p>Vapaa pääsy</p>", "sv": "<p>Utställningen visar verk från två olika serier av målningar.</p><p>”Den första serien, kallad Modern Fairytales, handlar om finländarnas naturupplevelser. Till serien har jag samlat<br>människors mest minnesvärda upplevelser av naturen och skapat målningarna inspirerade av dem. Berättelserna kan läsas i samband med utställningen. En annan serie som heter Peace handlar om olika känslotillstånd genom färger och rådjur.</p><p>Till serien Modern Fairytales har jag intervjuat människor ansikte mot ansikte och tittat på bilder och annat material relaterat till berättelserna. Berättelserna har skrivits ner<br>och intervjupersonerna har bett om tillstånd att offentliggöra dem. Ett stort antal berättelser samlades och inte alla har målats till ett verk. För att genomföra serien fick<br>jag bidrag från Karelens kulturfond som har hjälpt mig att arbeta med serien i ett halvår.</p><p>Jag har alltid gillat att lyssna på och läsa berättelser. Min barndom omfattade studiebesök och evenemang som innebar att berätta historier runt lägerelden. Äldre människors berättelser öppnade upp en annan värld och hade ofta humor i sig, vilket talade till mig.</p><p>2019, vid invigningen av utställningen, fick jag höra en historia så imponerande att den fick mig att drömma om att föreviga berättelsen genom att måla.<br>Detta ledde till att jag intervjuade människor som hade stora erfarenheter att dela med sig av och skriva ner berättelserna. Till verken smalnade jag in berättelserna så att de<br>relaterar till naturen på ett eller annat sätt. De flesta av de intervjuade är äldre, men det finns även unga.</p><p>Verken i Rauha-serien är för mig typiska skildringar av rådjur. Lugna färger och förmedling av känslor genom uttrycksfulla hjortansikten spelar huvudrollen i verken.<br>Med mina verk strävar jag efter att skänka glädje och gott humör till betraktaren. Verken är visuellt vackra och lätt att relatera till.” Tuuli Meriläinen</p>", "en": "<p>The exhibition features works from two different series of paintings.</p><p>“The first series, called Modern Fairytales, deals with Finns' experiences of nature. For the series, I have collected people's most memorable experiences with nature and created paintings inspired by them. The stories can be read in the exhibition. Another series called Peace, deals with different emotional states through colors and deer.</p><p>For the Modern Fairytales series, I have interviewed people face-to-face and looked at pictures and other material related to the stories. The narratives have been written down and permission to make them public has been asked from the interviewees. A considerable number of stories accumulated and not all of them have been painted into a work. To implement the series, I received a grant from the Karelia Culture Fund, which has helped me work on the series for half a year.</p><p>I have always liked listening to and reading stories. My childhood included field trips and events that involved telling stories around the campfire. The stories of older people<br>opened up another world and often had humor in them, which spoke to me.</p><p>In 2019, at the opening of the exhibition, I was told a story so impressive that it made me dream of<br>depicting the story through painting. This led me to interview people who had great experiences to share and write down the stories. For the works, I narrowed down the<br>stories so that they relate to nature in one way or another. Most of the interviewees are older, but there are also young people.</p><p>The works of the Rauha series are, for me, typical depictions of roe deer. Calm colors and the conveying of emotions through expressive deer faces play the main role in the works. With my works, I strive to bring joy and a good mood to the viewer. The works are visually beautiful and easily relatable.” Tuuli Meriläinen</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63918/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63602", "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:42/?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:755/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151029, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-07T15:12:47.104454Z", "last_modified_time": "2024-05-07T15:12:47.104471Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746041.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151029/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-07T15:12:47.047227Z", "last_modified_time": "2024-06-12T07:12:50.159013Z", "date_published": null, "start_time": "2024-06-08", "end_time": "2024-08-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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Kaikki ovat tervetulleita kirppistelemään paikkamaksutta kesälauantaisin Ala-Malmin puistoon. Muista kaikkien puistokävijöiden viihtyvyys ja kerää myymättömät tavarat pois ja siivoa jälkesi.", "sv": "Alla är välkomna att hålla loppis på sommarlördagar utan platsavgift. Kom ihåg trivsamheten för alla parkbesökare och för bort osålda varor och städa efter dig.", "en": "All are welcome to lay down their blankets at our Saturday flea markets, free of charge. Remember to keep the park clean for others and take away anything you haven’t sold." }, "name": { "fi": "Kesälauantain vilttikirppikset Ala-Malmin puistossa – Malmin tapahtumakesä", "sv": "Filtloppis på sommarlördagar i Nedre malms park – Malms evenemangssommar", "en": "Flea markets on picnic blankets in Ala-Malmi Park on summer Saturdays – Malmi Summer of Events" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/319B2AECB614DD5F06826EB695A71272/Kesalauantain_vilttikirppikset_Ala-Malmin_puistossa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/319B2AECB614DD5F06826EB695A71272/Filtloppis_pa_sommarlordagar_i_Nedre_malms_park", "en": "http://www.malmitalo.fi/en/events/event/319B2AECB614DD5F06826EB695A71272/Flea_markets_on_picnic_blankets_in_Ala-Malmi_Park_on_summer_Saturdays" }, "description": { "fi": "<p>Kaikki ovat tervetulleita kirppistelemään paikkamaksutta kesälauantaisin Ala-Malmin puistoon. Muista kaikkien puistokävijöiden viihtyvyys ja kerää myymättömät tavarat pois ja siivoa jälkesi.</p><p>Kesälauantaiden vilttikirppiksillä ei ole yksittäistä järjestäjätahoa, vaan jokainen kirpputorimyyjä on oman kirpparinsa järjestäjä ja vastuussa omista jäljistään.</p><p>Jos olet aikeissa tulla myymään tavaroitasi Ala-Malmin puistoon, suosittelemme levittämään sanaa, jotta mahdollisimman moni ostaja löytää paikalle. Hyviä väyliä tähän ovat esimerkiksi eri sosiaalisen median kanavat.</p><p>Malmin tapahtumakesän aikana puistossa liikkuu erityisen paljon väkeä, joten suosittelemme tutustumaan kesän ohjelmistoon, jos haluat tulla pitämään vilttikirppistä puistoon.</p>", "sv": "<p>Alla är välkomna att hålla loppis på sommarlördagar utan platsavgift. Kom ihåg trivsamheten för alla parkbesökare och för bort osålda varor och städa efter dig.</p><p>Sommarlördagarnas filtloppis har ingen enskild arrangör, utan varje loppisförsäljare är arrangör för sitt loppis och ansvarig för att städa efter sig.</p><p>Om du vill komma och sälja dina saker till Nedre Malms park, rekommenderar vi att du informerar så många du kan så att vi får många köpare på plats. Exempelvis fungerar sociala mediekanaler bra för detta.</p><p>Under Malms evenemangssommar rör sig särskilt mycket folk i parken, så vi rekommenderar att du tar del av sommarens program om du vill komma och hålla filtloppis i parken.</p>", "en": "<p>All are welcome to lay down their blankets at our Saturday flea markets, free of charge. Remember to keep the park clean for others and take away anything you haven’t sold.</p><p>There is no single organiser for the summer flea markets on Saturdays – every merchant is responsible for their spot and what they leave behind.</p><p>If you want to come and sell your used goods in Ala-Malmi Park, we recommend that you spread the word so that as many buyers find their way there. For this, your social media channels are indispensable.</p><p>Ala-Malmi Park is once again the place for flea market merchants from the first Saturday of June for the entirety of summer. During the Malmi Summer of Events, there will be a lot of people coming to the park, and we recommend reading about the summer programme if you want to put down your blanket in the park.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63602/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63370", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?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:755/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150597, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T07:13:43.040905Z", "last_modified_time": "2024-04-16T07:13:43.040918Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745410.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150597/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T07:13:43.017383Z", "last_modified_time": "2024-06-12T07:12:49.635953Z", "date_published": null, "start_time": "2024-06-04T14:30:00Z", "end_time": "2024-08-06T15:15: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Foxista fuskuun, jenkasta sambaan, valssista tangoon. Kesällä 2024 opetellaan jälleen paritansseja.", "sv": "Gratis undervisning i pardanser på finska på Boställsvägen 6 genom hela sommaren, sammanlagt 10 gånger.", "en": "Free-of-charge and Finnish-language partner dance teaching at Puustellintie 6 throughout the summer, 10 sessions in all." }, "name": { "fi": "Kaupunkitanssit Malminkartanon Puustellinaukiolla", "sv": "Stadsdans", "en": "Dancing in the City" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/3D7C025C2EE0CC70BB0BF2DCCE40AE7E/Kaupunkitanssit_Malminkartanon_Puustellinaukiolla", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/3D7C025C2EE0CC70BB0BF2DCCE40AE7E/Stadsdans", "en": "http://www.kanneltalo.fi/en/events/event/3D7C025C2EE0CC70BB0BF2DCCE40AE7E/Dancing_in_the_City" }, "description": { "fi": "<p>Foxista fuskuun, jenkasta sambaan, valssista tangoon. Kesällä 2024 opetellaan jälleen paritansseja.</p><p>Kaupunkitansseissa pääset erilaisten paritanssien pyörteisiin ohjatusti ja täysin maksutta. Et tarvitse ennakkotaitoja, ilmoittautumista tai edes tanssiparia – paikan päältä löytyy!</p><p>Seuraathan tanssipäivän säätä: kovalla sateella tanssit peruuntuvat. Peruutuksesta kerrotaan Kaupunkitanssien Facebookissa (www.facebook.com/Kaupunkitanssit)</p><p>Mukaan tanssimaan voi tulla milloin vain. Opetuksesta vastaavat koulutetut tanssinopettajat.<br> <br>Malminkartanon Puustellinaukiolla tanssitaan kaupunkitansseja tiistaisin 4.6.–6.8.2024 klo 17.30–18.15.</p><p>Kesän 2024 tanssit: <br>ti 4.6. valssi<br>ti 11.6. kävelyhumppa<br>ti 18.6. fusku<br>ti 25.6. cha cha <br>ti 2.7. masurkka<br>ti 9.7. foksi<br>ti 16.7. jenkka<br>ti 23.7. samba<br>ti 30.7. bugg <br>ti 6.8. tango</p><p>HUOM! Tanssipaikkana Malminkartanon Puustellinaukio, Puustellintie 6.</p>", "sv": "<p>Gratis undervisning i pardanser på finska på Boställsvägen 6 genom hela sommaren, sammanlagt 10 gånger.</p><p>På finska.</p>", "en": "<p>Free-of-charge and Finnish-language partner dance teaching at Puustellintie 6 throughout the summer, 10 sessions in all.</p><p>The teaching happens in Finnish, but it’s possible to join with out speaking the language.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63370/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63559", "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:42/?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:732/?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: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150938, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-03T11:13:03.629318Z", "last_modified_time": "2024-05-03T11:13:03.629334Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746043.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150938/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-03T11:13:03.613771Z", "last_modified_time": "2024-06-12T07:12:49.466077Z", "date_published": null, "start_time": "2024-06-04", "end_time": "2024-06-27", "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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Tule mukaan lumoutumaan liikunnasta kauniissa Ala-Malmin puistossa. Kesäkuussa 2024 tiistaisin kehonhuoltoa klo 15–16 ja torstaisin puistojumppaa klo 17–18. Vapaa pääsy.", "sv": "Kom med och njut av motion i vackra Nedre Malms park! I juni 2024 kroppsvård på tisdagar kl. 15–16 och parkgymppa på torsdagar kl. 17–18. Fritt inträde.", "en": "Join us and be enchanted by exercise in naturally beautiful Ala-Malmi Park! In June 2024, we are holding body care sessions on Tuesdays at 3 pm to 4 pm and park exercise sessions on Thursdays at 5 pm to 6 pm. Admission is free." }, "name": { "fi": "Puistojumppaa ja kehonhuoltoa Ala-Malmin puistossa – Malmin tapahtumakesä", "sv": "Parkgymnastik och kroppsvård i Nedre Malms park – Malms evenemangssommar", "en": "Park exercise and body care at Ala-Malmi Park – Malmi Summer of Events" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DC2E412B541B9D3740978559557B9EF8/Puistojumppaa_ja_kehonhuoltoa_Ala-Malmin_puistossa", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DC2E412B541B9D3740978559557B9EF8/Parkgymnastik_och_kroppsvard_i_Nedre_Malms_park", "en": "http://www.malmitalo.fi/en/events/event/DC2E412B541B9D3740978559557B9EF8/Park_exercise_and_body_care_at_Ala-Malmi_Park" }, "description": { "fi": "<p>Tule mukaan lumoutumaan liikunnasta kauniissa Ala-Malmin puistossa. Kesäkuussa 2024 tiistaisin kehonhuoltoa klo 15–16 ja torstaisin puistojumppaa klo 17–18. Vapaa pääsy.</p><p>Rentouttavalla kehonhuoltotunnilla huolletaan kehoa pehmeän liikkeen avulla. Tunnilla vähennetään lihaskireyksiä, avataan liikeratoja, parannetaan nivelliikkuvuutta ja rentoutetaan kehoa. <br>Tunnille kannattaa ottaa oma jumppa-alusta mukaan. Kehonhuoltoa ei järjestetä sateella.</p><p>Puistojumpat pitävät sisällään alkulämmittelyn, askellusta, lihaskuntoa sekä loppuvenyttelyt. Jokainen voi osallistua jumppaan oman kuntonsa mukaan. Puistojumpassa saatetaan liikkua eri tasoissa, kuten esimerkiksi seisten, polvien päällä ja maassa. Puistojumppiin kannattaa ottaa oma jumppa-alusta mukaan. Puistojumppia ei järjestetä sateella.</p><p><b>Puistojumpan ja kehonhuoltotuntien aikataulut kesällä 2024 Ala-Malmin puistossa:</b></p><p>Kesäkuu 2024<br>Ti 4.6 klo 15–16 Kehonhuolto<br>To 6.6 klo 14–15 Puistojumppa<br>Ti 11.6 klo 15–16 Kehonhuolto<br>To 13.6 klo 17–18 Puistojumppa<br>Ti 18.6 klo 15–16 Kehonhuolto<br>Ti 25.6 klo 15–16 Kehonhuolto<br>To 27.6 klo 17–18 Puistojumppa</p><p>Elokuu 2024<br>Ti 20.8 klo 15–16 Kehonhuolto<br>To 22.8 klo 17–18 Puistojumppa</p><p>Huom! Torstaina 20.6. ja heinäkuussa ei ole jumppaa eikä kehonhuoltotunteja.</p>", "sv": "<p>Kom med och njut av motion i vackra Nedre Malms park! I juni 2024 kroppsvård på tisdagar kl. 15–16 och parkgymppa på torsdagar kl. 17–18. Fritt inträde.</p><p>På den avslappnande kroppsvårdstimmen vårdar vi kroppen med hjälp av mjuka rörelser. På timmen lättar vi muskelspänningar, öppnar rörelsebanor, förbättrar ledernas rörlighet och slappnar av kroppen. Det är bra att ta med en egen gympamatta till timmen. Kroppsvård ordnas inte vid regn.</p><p>Parkgymnastiken innefattar uppvärmning, step up, muskelträning och stretching. Alla kan delta i gymppan enligt sin kondition. I parkgymppan kan vi röra oss i olika nivåer, exempelvis stå upp, stå på knäna och ligga på marken. Det är bra att ta med en egen gympamatta till parkgymppan. Parkgympan ordnas inte vid regn.</p><p><b>Schema för parkgympa och kroppsvård under sommaren 2024 i Nedre Malms park</b></p><p>Ti 4.6 kl. 15–16 Kroppsvård<br>To 6.6 kl. 14–15 Parkgympa<br>Ti 11.6 kl. 15–16 Kroppsvård<br>To 13.6 kl. 17–18 Parkgympa<br>Ti 18.6 kl. 15–16 Kroppsvård<br>Ti 25.6 kl. 15–16 Kroppsvård<br>To 27.6 kl. 17–18 Parkgympa</p><p>Ti 20.8 kl. 15–16 Kroppsvård<br>To 22.8 kl. 17–18 Parkgympa</p><p>Obs! Torsdag 20.6. och I juli ordnas ingen gympa eller inga kroppsvårdstimmar.</p>", "en": "<p>Join us and be enchanted by exercise in naturally beautiful Ala-Malmi Park! In June 2024, we are holding body care sessions on Tuesdays at 3 pm to 4 pm and park exercise sessions on Thursdays at 5 pm to 6 pm. Admission is free.</p><p>Relaxing body care sessions are about soft movements that take care of your body. These sessions are for smoothing out the kinks of your body, opening up your range of movement, limbering up your joints and relaxing your body. We recommend bringing your own exercise mat. Body care sessions will not be held if it rains.</p><p>Park exercise sessions include a warm-up, steps, muscular fitness and a final stretching. Everyone can join these sessions to the degree of their own fitness. Park exercise may include movements on different levels, such as standing, on your knees or on the ground. It is a good idea to bring your own exercise mat to the park exercise sessions. Park exercise sessions will not be held if it rains.</p><p><b>Schedule for park workouts and body care sessions in the summer of 2024 in Ala-Malmi Park</b></p><p>Tue 4 June 3–4 pm Body Care<br>Thu 6 June 2–3 pm Park Exercise<br>Tue 11 June 3–4 pm Body Care<br>Thu 13 June 5–6 pm Park Exercise<br>Tue 18 June 3–4 pm Body Care<br>Tue 25 June 3–4 pm Body Care<br>Thu 27 June 5–6 pm Park Exercise</p><p>Tue 20 Aug 3–4 pm Body Care<br>Thu 22 Aug 5–6 pm Park Exercise</p><p>Please note: Neither the park exercise nor the body care sessions will be held in July.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63559/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61173", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?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:p11617/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 11082, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-02-27T15:14:40.543354Z", "last_modified_time": "2024-02-27T15:14:40.543402Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_738236.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/11082/?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": "2024-02-27T15:14:40.509071Z", "last_modified_time": "2024-06-12T07:12:48.644335Z", "date_published": null, "start_time": "2024-05-31T06:00:00Z", "end_time": "2024-06-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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Helsingin Nuorisopalvelut järjestää pääkaupunkiseudun 15–25-vuotiaiden nuorten yhteisnäyttelyn, jossa aiempaan tapaan on esillä muun muassa maalauksia, videoita, valokuvia ja veistoksia.", "sv": "Helsingfors ungdomstjänster ordnar en gemensam utställning för ungdomar i åldern 15–25 år från huvudstadsregionen, där målningar, videor, fotografier och skulpturer ställs ut på samma sätt som tidigare år.", "en": "Helsinki Youth Services organises a joint exhibition of young people aged 15 to 25 from the Helsinki metropolitan area. As before, the exhibition includes paintings, videos, photographs and sculptures, among other works of art." }, "name": { "fi": "Nuorten Taide Nyt 2024 Liekeissä", "sv": "Ung konst nu 2024 I brand", "en": "Young Visual Art Now 2024 Aflame" }, "provider_contact_info": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/13BFAB2036D1E8B14B8DF69539D584FA/Nuorten_Taide_Nyt_2024_Liekeissa_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/13BFAB2036D1E8B14B8DF69539D584FA/Ung_konst_nu_2024_I_brand", "en": "http://www.kanneltalo.fi/en/events/event/13BFAB2036D1E8B14B8DF69539D584FA/Young_Visual_Art_Now_2024_Aflame" }, "description": { "fi": "<p>Helsingin Nuorisopalvelut järjestää pääkaupunkiseudun 15–25-vuotiaiden nuorten yhteisnäyttelyn, jossa aiempaan tapaan on esillä muun muassa maalauksia, videoita, valokuvia ja veistoksia.</p><p>Avoimet avajaiset to 30.5. klo 17–19, lämpimästi tervetuloa.</p>", "sv": "<p>Helsingfors ungdomstjänster ordnar en gemensam utställning för ungdomar i åldern 15–25 år från huvudstadsregionen, där målningar, videor, fotografier och skulpturer ställs ut på samma sätt som tidigare år.</p><p>Öppen vernissage den 30 maj kl. 17–19, varmt välkomna.</p>", "en": "<p>Helsinki Youth Services organises a joint exhibition of young people aged 15 to 25 from the Helsinki metropolitan area. As before, the exhibition includes paintings, videos, photographs and sculptures, among other works of art.</p><p>Opening ceremony free of charge on Thursday, 30 May, 17–19; you’re warmly welcome!</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61173/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63455", "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: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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151018, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-07T08:13:48.063074Z", "last_modified_time": "2024-05-07T08:13:48.063092Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750062.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151018/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-07T08:13:48.013101Z", "last_modified_time": "2024-06-12T05:13:30.614227Z", "date_published": null, "start_time": "2024-06-12", "end_time": "2024-08-18", "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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Roihupellon alueella työskentelevät jäsentaiteilijat tuovat Stoan galleriaan kirjavan kokoelman erilaista taidetta. Ryhmänäyttely juhlistaa Stoan 40-vuotista taivalta.", "sv": "Medlemskonstnärer som arbetar i Kasåkerns område hämtar en brokig samling av olika former av konst till Stoas galleri. Grupputställningen firar Stoas 40-åriga väg.", "en": "Member artists working in the Roihupelto area bring a diverse collection of different art to Stoa’s gallery. Group exhibition celebrates Stoa’s 40th anniversary." }, "name": { "fi": "Luovuus itää – Roihupellon taidekorttelin näyttely", "sv": "Kreativiteten spirar – Kasåkerns konstkvarter", "en": "Luovuus itää (Creativity sprouts) – Roihupelto art quarters" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5025D20DC7232EBF96554265B4F31644/Luovuus_itaa_", "sv": "http://www.stoa.fi/sv/evenemang/event/5025D20DC7232EBF96554265B4F31644/Kreativiteten_spirar", "en": "http://www.stoa.fi/en/events/event/5025D20DC7232EBF96554265B4F31644/Luovuus_itaa_Creativity_sprouts_" }, "description": { "fi": "<p>Roihupellon alueella työskentelevät jäsentaiteilijat tuovat Stoan galleriaan kirjavan kokoelman erilaista taidetta. Ryhmänäyttely juhlistaa Stoan 40-vuotista taivalta.</p><p>Näyttely on kattava kuvaus eri taiteen aloilta: maalaustaidetta, installaatioita, keramiikkataidetta, esinekoosteita grafiikkaa, valokuvataidetta, veistoksia, digitaalista taidetta sekä tekstiilitaidetta.</p><p>Näemme myös miltä taiteen tulevaisuus mahtaa näyttää 32 taiteilijan silmin.</p><p><b>Näyttelyn taiteilijat:</b><br>Alrsumi Anne Mari<br>Altunluoglu Sevde Leila <br>Eeronheimo Aino<br>Hakala Elias <br>Heiskanen Marja<br>Hämäläinen Katri & Raine<br>Isomäki Milla <br>Joutsen Janne <br>Kannisto Risto<br>Kauhala Oona<br>Korvenoja Nina <br>Kostamovaara Anni <br>Kunnas Inari<br>Kuronen Kirsi <br>Morina Serena <br>Mughal Maria<br>Myllykangas Liisi<br>Nylander Jenni<br>Nylander Pirjo<br>Roschier Heidi <br>Räsänen Leena <br>Salonen Di Giorgio Merja <br>Sammalvaara Melissa <br>Saraste Misa<br>Sinisalo Jyrki <br>Sirnö Minna <br>Sundqvist Arja <br>Tuhkanen Heli <br>Vallemaa Mari<br>Vähälä-Aranko Hillevi <br>Weiss Marie<br>Wolfram Maria</p><p>Lämpimästi tervetuloa avajaisiin Helsinki-päivänä ke 12.6. klo 17-20.</p>", "sv": "<p>Medlemskonstnärer som arbetar i Kasåkerns område hämtar en brokig samling av olika former av konst till Stoas galleri. Grupputställningen firar Stoas 40-åriga väg.</p><p>Utställningen beskriver olika konstområden på ett omfattande sätt: måleri, installationer, keramikkonst, assemblage, grafik, fotografi, skulptur, digital konst och textilkonst. Vi får också se hur konstens framtid kan komma att se ut genom 32 konstnärers ögon.</p><p><b>Konstnärer</b><br>Alrsumi Anne Mari<br>Altunluoglu Sevde Leila <br>Eeronheimo Aino<br>Hakala Elias <br>Heiskanen Marja<br>Hämäläinen Katri & Raine<br>Isomäki Milla <br>Joutsen Janne <br>Kannisto Risto<br>Kauhala Oona<br>Korvenoja Nina <br>Kostamovaara Anni <br>Kunnas Inari<br>Kuronen Kirsi <br>Morina Serena <br>Mughal Maria<br>Myllykangas Liisi<br>Nylander Jenni<br>Nylander Pirjo<br>Roschier Heidi <br>Räsänen Leena <br>Salonen Di Giorgio Merja <br>Sammalvaara Melissa <br>Saraste Misa<br>Sinisalo Jyrki <br>Sirnö Minna <br>Sundqvist Arja <br>Tuhkanen Heli <br>Vallemaa Mari<br>Vähälä-Aranko Hillevi <br>Weiss Marie<br>Wolfram Maria</p>", "en": "<p>Member artists working in the Roihupelto area bring a diverse collection of different art to Stoa’s gallery. Group exhibition celebrates Stoa’s 40th anniversary.</p><p>The exhibition is a comprehensive description of different fields of art: painting, installations, ceramic art, object compositions, graphics, photography, sculptures, digital art and textile art. We can also see what the future of art looks like through the eyes of 32 artists.</p><p><b>Artists:</b><br>Alrsumi Anne Mari<br>Altunluoglu Sevde Leila <br>Eeronheimo Aino<br>Hakala Elias <br>Heiskanen Marja<br>Hämäläinen Katri & Raine<br>Isomäki Milla <br>Joutsen Janne <br>Kannisto Risto<br>Kauhala Oona<br>Korvenoja Nina <br>Kostamovaara Anni <br>Kunnas Inari<br>Kuronen Kirsi <br>Morina Serena <br>Mughal Maria<br>Myllykangas Liisi<br>Nylander Jenni<br>Nylander Pirjo<br>Roschier Heidi <br>Räsänen Leena <br>Salonen Di Giorgio Merja <br>Sammalvaara Melissa <br>Saraste Misa<br>Sinisalo Jyrki <br>Sirnö Minna <br>Sundqvist Arja <br>Tuhkanen Heli <br>Vallemaa Mari<br>Vähälä-Aranko Hillevi <br>Weiss Marie<br>Wolfram Maria</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63455/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63247", "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:32/?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: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": false, "offer_price_groups": [], "price": { "fi": "20 € /10 € / 5 €", "sv": "20 € /10 € / 5 €", "en": "20 € /10 € / 5 €" }, "info_url": { "fi": "https://www.esitys.fi/lippukauppa", "sv": "https://www.esitys.fi/lippukauppa", "en": "https://www.esitys.fi/lippukauppa" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150914, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T14:13:11.258658Z", "last_modified_time": "2024-04-30T14:13:11.258672Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746229.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150914/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T14:13:11.246019Z", "last_modified_time": "2024-06-12T05:13:29.885944Z", "date_published": null, "start_time": "2024-06-09T16: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.", "sv": "Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.", "en": "Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”." }, "name": { "fi": "Jäljellä olevaa – tanssiesitys suusta – Lin Da & työryhmä", "sv": "Jäljellä olevaa – dansföreställningen om munnen – Lin Da med arbetsgrupp", "en": "Jäljellä olevaa – dance performance about mouth – Lin Da & working group" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/DB87C630AED1BE22693AABEEB3B1B584/Jaljella_olevaa_tanssiesitys_suusta", "sv": "http://www.stoa.fi/sv/evenemang/event/DB87C630AED1BE22693AABEEB3B1B584/Jaljella_olevaa_dansforestallningen_om_munnen", "en": "http://www.stoa.fi/en/events/event/DB87C630AED1BE22693AABEEB3B1B584/Jaljella_olevaa_dance_performance_about_mouth" }, "description": { "fi": "<p>Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.</p><p>Suu on pulssaava konsertti, maisema ja tila, jossa kehot kytkeytyvät itseensä, toisiin ja äärettömään. Suun reflektoimisen myötä ruumiillisuus, kokemuksellisuus ja sisäinen maailma ovat laajentuneet pohdinnoiksi äärettömyydestä ja rajattomuudesta, jossa kaikki oleva on kytköksissä toisiinsa.</p><p>Jäljellä olevaa avaa tilaa suulle purkaen sen ilmaisun kahleita ja sallien ruumiin näkyväksi tulemisen. Työryhmä rentoutuu suun olemuksen äärelle – sen hetkellisyyteen ja aistillisuuteen. Katsojat kohtaavat teoksen ryhmässä, joka kutsutaan matkalle, ravitaan ja stimuloidaan.</p><p><b>Lin Da</b> (aka Lin Martikainen) on muunsukupuolinen taiteilija, koreografi ja esiintyjä, jonka työskentelyn keskiössä ovat vuorovaikutus, huolenpito, kosketus, somatiikka sekä keskeneräisyyden kanssa oleminen. Linin taiteellinen työskentely tapahtuu nykykoreografian ja nykytanssin sekä esitystaiteen ja kuvataiteiden välisyyksissä ruumiillisen olemisen herkkyyden kanssa työskennellen.</p><p>Hänen töitään on esitetty mm. Mad House Helsingissä, Musiikkitalon Camerata-salissa, UrbanApa X Ateneum -festivaalilla, Loikka-tanssielokuvafestivaalilla sekä Kölnissä Tanzfaktur’n Sommer Akademie -festivaalilla ja Amsterdamissa NEU/NOW Online -festivaalilla. Lin on valmistunut Taideyliopistosta kuvataiteen maisteriksi (2023) ja tanssitaiteen maisteriksi (2016).</p><p><b>Työryhmä:</b><br>Koreografi ja ohjaaja Lin Da<br>Esiintyjät Taru Aho, Geoffrey Erista, Amita Kilumanga ja Jyri Pirinen<br>Pukusuunnittelija Amita Kilumanga<br>Äänisuunnittelija Jyri Pirinen<br>Tuotanto Lin Da, Esitystaiteen seura ja Stoa</p><p><b>Tukijat:</b><br>Jenny ja Antti Wihurin rahasto, Niilo Helanderin säätiö, Esitystaiteen seura ja Stoa</p>", "sv": "<p>Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen är en pulserande konsert, ett landskap och ett utrymme där kroppar ansluter till sig själva, andra och oändligheten. I och med reflektionerna över munnen har förkroppsligandet, upplevelsen och den inre världen utvidgats till begrundande över oändlighet och gränslöshet, där allt som är sammanlänkas.</p><p>Det som återstår öppnar utrymme för munnen, bryter dess uttrycksbojor och låter kroppen bli synlig. Arbetsgruppen slappnar av inför munnens väsen – dess momentanitet och sinnlighet. Åskådarna möter verket i grupp, bjuds in på en resa, får näring och stimulans.</p><p>Lin Da (alias Lin Martikainen) är en icke-binär konstnär, koreograf och artist vars arbete fokuserar på interaktion, omsorg, beröring, somatik och att vara närvarande med det ofullbordade. Lins konstnärliga arbete utspelar sig i skärningspunkten mellan samtida koreografi och modern dans, scenkonst och bildkonst, och de arbetar med känsligheten i det förkroppsligade tillvaron.</p><p>Deras verk har presenterats på bland annat Mad House Helsinki, Camerata-salen i Musikhuset, på UrbanApa X Ateneum-festivalen, Loikka-dansfilmfestivalen, Tanzfakturs Sommer Akademie-festivalen i Köln och NEU/NOW Online-festivalen i Amsterdam. Lin har utexaminerats som magister i bildkonst (2023) och magister i danskonst (2016) från Konstuniversitetet.</p><p><b>Arbetsgrupp:</b><br>Koreograf och regissör Lin Da<br>Medverkande Taru Aho, Geoffrey Erista, Amita Kilumanga och Jyri Pirinen<br>Kostymdesigner Amita Kilumanga<br>Ljuddesigner Jyri Pirinen<br>Produktion Lin Da, Esitystaiteen seura och Stoa</p><p><b>Stödd av:</b><br>Jenny och Antti Wihuris stiftelse, Niilo Helanders stiftelse, Esitystaiteen seura och Stoa</p>", "en": "<p>Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”.</p><p>The mouth reaches to encounter, it reaches towards the skin and nourishment. The mouth can sense the world, yet also harm, disassemble and threaten. The working group puts itself on display on stage while opening to the contradictions of the mouth and questioning the definition of the stage.</p><p>The tone of the dance performance is created by the experience of the mouth – it is a pulsating concert, a landscape, and a space where bodies connect within themselves, with others and the infinite.</p><p>The audience members encounter the work as a collective who is invited on a journey to be nourished and stimulated.</p><p>Jäljellä olevaa creates space for the mouth, unshackling its expression and allowing the body to become visible. The working group relaxes into the essence of the mouth – its ephemerality and sensuality.</p><p>Choreographer Lin Da's longing to be with a limited area and theme evokes its limitless potential. Reflection on the mouth, corporeality, experientiality, and the inner world have expanded into reflections on infinity and limitlessness, where all beings are connected.</p><p>The performances take place at Stoa - make sure to secure your spot!</p><p>The performance is accompanied by an exhibition that will take place in Stoa's gallery 19.5-9.6.2024. Lin Da's Jälkiä ja kaikuja (Traces and echoes) exhibition asks whether the cavity of the mouth could be perceived as a landscape. A warm welcome to the opening of the exhibition at Stoa gallery on Saturday 18.5. at 15:00. As part of the opening program Lin Da will perform their latest work - titled Dripping sketch - solo for a mouth.</p><p>Lin Da (they/them) is a non-binary artist, choreographer and performer whose work focuses on interaction, care, touch, somatics and being with incompleteness. Lin's artistic work takes place between contemporary choreography and contemporary dance, as well as performance art and visual arts. They work with the sensitivity of the bodily being.</p><p>Lin’s works have been displayed at Mad House Helsinki, Camerata Hall at the Helsinki Music Centre, UrbanApa X Ateneum Festival, Loikka Dance Film Festival, Tanzfaktur's Sommer Akademie Festival in Cologne and NEU/NOW Online Festival in Amsterdam. Lin graduated from the Uniarts Helsinki with the Master of Fine Arts degree (2023) and the Master of Arts in Dance (2016).</p><p><b>Working group</b><br>Choreographer and director Lin Da<br>Performers Taru Aho, Geoffrey Erista, Amita Kilumanga and Jyri Pirinen<br>Costume designer Amita Kilumanga<br>Sound designer Jyri Pirinen<br>Production Lin Da<br>Co-producers Esitystaiteen seura (Live Art Society) ja Stoa<br>Supporters Jenny ja Antti Wihurin rahasto (Jenny and Antti Wihuri Foundation, Niilo Helanderin säätiö (Niilo Helander Foundation), Taiteen edistämiskeskus (Arts Promotion Finland), Helsingin kaupunki (City of Helsinki), Esitystaiteen seura (Live Art Society) and Stoa</p><p>Performances at Stoa (Turunlinnantie 1, Itäkeskus, Helsinki).</p><p>Premier:<br>Fri 31.5. at 20.30</p><p>Other performances:<br>Sat 1.6. at 17<br>Sun 2.6. at 19<br>Fri 7.6. at 19<br>Sun 9.6. at 19</p><p>Tickets: https://www.esitys.fi/lippukauppa</p><p>Age recommendation: 12+</p><p>Accessibility<br>There are two wheelchair spaces in each performance. If you would like to reserve a wheelchair spot, please contact the Live Art Society's producer Sonja Korkman (+358 44 725 77 00/info@esitys.fi) to inquire about the availability. Please let us know at the same time if you want to reserve a seat for an assistant. The seats are unnumbered.</p><p>There is very little talking in the performance. The languages are Finnish and English.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63247/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63667", "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: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/kulke:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151093, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-10T14:12:48.260203Z", "last_modified_time": "2024-05-10T14:12:48.260218Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745633.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151093/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-10T14:12:48.232096Z", "last_modified_time": "2024-06-12T05:13:29.610527Z", "date_published": null, "start_time": "2024-06-08T11:00:00Z", "end_time": "2024-06-08T13: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "URB X STOA tuo Stoan aukiolle kattauksen kiinnostavia artisteja. Upeiden keikkojen lisäksi voit osallistua graffitityöpajaan ja ihailla monipuolista taidetta.", "sv": "URB X STOA hämtar en rad intressanta artister till Stoaplatsen. Utöver fantastiska spelningar kan du delta i en graffitiworkshop och beundra mångsidig konst.", "en": "URB X STOA brings a selection of interesting artists to Stoa square. In addition to spectacular gigs, you can participate in a graffiti workshop and admire diverse art." }, "name": { "fi": "Isaac Sene, Ikenna Anyabuike, Out of Sync & Yalla-kollektiivi", "sv": "Isaac Sene, Ikenna Anyabuike, Out of Sync & Yalla-kollektiivi", "en": "Isaac Sene, Ikenna Anyabuike, Out of Sync & Yalla-kollektiivi" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/BAFD1C4C851A77EC372B7104E99D91E8/Isaac_Sene_Ikenna_Anyabuike_Out_of_Sync_Yalla-kollektiivi", "sv": "http://www.stoa.fi/sv/evenemang/event/BAFD1C4C851A77EC372B7104E99D91E8/Isaac_Sene_Ikenna_Anyabuike_Out_of_Sync_Yalla-kollektiivi", "en": "http://www.stoa.fi/en/events/event/BAFD1C4C851A77EC372B7104E99D91E8/Isaac_Sene_Ikenna_Anyabuike_Out_of_Sync_Yalla-kollektiivi" }, "description": { "fi": "<p>URB X STOA tuo Stoan aukiolle kattauksen kiinnostavia artisteja. Upeiden keikkojen lisäksi voit osallistua graffitityöpajaan ja ihailla monipuolista taidetta.</p><p><b>OHJELMA<b></p><p>klo 14.00 Yalla! <br>klo 14.30 Ikenna<br>klo 15.00 Out of Sync<br>klo 15.30 Yalla!<br>klo 16.00 Isaac Sene</p><p><b>Artistit</p><p>Isaac Sene</b></p><p>Siilijärveltä ponnistava Isaac Sene on monilahjakas artisti/lauluntekijä. Isaac Senen musiikki on modernia soul-vivahteista poppia, jolla voidaan myös kuulla vaikutteita jazz-musiikista. Isaac Sene avaa musiikissaan päivittäisiä tuntojaan sekä tarinoita omasta elämästään ja ympäriltään. Realistisiin teksteihin sekoittuvat kuitenkin luontevasti myös mielikuvituksesta syntyvät maailmat ja tarinat.</p><p>Muuntautumiskykyinen ja ilmiömäisen karismaattinen Isaac Sene kilpaili keväällä 2022 Suomen Euroviisu-edustajuudesta Uuden musiikin kilpailussa kappaleella \"Kuuma jäbä\" ja nousikin kilpailun myötä koko kansan tietoisuuteen. Isaac Sene julkaisi kesällä 2023 ”Sori bro” EP:n.</p><p><b>Ikenna Anyabuike</b><br>Ikenna Anyabuike (taiteilijanimeltään IIIA), on monien taidelajien taituri, joka tunnetaan omistautumisestaan surrealistiseen eksentrisyyteen. Hän on viettänyt suurimman osan elämästään esiintymisen parissa, niin näyttelemisen, kirjoittamisen kuin musiikin kanssa. Ikenna on ollut mukana monissa palkituissa yhteistyöprojekteissa eri taiteiden saralla. Musiikillisesti Ikenna jatkaa yleisöjen viehättämistä ainutlaatuisella yhdistelmällään jazzia, soulia ja intiimiä runoutta. Viime aikoina hän on keskittynyt toisen itsenäisen albuminsa, ‘Ghetto Lullabies For The Daughter I Might Never Have’, julkaisuun.</p><p>Ikennan taiteellinen matka on ollut täynnä tunnustuksia ja saavutuksia. Runoudesta näyttelemiseen, näytelmien kirjoittamiseen ja musiikkiin, Ikennan intohimo taiteeseen ja sitoutuminen rajojen rikkomiseen ovat pysyneet horjumattomina. Hän uskoo, että näyttämön, sijainnista riippumatta, pitäisi olla tila ”radikaalille hyväksynnälle, kollektiiviselle tunteelle ja pelottomalle ilmaisulle.”</p><p><b>Yalla Collective</b><br>Helsinkiläinen Yalla Collective on dj-joukko, joka kutsuu juhlimaan Lähi-idän ja Pohjois-Afrikan kulttuureja. Tanssilattialla kohtaavat pop ja perinteet, darbuka ja tasabiitit sulavasti sekoittuen. Keskiössä on rakkaus musiikin yhdistävään voimaan. Kaikki mukaan, Yalla!</p><p><b>Out of Sync</b> <br>Sensaatiomainen drag king -poikabändi Out of Sync vierailee URB Festivalilla osana maailmankiertuettaan! Valmistaudu elämäsi show'hun, joka on hurmannut faneja ympäri maailman.</p><p><b>Taiteilijat</p><p>Joni Nordström<br>Graffitityöpaja</b><br>Joni Nordström on 30 vuotta graffiteja maalannut taiteilija Länsi-Helsingistä. Nordström vetää graffitityöpajan Stoan aukiolla. Kaikki ovat tervetulleita 5-vuotiaasta ylöspäin! Työpajassa piirretään tusseilla ja maalataan spraymaaleilla ulkona.</p><p><b>Selma Mataich</b><br>Selma Mataich on irakilais-marokkolainen suunnittelija ja kuvataiteilija, joka asuu Helsingissä. Työssään hän tutkii kehon ja vaatteen välistä suhdetta suunnittelun ja taiteellisen tutkimuksen kautta.</p><p>Matachin työprosessi on intuitiivinen. Hän tutkii perinteisin käsityömenetelmin identiteettejä ja kulttuuriperintöä, yksilöllisiä ja kollektiivisia suhteita sekä upotettuja merkityksiä. Kokemuksia kuvataan monimutkaisissa taideteoksissa usein tekstiilien ja vaatteiden muodossa.</p><p><b>Haliz Yosef</b> <br>Haliz Yosef tutkii työssään äänitaiteen ja fyysisten esineiden vuorovaikutusta, jotka juontavat juurensa kurdilaisesta kansanperinteestä, intuitiivisesta harjoittelusta, mesopotamialaisista muinaisjäännöksistä ja heidän heimotaustastaan. Halizin teokset välittyvät äänitaiteen, liikkuvan kuvan ja kuvanveistollisten installaatioiden kautta.</p>", "sv": "<p>URB X STOA hämtar en rad intressanta artister till Stoaplatsen. Utöver fantastiska spelningar kan du delta i en graffitiworkshop och beundra mångsidig konst.</p><p>Schema:</p><p>kl 14.00 Yalla! <br>kl 14.30 Ikenna<br>kl 15.00 Out of Sync<br>kl 15.30 Yalla!<br>kl 16.00 Isaac Sene</p>", "en": "<p>URB X STOA brings a selection of interesting artists to Stoa square. In addition to spectacular gigs, you can participate in a graffiti workshop and admire diverse art.</p><p>Schedule:</p><p>at 14.00 Yalla! <br>at 14.30 Ikenna<br>at 15.00 Out of Sync<br>at 15.30 Yalla!<br>at 16.00 Isaac Sene</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63667/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63531", "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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150912, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T14:13:10.986651Z", "last_modified_time": "2024-04-30T14:13:10.986666Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745516.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150912/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T14:13:10.965048Z", "last_modified_time": "2024-06-12T05:13:28.427279Z", "date_published": null, "start_time": "2024-06-05", "end_time": "2024-07-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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Omien teosten esittäminen julkisesti vaatii rohkeutta. Etenkin, jos ne käsittelevät itselle tärkeitä ja jopa henkilökohtaisia aiheita.", "sv": "Att visa sina verk offentligt kräver mod. Särskilt om de behandlar ämnen som är viktiga och till och med personliga för en själv.", "en": "Presenting your own works in public requires courage. Especially if they deal with topics that are important to you and even personal." }, "name": { "fi": "Rohkeudella – Helsingin kuvataidekoulun lopputyönäyttely", "sv": "Rohkeudella (Med mod) – Utställning av slutarbeten från Helsingin kuvataidekoulu", "en": "Rohkeudella (With Courage) – Helsinki Art School’s graduate exhibition" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/172DDA0582E4C526F515D632AB7888CF/Rohkeudella_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/172DDA0582E4C526F515D632AB7888CF/Rohkeudella_Med_mod_", "en": "http://www.vuotalo.fi/en/events/event/172DDA0582E4C526F515D632AB7888CF/Rohkeudella_With_Courage_" }, "description": { "fi": "<p>Omien teosten esittäminen julkisesti vaatii rohkeutta. Etenkin, jos ne käsittelevät itselle tärkeitä ja jopa henkilökohtaisia aiheita.</p><p>Rohkeudella-näyttelyn teokset käsittelevät mielikuvituksen maailmaa, sotahistoriaa, luontoa, näkemistä, unia, syvyyksiä, median vaikutusta ihmiseen, kaupunkimaiseman rakentumista, surua, mennyttä maailmaa, robotiikkaa, ihmissuhteita, japandi-tyyliä, kaupungin jokapäiväistä elämää, aikaa, mielenmaisemaa, muistoja ja muistia.</p><p>Helsingin kuvataidekoulu antaa taiteen perusopetusta laajan oppimäärän mukaan kuvataiteessa ja mediataiteessa 5–20-vuotiaille lapsille ja nuorille. Lopputyö on itsenäinen taiteellinen työ, joka koostuu teossarjasta tai teoksesta ja portfoliosta. Portfoliot ovat esillä lopputyönäyttelyssä.</p><p>Helsingin kuvataidekoululla on opetuspisteitä eri puolilla Helsinkiä: Roihuvuoressa, Kumpulassa, Vuosaaressa, Lauttasaaressa, Pikku-Huopalahdessa, Kalasatamassa, Viikissä ja Kivikossa.</p>", "sv": "<p>Att visa sina verk offentligt kräver mod. Särskilt om de behandlar ämnen som är viktiga och till och med personliga för en själv.</p><p>Verken i utställningen Med mod handlar om fantasins värld, militärhistoria, natur, seende, drömmar, djup, mediernas påverkan på människan, stadslandskapets uppbyggnad, sorg, den förflutna världen, robotik, relationer, japandi-stil, vardagsliv i staden, tid, det mentala landskapet, minnen och minnet.</p><p>Helsingin kuvataidekoulu erbjuder en fördjupad lärokurs i grundläggande konstundervisning och mediekonst för 5–20-åriga barn och unga. Slutarbetet är ett självständigt konstnärligt arbete som består av en serie verk eller ett enskilt verk och en portfolio. Portfolierna ställs ut på utställningen för slutarbeten.</p><p>Helsingin kuvataidekoulu har undervisningsställen på olika håll i Helsingfors: Kasberget, Gumtäkt, Nordsjö, Drumsö, Lillhoplax, Fiskehamnen, Vik och Stensböle.</p>", "en": "<p>Presenting your own works in public requires courage. Especially if they deal with topics that are important to you and even personal.</p><p>The works in the Rohkeudella (With Courage) exhibition deal with the world of imagination, military history, nature, seeing, dreams, depths, the influence of media on people, the construction of an urban landscape, grief, the past world, robotics, human relationships, the Japandi style, everyday life in the city, time, mindset, memories, and memory.</p><p>The Helsinki Art School provides basic art education according to the advanced syllabus in visual arts and media art for children and young people aged 5–20. The graduation work is an independent artistic work consisting of a series of works or a work and a portfolio. The portfolios are on display in the graduation exhibition.</p><p>The Helsinki Art School has teaching locations all over Helsinki: Roihuvuori, Kumpula, Vuosaari, Lauttasaari, Pikku-Huopalahti, Kalasatama, Viikki and Kivikko.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63531/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63909", "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:669/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151315, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-29T12:13:51.143631Z", "last_modified_time": "2024-05-29T12:13:51.143658Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753481.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151315/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-29T12:13:51.105336Z", "last_modified_time": "2024-06-12T05:13:27.410879Z", "date_published": null, "start_time": "2024-06-03", "end_time": "2024-07-02", "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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Näyttelyn plansseilla ja pienoismallilla kuvataan suunnittelukilpailussa mukana olleita ehdotuksia sekä niistä jalostunutta asemakaavaehdotusta. Näyttely ajoittuu samaan aikaan asemakaavaehdotuksen virallisen kuulemisen kanssa (3.6.-2.7.2024), mistä lisätietoa näyttelyn yhteydessä." }, "name": { "fi": "Kulttuurikortteli keskustan sykkeenä – Näyttely suunnittelukilpailun tuloksista" }, "provider_contact_info": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/73F92F52F77D1BD1887635491C5F8806/Kulttuurikortteli_keskustan_sykkeena_" }, "description": { "fi": "<p>Näyttelyn plansseilla ja pienoismallilla kuvataan suunnittelukilpailussa mukana olleita ehdotuksia sekä niistä jalostunutta asemakaavaehdotusta. Näyttely ajoittuu samaan aikaan asemakaavaehdotuksen virallisen kuulemisen kanssa (3.6.-2.7.2024), mistä lisätietoa näyttelyn yhteydessä.</p><p>Kulttuurikeskus Vuotalo ja Tehtaanpuiston yhteiskoulun rakennus (vanha Vuosaaren lukio) sijaitsevat näkyvästi Vuosaaren keskustassa. Uusiin tiloihin siirtynyt lukio on vapauttanut vanhan koulurakennuksen Tilajakamon kulttuuri- ja yritystoiminnalle ennen huonokuntoisen koulurakennuksen korvaamista uudella rakentamisella. Alueelle juurtunut kulttuuritoiminta vahvistuu jatkossa uusilla, Vuotalon yhteyteen liitettävissä olevilla tiloilla.</p><p>Kulttuurikorttelin asemakaavamuutoksen lähtökohtina on mahdollistaa lasten ja nuorten taiteen perusopetuksen tilojen toteuttaminen Vuotalon yhteyteen hyvin yhteyksien äärelle. Vuosaaren keskustan suunnitteluperiaatteet (Kslk 15.11.2016) kuvaavat tavoitteellista kehittämistä monipuoliseksi ja elämykselliseksi arjen palveluiden tiivistymäksi, jossa halutaan yhdistää asuinrakentamista toimitiloihin. Näiden tavoitteiden yhdistämiseksi järjestettiin 2022-2024 kilpailullinen neuvottelumenettely, jossa etsittiin kaavakumppania Kultuurikorttelin pikaiseksi toteuttamiseksi yhteistyössä Helsingin kaupungin kanssa. Lisätietoa kilpailusta oheisen linkin kautta.</p><p>Neuvottelumenettelyssä osallistujat ja kilpailun järjestäneet Helsingin kaupungin edustajat kehittävät useita suunnitelmia erillään niiden vahvuuksia tukien ja heikkouksia korjaten. Ehdotuksista neuvoteltiin kahden rakennusliikkeen ja arkkitehtitoimiston yhteenliittymän kanssa ja arvostelu tehtiin ehdotusten Tiiliskivet (Varte ja L-arkkitehdit Oy) sekä Hygge (Nrep ja Arkkitehtuuritoimisto B&M Oy:n välillä.</p><p>Neuvottelumenettelyt osuivat pikaisen toteutuksen suhteen vaikeaan taloudelliseen tilanteeseen eikä kilpailuun saatu siitä syystä toteutettavaa kaavakumppania. Neuvottelumenettely toi kuitenkin asemakaavan suunnitteluun arvokasta lisätietoa ja rakentamisen näkökulmia, jotka yhdistettiin osaksi kaavaehdotusta toimivaa kaavaratkaisua.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63909/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63245", "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:32/?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: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": false, "offer_price_groups": [], "price": { "fi": "20 € /10 € / 5 €", "sv": "20 € /10 € / 5 €", "en": "20 € /10 € / 5 €" }, "info_url": { "fi": "https://www.esitys.fi/lippukauppa", "sv": "https://www.esitys.fi/lippukauppa", "en": "https://www.esitys.fi/lippukauppa" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150911, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T14:13:10.519227Z", "last_modified_time": "2024-04-30T14:13:10.519241Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746225.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150911/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T14:13:10.504872Z", "last_modified_time": "2024-06-12T05:13:27.247547Z", "date_published": null, "start_time": "2024-06-02T16:00:00Z", "end_time": "2024-06-02T17:15: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.", "sv": "Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.", "en": "Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”." }, "name": { "fi": "Jäljellä olevaa – tanssiesitys suusta – Lin Da & työryhmä", "sv": "Jäljellä olevaa – dansföreställningen om munnen – Lin Da med arbetsgrupp", "en": "Jäljellä olevaa – dance performance about mouth – Lin Da & working group" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/EC91DC4951CC101898292D115EA2DDC4/Jaljella_olevaa_tanssiesitys_suusta", "sv": "http://www.stoa.fi/sv/evenemang/event/EC91DC4951CC101898292D115EA2DDC4/Jaljella_olevaa_dansforestallningen_om_munnen", "en": "http://www.stoa.fi/en/events/event/EC91DC4951CC101898292D115EA2DDC4/Jaljella_olevaa_dance_performance_about_mouth" }, "description": { "fi": "<p>Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.</p><p>Suu on pulssaava konsertti, maisema ja tila, jossa kehot kytkeytyvät itseensä, toisiin ja äärettömään. Suun reflektoimisen myötä ruumiillisuus, kokemuksellisuus ja sisäinen maailma ovat laajentuneet pohdinnoiksi äärettömyydestä ja rajattomuudesta, jossa kaikki oleva on kytköksissä toisiinsa.</p><p>Jäljellä olevaa avaa tilaa suulle purkaen sen ilmaisun kahleita ja sallien ruumiin näkyväksi tulemisen. Työryhmä rentoutuu suun olemuksen äärelle – sen hetkellisyyteen ja aistillisuuteen. Katsojat kohtaavat teoksen ryhmässä, joka kutsutaan matkalle, ravitaan ja stimuloidaan.</p><p><b>Lin Da</b> (aka Lin Martikainen) on muunsukupuolinen taiteilija, koreografi ja esiintyjä, jonka työskentelyn keskiössä ovat vuorovaikutus, huolenpito, kosketus, somatiikka sekä keskeneräisyyden kanssa oleminen. Linin taiteellinen työskentely tapahtuu nykykoreografian ja nykytanssin sekä esitystaiteen ja kuvataiteiden välisyyksissä ruumiillisen olemisen herkkyyden kanssa työskennellen.</p><p>Hänen töitään on esitetty mm. Mad House Helsingissä, Musiikkitalon Camerata-salissa, UrbanApa X Ateneum -festivaalilla, Loikka-tanssielokuvafestivaalilla sekä Kölnissä Tanzfaktur’n Sommer Akademie -festivaalilla ja Amsterdamissa NEU/NOW Online -festivaalilla. Lin on valmistunut Taideyliopistosta kuvataiteen maisteriksi (2023) ja tanssitaiteen maisteriksi (2016).</p><p><b>Työryhmä:</b><br>Koreografi ja ohjaaja Lin Da<br>Esiintyjät Taru Aho, Geoffrey Erista, Amita Kilumanga ja Jyri Pirinen<br>Pukusuunnittelija Amita Kilumanga<br>Äänisuunnittelija Jyri Pirinen<br>Tuotanto Lin Da, Esitystaiteen seura ja Stoa</p><p><b>Tukijat:</b><br>Jenny ja Antti Wihurin rahasto, Niilo Helanderin säätiö, Esitystaiteen seura ja Stoa</p>", "sv": "<p>Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen är en pulserande konsert, ett landskap och ett utrymme där kroppar ansluter till sig själva, andra och oändligheten. I och med reflektionerna över munnen har förkroppsligandet, upplevelsen och den inre världen utvidgats till begrundande över oändlighet och gränslöshet, där allt som är sammanlänkas.</p><p>Det som återstår öppnar utrymme för munnen, bryter dess uttrycksbojor och låter kroppen bli synlig. Arbetsgruppen slappnar av inför munnens väsen – dess momentanitet och sinnlighet. Åskådarna möter verket i grupp, bjuds in på en resa, får näring och stimulans.</p><p>Lin Da (alias Lin Martikainen) är en icke-binär konstnär, koreograf och artist vars arbete fokuserar på interaktion, omsorg, beröring, somatik och att vara närvarande med det ofullbordade. Lins konstnärliga arbete utspelar sig i skärningspunkten mellan samtida koreografi och modern dans, scenkonst och bildkonst, och de arbetar med känsligheten i det förkroppsligade tillvaron.</p><p>Deras verk har presenterats på bland annat Mad House Helsinki, Camerata-salen i Musikhuset, på UrbanApa X Ateneum-festivalen, Loikka-dansfilmfestivalen, Tanzfakturs Sommer Akademie-festivalen i Köln och NEU/NOW Online-festivalen i Amsterdam. Lin har utexaminerats som magister i bildkonst (2023) och magister i danskonst (2016) från Konstuniversitetet.</p><p><b>Arbetsgrupp:</b><br>Koreograf och regissör Lin Da<br>Medverkande Taru Aho, Geoffrey Erista, Amita Kilumanga och Jyri Pirinen<br>Kostymdesigner Amita Kilumanga<br>Ljuddesigner Jyri Pirinen<br>Produktion Lin Da, Esitystaiteen seura och Stoa</p><p><b>Stödd av:</b><br>Jenny och Antti Wihuris stiftelse, Niilo Helanders stiftelse, Esitystaiteen seura och Stoa</p>", "en": "<p>Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”.</p><p>The mouth reaches to encounter, it reaches towards the skin and nourishment. The mouth can sense the world, yet also harm, disassemble and threaten. The working group puts itself on display on stage while opening to the contradictions of the mouth and questioning the definition of the stage.</p><p>The tone of the dance performance is created by the experience of the mouth – it is a pulsating concert, a landscape, and a space where bodies connect within themselves, with others and the infinite.</p><p>The audience members encounter the work as a collective who is invited on a journey to be nourished and stimulated.</p><p>Jäljellä olevaa creates space for the mouth, unshackling its expression and allowing the body to become visible. The working group relaxes into the essence of the mouth – its ephemerality and sensuality.</p><p>Choreographer Lin Da's longing to be with a limited area and theme evokes its limitless potential. Reflection on the mouth, corporeality, experientiality, and the inner world have expanded into reflections on infinity and limitlessness, where all beings are connected.</p><p>The performances take place at Stoa - make sure to secure your spot!</p><p>The performance is accompanied by an exhibition that will take place in Stoa's gallery 19.5-9.6.2024. Lin Da's Jälkiä ja kaikuja (Traces and echoes) exhibition asks whether the cavity of the mouth could be perceived as a landscape. A warm welcome to the opening of the exhibition at Stoa gallery on Saturday 18.5. at 15:00. As part of the opening program Lin Da will perform their latest work - titled Dripping sketch - solo for a mouth.</p><p>Lin Da (they/them) is a non-binary artist, choreographer and performer whose work focuses on interaction, care, touch, somatics and being with incompleteness. Lin's artistic work takes place between contemporary choreography and contemporary dance, as well as performance art and visual arts. They work with the sensitivity of the bodily being.</p><p>Lin’s works have been displayed at Mad House Helsinki, Camerata Hall at the Helsinki Music Centre, UrbanApa X Ateneum Festival, Loikka Dance Film Festival, Tanzfaktur's Sommer Akademie Festival in Cologne and NEU/NOW Online Festival in Amsterdam. Lin graduated from the Uniarts Helsinki with the Master of Fine Arts degree (2023) and the Master of Arts in Dance (2016).</p><p><b>Working group</b><br>Choreographer and director Lin Da<br>Performers Taru Aho, Geoffrey Erista, Amita Kilumanga and Jyri Pirinen<br>Costume designer Amita Kilumanga<br>Sound designer Jyri Pirinen<br>Production Lin Da<br>Co-producers Esitystaiteen seura (Live Art Society) ja Stoa<br>Supporters Jenny ja Antti Wihurin rahasto (Jenny and Antti Wihuri Foundation, Niilo Helanderin säätiö (Niilo Helander Foundation), Taiteen edistämiskeskus (Arts Promotion Finland), Helsingin kaupunki (City of Helsinki), Esitystaiteen seura (Live Art Society) and Stoa</p><p>Performances at Stoa (Turunlinnantie 1, Itäkeskus, Helsinki).</p><p>Premier:<br>Fri 31.5. at 20.30</p><p>Other performances:<br>Sat 1.6. at 17<br>Sun 2.6. at 19<br>Fri 7.6. at 19<br>Sun 9.6. at 19</p><p>Tickets: https://www.esitys.fi/lippukauppa</p><p>Age recommendation: 12+</p><p>Accessibility<br>There are two wheelchair spaces in each performance. If you would like to reserve a wheelchair spot, please contact the Live Art Society's producer Sonja Korkman (+358 44 725 77 00/info@esitys.fi) to inquire about the availability. Please let us know at the same time if you want to reserve a seat for an assistant. The seats are unnumbered.</p><p>There is very little talking in the performance. The languages are Finnish and English.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63245/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63244", "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:32/?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: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": false, "offer_price_groups": [], "price": { "fi": "20 € /10 € / 5 €", "sv": "20 € /10 € / 5 €", "en": "20 € /10 € / 5 €" }, "info_url": { "fi": "https://www.esitys.fi/lippukauppa", "sv": "https://www.esitys.fi/lippukauppa", "en": "https://www.esitys.fi/lippukauppa" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150910, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T14:13:10.412139Z", "last_modified_time": "2024-04-30T14:13:10.412160Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746223.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150910/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T14:13:10.398370Z", "last_modified_time": "2024-06-12T05:13:26.937324Z", "date_published": null, "start_time": "2024-06-01T14: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.", "sv": "Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.", "en": "Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”." }, "name": { "fi": "Jäljellä olevaa – tanssiesitys suusta – Lin Da & työryhmä", "sv": "Jäljellä olevaa – dansföreställningen om munnen – Lin Da med arbetsgrupp", "en": "Jäljellä olevaa – dance performance about mouth – Lin Da & working group" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/1CF89C1C2DCB3E2E909B06D06FE2BA09/Jaljella_olevaa_tanssiesitys_suusta", "sv": "http://www.stoa.fi/sv/evenemang/event/1CF89C1C2DCB3E2E909B06D06FE2BA09/Jaljella_olevaa_dansforestallningen_om_munnen", "en": "http://www.stoa.fi/en/events/event/1CF89C1C2DCB3E2E909B06D06FE2BA09/Jaljella_olevaa_dance_performance_about_mouth" }, "description": { "fi": "<p>Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.</p><p>Suu on pulssaava konsertti, maisema ja tila, jossa kehot kytkeytyvät itseensä, toisiin ja äärettömään. Suun reflektoimisen myötä ruumiillisuus, kokemuksellisuus ja sisäinen maailma ovat laajentuneet pohdinnoiksi äärettömyydestä ja rajattomuudesta, jossa kaikki oleva on kytköksissä toisiinsa.</p><p>Jäljellä olevaa avaa tilaa suulle purkaen sen ilmaisun kahleita ja sallien ruumiin näkyväksi tulemisen. Työryhmä rentoutuu suun olemuksen äärelle – sen hetkellisyyteen ja aistillisuuteen. Katsojat kohtaavat teoksen ryhmässä, joka kutsutaan matkalle, ravitaan ja stimuloidaan.</p><p><b>Lin Da</b> (aka Lin Martikainen) on muunsukupuolinen taiteilija, koreografi ja esiintyjä, jonka työskentelyn keskiössä ovat vuorovaikutus, huolenpito, kosketus, somatiikka sekä keskeneräisyyden kanssa oleminen. Linin taiteellinen työskentely tapahtuu nykykoreografian ja nykytanssin sekä esitystaiteen ja kuvataiteiden välisyyksissä ruumiillisen olemisen herkkyyden kanssa työskennellen.</p><p>Hänen töitään on esitetty mm. Mad House Helsingissä, Musiikkitalon Camerata-salissa, UrbanApa X Ateneum -festivaalilla, Loikka-tanssielokuvafestivaalilla sekä Kölnissä Tanzfaktur’n Sommer Akademie -festivaalilla ja Amsterdamissa NEU/NOW Online -festivaalilla. Lin on valmistunut Taideyliopistosta kuvataiteen maisteriksi (2023) ja tanssitaiteen maisteriksi (2016).</p><p><b>Työryhmä:</b><br>Koreografi ja ohjaaja Lin Da<br>Esiintyjät Taru Aho, Geoffrey Erista, Amita Kilumanga ja Jyri Pirinen<br>Pukusuunnittelija Amita Kilumanga<br>Äänisuunnittelija Jyri Pirinen<br>Tuotanto Lin Da, Esitystaiteen seura ja Stoa</p><p><b>Tukijat:</b><br>Jenny ja Antti Wihurin rahasto, Niilo Helanderin säätiö, Esitystaiteen seura ja Stoa</p>", "sv": "<p>Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen är en pulserande konsert, ett landskap och ett utrymme där kroppar ansluter till sig själva, andra och oändligheten. I och med reflektionerna över munnen har förkroppsligandet, upplevelsen och den inre världen utvidgats till begrundande över oändlighet och gränslöshet, där allt som är sammanlänkas.</p><p>Det som återstår öppnar utrymme för munnen, bryter dess uttrycksbojor och låter kroppen bli synlig. Arbetsgruppen slappnar av inför munnens väsen – dess momentanitet och sinnlighet. Åskådarna möter verket i grupp, bjuds in på en resa, får näring och stimulans.</p><p>Lin Da (alias Lin Martikainen) är en icke-binär konstnär, koreograf och artist vars arbete fokuserar på interaktion, omsorg, beröring, somatik och att vara närvarande med det ofullbordade. Lins konstnärliga arbete utspelar sig i skärningspunkten mellan samtida koreografi och modern dans, scenkonst och bildkonst, och de arbetar med känsligheten i det förkroppsligade tillvaron.</p><p>Deras verk har presenterats på bland annat Mad House Helsinki, Camerata-salen i Musikhuset, på UrbanApa X Ateneum-festivalen, Loikka-dansfilmfestivalen, Tanzfakturs Sommer Akademie-festivalen i Köln och NEU/NOW Online-festivalen i Amsterdam. Lin har utexaminerats som magister i bildkonst (2023) och magister i danskonst (2016) från Konstuniversitetet.</p><p><b>Arbetsgrupp:</b><br>Koreograf och regissör Lin Da<br>Medverkande Taru Aho, Geoffrey Erista, Amita Kilumanga och Jyri Pirinen<br>Kostymdesigner Amita Kilumanga<br>Ljuddesigner Jyri Pirinen<br>Produktion Lin Da, Esitystaiteen seura och Stoa</p><p><b>Stödd av:</b><br>Jenny och Antti Wihuris stiftelse, Niilo Helanders stiftelse, Esitystaiteen seura och Stoa</p>", "en": "<p>Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”.</p><p>The mouth reaches to encounter, it reaches towards the skin and nourishment. The mouth can sense the world, yet also harm, disassemble and threaten. The working group puts itself on display on stage while opening to the contradictions of the mouth and questioning the definition of the stage.</p><p>The tone of the dance performance is created by the experience of the mouth – it is a pulsating concert, a landscape, and a space where bodies connect within themselves, with others and the infinite.</p><p>The audience members encounter the work as a collective who is invited on a journey to be nourished and stimulated.</p><p>Jäljellä olevaa creates space for the mouth, unshackling its expression and allowing the body to become visible. The working group relaxes into the essence of the mouth – its ephemerality and sensuality.</p><p>Choreographer Lin Da's longing to be with a limited area and theme evokes its limitless potential. Reflection on the mouth, corporeality, experientiality, and the inner world have expanded into reflections on infinity and limitlessness, where all beings are connected.</p><p>The performances take place at Stoa - make sure to secure your spot!</p><p>The performance is accompanied by an exhibition that will take place in Stoa's gallery 19.5-9.6.2024. Lin Da's Jälkiä ja kaikuja (Traces and echoes) exhibition asks whether the cavity of the mouth could be perceived as a landscape. A warm welcome to the opening of the exhibition at Stoa gallery on Saturday 18.5. at 15:00. As part of the opening program Lin Da will perform their latest work - titled Dripping sketch - solo for a mouth.</p><p>Lin Da (they/them) is a non-binary artist, choreographer and performer whose work focuses on interaction, care, touch, somatics and being with incompleteness. Lin's artistic work takes place between contemporary choreography and contemporary dance, as well as performance art and visual arts. They work with the sensitivity of the bodily being.</p><p>Lin’s works have been displayed at Mad House Helsinki, Camerata Hall at the Helsinki Music Centre, UrbanApa X Ateneum Festival, Loikka Dance Film Festival, Tanzfaktur's Sommer Akademie Festival in Cologne and NEU/NOW Online Festival in Amsterdam. Lin graduated from the Uniarts Helsinki with the Master of Fine Arts degree (2023) and the Master of Arts in Dance (2016).</p><p><b>Working group</b><br>Choreographer and director Lin Da<br>Performers Taru Aho, Geoffrey Erista, Amita Kilumanga and Jyri Pirinen<br>Costume designer Amita Kilumanga<br>Sound designer Jyri Pirinen<br>Production Lin Da<br>Co-producers Esitystaiteen seura (Live Art Society) ja Stoa<br>Supporters Jenny ja Antti Wihurin rahasto (Jenny and Antti Wihuri Foundation, Niilo Helanderin säätiö (Niilo Helander Foundation), Taiteen edistämiskeskus (Arts Promotion Finland), Helsingin kaupunki (City of Helsinki), Esitystaiteen seura (Live Art Society) and Stoa</p><p>Performances at Stoa (Turunlinnantie 1, Itäkeskus, Helsinki).</p><p>Premier:<br>Fri 31.5. at 20.30</p><p>Other performances:<br>Sat 1.6. at 17<br>Sun 2.6. at 19<br>Fri 7.6. at 19<br>Sun 9.6. at 19</p><p>Tickets: https://www.esitys.fi/lippukauppa</p><p>Age recommendation: 12+</p><p>Accessibility<br>There are two wheelchair spaces in each performance. If you would like to reserve a wheelchair spot, please contact the Live Art Society's producer Sonja Korkman (+358 44 725 77 00/info@esitys.fi) to inquire about the availability. Please let us know at the same time if you want to reserve a seat for an assistant. The seats are unnumbered.</p><p>There is very little talking in the performance. The languages are Finnish and English.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63244/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63243", "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:32/?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: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": false, "offer_price_groups": [], "price": { "fi": "20 € /10 € / 5 €", "sv": "20 € /10 € / 5 €", "en": "20 € /10 € / 5 €" }, "info_url": { "fi": "https://www.esitys.fi/lippukauppa", "sv": "https://www.esitys.fi/lippukauppa", "en": "https://www.esitys.fi/lippukauppa" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150909, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-30T14:13:10.309943Z", "last_modified_time": "2024-04-30T14:13:10.309958Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746221.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150909/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-30T14:13:10.285122Z", "last_modified_time": "2024-06-12T05:13:26.693649Z", "date_published": null, "start_time": "2024-05-31T17: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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.", "sv": "Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.", "en": "Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”." }, "name": { "fi": "Jäljellä olevaa – ENSI-ILTA – Lin Da & työryhmä", "sv": "Jäljellä olevaa – PREMIÄR", "en": "Jäljellä olevaa – PREMIER" }, "provider_contact_info": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/3CA5D4DBA68B0C90BE50493BC4231487/Jaljella_olevaa_ENSI-ILTA", "sv": "http://www.stoa.fi/sv/evenemang/event/3CA5D4DBA68B0C90BE50493BC4231487/Jaljella_olevaa_PREMIAR", "en": "http://www.stoa.fi/en/events/event/3CA5D4DBA68B0C90BE50493BC4231487/Jaljella_olevaa_PREMIER" }, "description": { "fi": "<p>Suu kurottaa kohti kohtaamista, ihoa ja ravintoa. Suu voi aistia maailmaa, mutta myös vahingoittaa, hajottaa ja uhata. Koreografi Lin Da työryhmänsä kanssa tuo Stoaan vaikuttavan tanssikokemuksen, jonka teemana on suu.</p><p>Suu on pulssaava konsertti, maisema ja tila, jossa kehot kytkeytyvät itseensä, toisiin ja äärettömään. Suun reflektoimisen myötä ruumiillisuus, kokemuksellisuus ja sisäinen maailma ovat laajentuneet pohdinnoiksi äärettömyydestä ja rajattomuudesta, jossa kaikki oleva on kytköksissä toisiinsa.</p><p>Jäljellä olevaa avaa tilaa suulle purkaen sen ilmaisun kahleita ja sallien ruumiin näkyväksi tulemisen. Työryhmä rentoutuu suun olemuksen äärelle – sen hetkellisyyteen ja aistillisuuteen. Katsojat kohtaavat teoksen ryhmässä, joka kutsutaan matkalle, ravitaan ja stimuloidaan.</p><p><b>Lin Da</b> (aka Lin Martikainen) on muunsukupuolinen taiteilija, koreografi ja esiintyjä, jonka työskentelyn keskiössä ovat vuorovaikutus, huolenpito, kosketus, somatiikka sekä keskeneräisyyden kanssa oleminen. Linin taiteellinen työskentely tapahtuu nykykoreografian ja nykytanssin sekä esitystaiteen ja kuvataiteiden välisyyksissä ruumiillisen olemisen herkkyyden kanssa työskennellen.</p><p>Hänen töitään on esitetty mm. Mad House Helsingissä, Musiikkitalon Camerata-salissa, UrbanApa X Ateneum -festivaalilla, Loikka-tanssielokuvafestivaalilla sekä Kölnissä Tanzfaktur’n Sommer Akademie -festivaalilla ja Amsterdamissa NEU/NOW Online -festivaalilla. Lin on valmistunut Taideyliopistosta kuvataiteen maisteriksi (2023) ja tanssitaiteen maisteriksi (2016).</p><p><b>Työryhmä:</b><br>Koreografi ja ohjaaja Lin Da<br>Esiintyjät Taru Aho, Geoffrey Erista, Amita Kilumanga ja Jyri Pirinen<br>Pukusuunnittelija Amita Kilumanga<br>Äänisuunnittelija Jyri Pirinen<br>Tuotanto Lin Da, Esitystaiteen seura ja Stoa</p><p><b>Tukijat:</b><br>Jenny ja Antti Wihurin rahasto, Niilo Helanderin säätiö, Esitystaiteen seura ja Stoa</p>", "sv": "<p>Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen sträcker sig mot bemötande, hud och näring. Munnen kan förnimma världen, men den kan också skada, söndra och hota. Koreografen Lin Da med arbetsgrupp bjuder Stoa på en imponerande dansupplevelse med temat munnen.</p><p>Munnen är en pulserande konsert, ett landskap och ett utrymme där kroppar ansluter till sig själva, andra och oändligheten. I och med reflektionerna över munnen har förkroppsligandet, upplevelsen och den inre världen utvidgats till begrundande över oändlighet och gränslöshet, där allt som är sammanlänkas.</p><p>Det som återstår öppnar utrymme för munnen, bryter dess uttrycksbojor och låter kroppen bli synlig. Arbetsgruppen slappnar av inför munnens väsen – dess momentanitet och sinnlighet. Åskådarna möter verket i grupp, bjuds in på en resa, får näring och stimulans.</p><p>Lin Da (alias Lin Martikainen) är en icke-binär konstnär, koreograf och artist vars arbete fokuserar på interaktion, omsorg, beröring, somatik och att vara närvarande med det ofullbordade. Lins konstnärliga arbete utspelar sig i skärningspunkten mellan samtida koreografi och modern dans, scenkonst och bildkonst, och de arbetar med känsligheten i det förkroppsligade tillvaron.</p><p>Deras verk har presenterats på bland annat Mad House Helsinki, Camerata-salen i Musikhuset, på UrbanApa X Ateneum-festivalen, Loikka-dansfilmfestivalen, Tanzfakturs Sommer Akademie-festivalen i Köln och NEU/NOW Online-festivalen i Amsterdam. Lin har utexaminerats som magister i bildkonst (2023) och magister i danskonst (2016) från Konstuniversitetet.</p><p>Arbetsgrupp:<br>Koreograf och regissör Lin Da<br>Medverkande Taru Aho, Geoffrey Erista, Amita Kilumanga och Jyri Pirinen<br>Kostymdesigner Amita Kilumanga<br>Ljuddesigner Jyri Pirinen<br>Produktion Lin Da, Esitystaiteen seura och Stoa<br>Stödd av:</p><p>Jenny och Antti Wihuris stiftelse, Niilo Helanders stiftelse, Esitystaiteen seura och Stoa</p>", "en": "<p>Jäljellä olevaa is a dance performance about the mouth. The title Jäljellä olevaa can be translated as “remaining traces” as well as “something remaining after most things are gone”.</p><p>The mouth reaches to encounter, it reaches towards the skin and nourishment. The mouth can sense the world, yet also harm, disassemble and threaten. The working group puts itself on display on stage while opening to the contradictions of the mouth and questioning the definition of the stage.</p><p>The tone of the dance performance is created by the experience of the mouth – it is a pulsating concert, a landscape, and a space where bodies connect within themselves, with others and the infinite.</p><p>The audience members encounter the work as a collective who is invited on a journey to be nourished and stimulated.</p><p>Jäljellä olevaa creates space for the mouth, unshackling its expression and allowing the body to become visible. The working group relaxes into the essence of the mouth – its ephemerality and sensuality.</p><p>Choreographer Lin Da's longing to be with a limited area and theme evokes its limitless potential. Reflection on the mouth, corporeality, experientiality, and the inner world have expanded into reflections on infinity and limitlessness, where all beings are connected.</p><p>The performances take place at Stoa - make sure to secure your spot!</p><p>The performance is accompanied by an exhibition that will take place in Stoa's gallery 19.5-9.6.2024. Lin Da's Jälkiä ja kaikuja (Traces and echoes) exhibition asks whether the cavity of the mouth could be perceived as a landscape. A warm welcome to the opening of the exhibition at Stoa gallery on Saturday 18.5. at 15:00. As part of the opening program Lin Da will perform their latest work - titled Dripping sketch - solo for a mouth.</p><p>Lin Da (they/them) is a non-binary artist, choreographer and performer whose work focuses on interaction, care, touch, somatics and being with incompleteness. Lin's artistic work takes place between contemporary choreography and contemporary dance, as well as performance art and visual arts. They work with the sensitivity of the bodily being. Lin’s works have been displayed at Mad House Helsinki, Camerata Hall at the Helsinki Music Centre, UrbanApa X Ateneum Festival, Loikka Dance Film Festival, Tanzfaktur's Sommer Akademie Festival in Cologne and NEU/NOW Online Festival in Amsterdam. Lin graduated from the Uniarts Helsinki with the Master of Fine Arts degree (2023) and the Master of Arts in Dance (2016).</p><p>Working group<br>Choreographer and director Lin Da<br>Performers Taru Aho, Geoffrey Erista, Amita Kilumanga and Jyri Pirinen<br>Costume designer Amita Kilumanga<br>Sound designer Jyri Pirinen<br>Production Lin Da<br>Co-producers Esitystaiteen seura (Live Art Society) ja Stoa<br>Supporters Jenny ja Antti Wihurin rahasto (Jenny and Antti Wihuri Foundation, Niilo Helanderin säätiö (Niilo Helander Foundation), Taiteen edistämiskeskus (Arts Promotion Finland), Helsingin kaupunki (City of Helsinki), Esitystaiteen seura (Live Art Society) and Stoa</p><p>Performances at Stoa (Turunlinnantie 1, Itäkeskus, Helsinki).</p><p>Premier:<br>Fri 31.5. at 20.30</p><p>Other performances:<br>Sat 1.6. at 17<br>Sun 2.6. at 19<br>Fri 7.6. at 19<br>Sun 9.6. at 19</p><p>Tickets: https://www.esitys.fi/lippukauppa</p><p>Age recommendation: 12+</p><p>Accessibility<br>There are two wheelchair spaces in each performance. If you would like to reserve a wheelchair spot, please contact the Live Art Society's producer Sonja Korkman (+358 44 725 77 00/info@esitys.fi) to inquire about the availability. Please let us know at the same time if you want to reserve a seat for an assistant. The seats are unnumbered.</p><p>There is very little talking in the performance. The languages are Finnish and English. More accessibility information will be added soon.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63243/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63230", "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/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 131098, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-12T10:13:52.738071Z", "last_modified_time": "2024-04-12T10:13:52.738087Z", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746166.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/131098/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-12T10:13:52.688613Z", "last_modified_time": "2024-06-12T05:13:26.412866Z", "date_published": null, "start_time": "2024-05-31", "end_time": "2024-06-27", "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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Lumottu puutarha (Enchanted Garden) on kokemuksellinen ja monialainen kokonaisuus taiteilija Jessica Alexandra Northin teoksia käsitöistä ja keramiikasta maalauksiin, valokuviin ja installaatioon.", "sv": "Den förtrollade trädgården (Enchanted Garden) är en erfarenhetsbaserad och multidisciplinär helhet av konstnären Jessica Alexandra Norths verk från handarbete till keramik, målningar, fotografier och en installation.", "en": "Lumottu puutarha (Enchanted Garden) is an experiential and multidisciplinary showcase of artist Jessica Alexandra North’s works, from handcrafts and ceramics to painting, photographs and installations." }, "name": { "fi": "Jessica Alexandra North – Lumottu puutarha / Enchanted Garden", "sv": "Jessica Alexandra North – Den förtrollade trädgården", "en": "Jessica Alexandra North – Enchanted Garden" }, "provider_contact_info": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/92E8EA98870A7519D319E1F46BA53961/Jessica_Alexandra_North", "sv": "http://www.caisa.fi/sv/evenemang/event/92E8EA98870A7519D319E1F46BA53961/Jessica_Alexandra_North", "en": "http://www.caisa.fi/en/events/event/92E8EA98870A7519D319E1F46BA53961/Jessica_Alexandra_North" }, "description": { "fi": "<p>Lumottu puutarha (Enchanted Garden) on kokemuksellinen ja monialainen kokonaisuus taiteilija Jessica Alexandra Northin teoksia käsitöistä ja keramiikasta maalauksiin, valokuviin ja installaatioon.</p><p>Näyttelyä ovat inspiroineet kesyttömät, rönsyilevät puutarhat, päivien ja öiden rajapinnat, suomalaiset metsämyytit sekä luonnon- ja kierrätysmateriaalien kanssa työskentely.</p><p>Näyttely etsii intuition, tunteiden sekä aistien sijaa rationaalisten periaatteiden synnyttämässä sosiaalisessa todellisuudessa, jossa mielikuvitus, luovuus ja spontaanius uhkaavat hiipua, ja yhteiskunnalliset prosessit suunnataan kohti taloudellisia tavoitteita.</p><p>Lumottu puutarha etsii paikkaa tuon todellisuuden ulkopuolelta, ja siksi lumoutumisessa onkin kumouksellinen mahdollisuus yhdistää se, minkä kapitalismi on erottanut: suhteemme luontoon, muihin ihmisiin ja kehoihimme.</p><p>Näyttelytilassa kuullaan äänitaiteilija Tiikka Draman toteuttama äänimaisema, ja teosten luona on tilaa ja mahdollisuuksia istahtaa omanlaisensa luontokokemuksen äärelle. Osassa teoksista käytetyt kasviväriliidut, ja tekstiilien ja lankojen värjäykset on toteuttanut kasvivärjäri Enni Heinä.</p>", "sv": "<p>Den förtrollade trädgården (Enchanted Garden) är en erfarenhetsbaserad och multidisciplinär helhet av konstnären Jessica Alexandra Norths verk från handarbete till keramik, målningar, fotografier och en installation.</p><p>Utställningen har inspirerats av vilda, slingrande trädgårdar, gränssnitt mellan dagar och nätter, finländska skogsmyter och arbete med natur- och återvinningsmaterial.</p><p>Utställningen söker platsen för intuition, emotioner och sinnen i en social verklighet som har uppkommit på basis av rationella principer och där fantasin, kreativiteten och spontaniteten hotar att tyna bort, då de samhälleliga processerna riktas mot ekonomiska mål. Den förtrollade trädgården letar efter en plats utanför denna verklighet, och därför har förtrollningen en omvälvande möjlighet att återkoppla det som kapitalismen har avskiljt: vårt förhållande till naturen, andra människor och våra kroppar.</p><p>I utställningsutrymmet hör vi ett ljudlandskap som har genomförts av ljudkonstnär Drama Tiika, och det finns utrymme och möjlighet att sätta sig ner vid verken för en personlig naturupplevelse. En del av verken har genomförts med växtfärgskritor, och textilierna och trådarna har färgats av växtfärgaren Enni Heinä.</p>", "en": "<p>Lumottu puutarha (Enchanted Garden) is an experiential and multidisciplinary showcase of artist Jessica Alexandra North’s works, from handcrafts and ceramics to painting, photographs and installations.</p><p>This exhibition was inspired by wild and unkempt gardens, the boundary between night and day, Finnish forest myths, as well as working with natural and recycled materials.</p><p>It is an attempt to find the place for intuition, feelings and the senses in a social reality formed by rational principles, in which imagination, creativity and spontaneity are at risk of being left by the wayside, with all of society’s processes in service of financial targets. Enchanted Garden tries to find a place outside of reality, which is why enchantment is a revolutionary opportunity to reconnect us with the things capitalism has taken away: our relationship with nature, other people, and our bodies.</p><p>The exhibition will feature a soundscape by audio artist Drama Tiikka, and each piece has room to sit and relax in your type of nature experience. The plant-based crayons used in some of the pieces as well as the textile and thread dyeing are the handiwork of Enni Heinä.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63230/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63563", "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:42/?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": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-03T12:13:02.845325Z", "last_modified_time": "2024-05-03T12:13:02.845341Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749059.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-03T12:13:02.820074Z", "last_modified_time": "2024-06-12T05:13:26.199265Z", "date_published": null, "start_time": "2024-05-31", "end_time": "2024-06-13", "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, "location_extra_info": null, "provider": null, "short_description": { "fi": "Aalto-yliopiston arkkitehtuurin maisterivaiheen opiskelijoille annettiin tehtäväksi ideoida minkälainen Malmin hangaarin eli lentokonehallin tulevaisuus voisi olla.", "sv": "Aalto-universitetets magisterstuderande i arkitektur fick som uppgift att komma med idéer till hurudan framtiden för Malms flyghangar skulle kunna vara.", "en": "Aalto university Masters students in Architecture were given the task to come up with concepts for future use of the Malmi's hangar." }, "name": { "fi": "Tulevaisuuden hangaari", "sv": "Framtidens flyghangar", "en": "The Future Hangar" }, "provider_contact_info": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/DCF7AC323BD07DCA060998722695343F/Tulevaisuuden_hangaari", "sv": "http://www.malmitalo.fi/sv/evenemang/event/DCF7AC323BD07DCA060998722695343F/Framtidens_flyghangar", "en": "http://www.malmitalo.fi/en/events/event/DCF7AC323BD07DCA060998722695343F/The_Future_Hangar" }, "description": { "fi": "<p>Aalto-yliopiston arkkitehtuurin maisterivaiheen opiskelijoille annettiin tehtäväksi ideoida minkälainen Malmin hangaarin eli lentokonehallin tulevaisuus voisi olla.</p><p>Malminkentän alueesta suunnitellaan koko koillista Helsinkiä yhdistävä ja sen identiteettiä vahvistava omaleimainen ja monimuotoinen alue noin 25 000 asukkaalle.</p><p>Vaikka alue muuttuu, vanhat lentoaseman rakennukset, terminaali ja hangaari, tulevat säilymään. Rakennukset on suojeltu asemakaavalla, jonka tavoitteena on mahdollistaa niiden monipuolinen käyttö. Mutta mitä kaikkea monipuolinen käyttö voisi olla?</p><p>Näyttely koostuu opiskelijoiden töistä ja tarkoituksena on herättää pohtimaan hangaarin käyttömahdollisuuksia. Kyse on ReUse-nimisestä kurssista, jossa aiheena on aikaisemmin ollut mm. Pasilan linkkitorni, Hernesaaren viljasiilot ja Karjaan vanha veturitalli.</p>", "sv": "<p>Aalto-universitetets magisterstuderande i arkitektur fick som uppgift att komma med idéer till hurudan framtiden för Malms flyghangar skulle kunna vara.</p><p>Malms flygplats planeras bli ett personligt och mångfaldigt område för cirka 25 000 invånare som sammanför hela nordöstra Helsingfors och stärker dess identitet.</p><p>Trots att området förändras bevaras flygplatsens gamla byggnader, terminalen och flyghangaren. Byggnaderna är skyddade med en detaljplan, vars mål är att möjliggöra en mångsidig användning av dem. Men vad skulle en mångsidig användning kunna vara?</p><p>Utställningen består av de studerandes arbeten och avsikten är att väcka upp tankar om användningsmöjligheterna för flyghangaren. Det är fråga om en kurs med namnet ReUse, som tidigare har behandlat bland annat länktornet i Böle, spannmålssiloerna på Ärtholmen och det gamla lokomotivstallet i Karis.</p>", "en": "<p>Aalto university Masters students in Architecture were given the task to come up with concepts for future use of the Malmi's hangar.</p><p>Malminkenttä is a new area planned for 25 000 inhabitants and the most significant new construction in Malmi. The area is designed as a diverse high quality urban area that connects the entire north-eastern Helsinki.</p><p>The existing airport buildings, the old terminal and hangar, are protected by the detail plan and will be renovated. The detail plan allows the buildings to be used for a variety of purposes - but what could it be?</p><p>Aalto university Masters students in Architecture were given the task to come up with concepts for future use of the hangar. This as part of a “Reuse-course”, where previous subjects for design have been Pasila link tower, Hernesaari grain silos and Karjaa old locomotive port. The exhibition displays the concept ideas of the students. The aim of the exhibition is to spark discussion about what the future of the hangar could be.</p>" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63563/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }