Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&hide_super_event=true&page=1111
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1112", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_super_event=true&page=1110" }, "data": [ { "id": "kulke:59804", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "47/37/15 €, Premium 67 €", "sv": "47/37/15 €, Premium 67 €", "en": "47/37/15 €, Premium 67 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3357710", "sv": "https://www.lippu.fi/eventseries/name-3357710", "en": "https://www.lippu.fi/eventseries/name-3357710" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4527, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:16.430292Z", "last_modified_time": "2023-09-07T14:26:16.430346Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730255.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4527/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:15.459979Z", "last_modified_time": "2023-11-14T06:13:36.737335Z", "date_published": null, "start_time": "2023-11-09T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Mostar Sevdah Reunion (Bosnia ja Hertsegovina) – Savoy WORLD", "sv": "Mostar Sevdah Reunion (Bosnien och Hercegovina) – Savoy WORLD", "en": "Mostar Sevdah Reunion (Bosnia and Hertsegovina) – Savoy WORLD" }, "provider": { "fi": "Savoy-teatteri", "sv": "Savoy-teatern", "en": "Savoy Theatre" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/08132A790E9547DC7BF8F34491BB6431/Mostar_Sevdah_Reunion_Bosnia_ja_Hertsegovina_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/08132A790E9547DC7BF8F34491BB6431/Mostar_Sevdah_Reunion_Bosnien_och_Hercegovina_", "en": "http://www.savoyteatteri.fi/en/events/event/08132A790E9547DC7BF8F34491BB6431/Mostar_Sevdah_Reunion_Bosnia_and_Hertsegovina_" }, "description": { "fi": "<p>Bosnialaisyhtye Mostar Sevdah Reunionista on muodostunut Balkanilla suoranainen instituutio. Yhtyeen tulkinnat perinteisestä sevdah-musiikista yhdistävät kokonaisen musiikillisen maailman: kuultavissa on vaikutteita niin flamencosta, fadosta ja rebetikasta kuin salsasta, bluesista ja funkistakin.</p><p>Mostar Sevdah Reunionin peruskivi on sevdah. Sen lisäksi että sevdah on perinteinen slaavilaismusiikin genre, se tarkoittaa myös tapaa olla ja elää tunteiden kirjon värittämässä maailmassa. Melankolinen, tuskallinen ja voimakas sevdah-laulu tarjoaa kokemuksen joka saa rinnan läikkymään ja sydämen sykkimään. Musiikki on suurimmilta osin ikivanhaa, usein epätoivoisen surullista, mutta lempeällä myötätunnolla tulkittua.</p><p>Yhtye perustettiin Mostarin kaupungissa Bosnia & Hertsegovinassa. Ryhmä muusikoita tapasi ja soitti kellareissa kynttilänvalossa kaupungin piirityksen aikana 1990-luvun alussa - eräänlaisena protestina tai pikemminkin selviytymisstrategiana. Sodan jälkeen he kokoontuivat yhteen ja kasasivat perinteisen sevdahin ympärille yhtyeen, joka on sittemmin julkaissut yli kymmenen albumia ja esiintynyt ympäri maailmaa.</p><p>Vuosien varrella yhtyeen jäsenistössä on tapahtunut muutoksia, suuret nimet kuten Šaban Bajramović ja Esma Redžepova eivät ole enää elossa, mutta heidän perintönsä on säilynyt ja sitä vaalitaan arvokkuudella. Nykykokoonpanosta kitaristit Sandi Duraković ja Milić Petrović kuuluivat jo alkuperäiseen 90-luvun kokoonpanoon.</p><p>Mostar Sevdah Reunion on upea sekoitus ensiluokkaisia muusikoita ja valtavaa musiikillista monimuotoisuutta. Yhtyeen uusin albumi Lady Sings the Balkan Blues on viihtynyt maailmanmusiikkilista World Music Charts Europen kärkipaikoilla koko alkuvuoden 2023, pitäen myös ykkössijaa hallussaan. Yhtye tarjoaa konsertin aikana isosti soivan elämyksen, joka säilyy mielessä pitkään.</p><p>Konsertti on osa Etnosoi! 2023 -festivaalin ohjelmaa.</p><p>Kokoonpano:<br>Antonija Batinić – laulu<br>Ivan Radoja \"Vanja\" - viulu ja taustalaulu<br>Milić Petrović \"Mišo\" - kitara ja taustalaulu<br>Sandi Duraković - kitara ja taustalaulu<br>Gabrijel Prusina - piano ja koskettimet<br>Marko Jakovljević – basso ja taustalaulu<br>Senad Trnovac – rummut</p><p>Kesto n. 2 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>***<br>Savoy WORLD -sarjalipulla koet syksyn tähtihetket edullisemmin!</p><p>Savoy World on Savoy-teatterin tuottama konserttisarja, jossa esitellään monipuolisesti musiikkia eri puolilta maailmaa. Syksyllä 2023 sarjassa mukana ovat meksikolainen laulajatähti Lila Downs, bosnialainen perinnekokoonpano Mostar Sevdah Reunion sekä kevään aikana julkaistava kolmas huippukonsertti.</p><p>Osta nyt Savoy WORLD -sarjalippu hintaan 125 €.</p><p>Sarjalipun konsertit:<br>su 10.9. klo 18.00 Lila Downs (Meksiko) <br>pe 3.11. julkaistaan myöhemmin<br>to 9.11. klo 19.00 Mostar Sevdah Reunion (Bosnia ja Hertsegovina)</p>", "sv": "<p>Bosniska Mostar Sevdah Reunion har blivit en regelrätt institution i Balkan. Bandets tolkningar av den traditionella sevdahmusiken för samman en hel värld av musik: i musiken hörs influenser från såväl flamenco, fado och rebetika som från salsa, blues och funk.</p><p>Mostar Sevdah Reunions grundsten är sevdah. Sevdah är inte bara en traditionell genre inom slavisk musik, det är också ett sätt att vara och leva i en värld färgad av många känslor. Den melankoliska, lidelsefulla och kraftfulla sevdahsången är en upplevelse som känns i bröstet och får hjärtat att slå. Till största delen är musiken uråldrig, ofta förtvivlat sorglig, men tolkad med vänlig medkänsla.</p><p>Bandet grundades i staden Mostar i Bosnien och Hercegovina. En grupp musiker träffades och spelade i källare, i skenet av levande ljus, under stadens belägring i 1990-talets början – som ett slags protest eller snarare en överlevnadsstrategi. Efter kriget samlades gruppen igen och satte samman ett band kring traditionell sevdah. Sedermera har gruppen gett ut över tio album och uppträtt runtom i världen.</p><p>Under åren har bandmedlemmar bytts ut, de stora namnen som Šaban Bajramović och Esma Redžepova är inte längre vid liv, men deras arv lever kvar och värnas med vördnad. Av den nuvarande sammansättningen var gitarristerna Sandi Duraković och Milić Petrović med redan i originalgruppen från 90-talet.</p><p>Mostar Sevdah Reunion är en fantastisk blandning av förstklassiga musiker och enorm musikalisk mångformighet. Bandets senaste album, Lady Sings the Balkan Blues, har hållit sig högst uppe på världsmusiklistan World Music Charts Europe under hela första halvan av 2023, även på första platsen. På konserten bjuder bandet publiken på en stor musikupplevelse som sent kommer att glömmas.</p><p>Konserten ingår i programmet under festivalen Etnosoi! 2023.</p><p>Sammanställning:<br>Antonija Batinić – sång<br>Ivan Radoja ”Vanja” – fiol, bakgrundssångare<br>Milić Petrović ”Mišo” – gitarr, bakgrundssångare<br>Sandi Duraković – gitarr, bakgrundssångare<br>Gabrijel Prusina – piano, keyboard<br>Marko Jakovljević – bas, bakgrundssångare<br>Senad Trnovac – trummor</p><p>Längd ca 2 h med paus</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p><p>****</p><p>Med seriebiljetten Savoy WORLD upplever du höstens höjdpunkter förmånligare!</p><p>Savoy World är en konsertserie producerad av Savoyteatern som presenterar ett mångsidigt urval av musik från hela världen. Hösten 2023 presenterar serien den mexikanska sångaren Lila Downs, den bosniska traditionella ensemblen Mostar Sevdah Reunion och en tredje toppkonsert som publiceras under våren.</p><p>Köp nu seriebiljetten Savoy WORLD till Blind Bird-priset 125 €</p><p>Konserterna som ingår:</p><p>Lila Downs (Mexiko) sön. 10.9 kl. 18.00</p><p>Den otroligt populära Grammybelönade mexikanska artisten Lila Downs växte upp i två kultursfärer, Minnesota i USA och Oaxaca i Mexiko. Artistens mångkulturella bakgrund hörs i hennes musik som innehåller ekon från mexikanska rancheros, boleron, jazzstandarder, hip hop och nordamerikansk folkmusik. Downs sjunger förutom på spanska och engelska även på flera amerikanska urfolksspråk, såsom zapotekiska, mixtekiska och tarascospråket purépecha. Stjärnan som bland annat uppträtt i Vita huset och på Oscarsgalan ger nu för första gången en konsert i Finland.</p><p>Längd ca 1,5 h, ingen paus.</p><p>Mostar Sevdah Reunion (Bosnien och Hercegovina) tors. 9 november kl. 19.00</p><p>Bosniska Mostar Sevdah Reunion har blivit en regelrätt institution i Balkan. Bandets tolkningar av den traditionella sevdahmusiken för samman en hel värld av musik: i musiken hörs influenser från såväl flamenco, fado och rebetika som från salsa, blues och funk.<br>Mostar Sevdah Reunions grundsten är sevdah. Den melankoliska, lidelsefulla och kraftfulla sevdahsången är en upplevelse som känns i bröstet och får hjärtat att slå. Till största delen är musiken uråldrig, ofta förtvivlat sorglig, men tolkad med vänlig medkänsla.</p><p>Längd ca 2 h med paus</p><p>Fre. 3.11 publiceras senare</p><p>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p>", "en": "<p>The Bosnian band Mostar Sevdag Reunion has established itself as nothing short of an institution in the Balkans. The ensemble’s interpretations of traditional Sevdah music tie together an entire world of musical expression drawing influences from a wealth of sources ranging from flamenco, fado and rebetiko to salsa, blues and funk.</p><p>Sevdah, however, forms the foundation of Mostar Sevdah Reunion’s music. In addition to being a traditional genre of Slavic music, Sevdah also refers to a way of being and living in a world that is rife with all manner of emotions. The painfully melancholy and powerful Sevdah singing provides an experience that is sure to make your heart swell. The music is mostly ancient and often despairingly sad but interpreted through gentle compassion.</p><p>The band was established in the city of Mostar in Bosnia and Herzegovina The group of musicians used to meet up and play in candle-lit basements during the city’s siege in the early 1990s as a form of protest or, more pressingly, a survival strategy. After the war the musicians assembled a band around traditional Sevdah and have since released more than ten albums, performing around the world.</p><p>Over the years, there have been some changes to the line-up as important contributors such as Šaban Bajramović and Esma Redžepova are no longer with us. Still, their legacy has survived and is being cherished with great appreciation.. Of the current members, Sandi Duraković and Milić Petrović were already with the original band in the 1990s.</p><p>Mostar Sevdah Reunion is a wonderful blend of first-rate musicianship and immense musical diversity. The group’s new album Lady Sings the Balkan Blues has been a staple high up on the World Music Charts Europe chart for the early 2023, also staking a claim to the top spot. During the concert, the band will serve up an expansive musical experience that will stay with you for years to come.</p><p>The concert is part of the Etnosoi! 2023 festival programme.</p><p>Ensemble:<br>Antonija Batinić – vocals<br>Ivan Radoja “Vanja” – violin and background vocals<br>Milić Petrović “Mišo” – guitar and background vocals<br>Sandi Duraković – guitar and background vocals<br>Gabrijel Prusina – piano and keyboards<br>Marko Jakovljević – bass and background vocals<br>Senad Trnovac – drums</p><p>Duration approx. 2 h, including intermission</p><p>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol served.</p><p>****</p><p>The Savoy WORLD season ticket is the most affordable way to experience the highlights of the autumn season!</p><p>Savoy WORLD is a concert series produced by Savoy Theatre, which introduces audiences to a diverse range of music from all over the world. In the autumn of 2023, the concerts will feature the Mexican star songstress Lila Downs, the Bosnian traditional band Mostar Sevdah Reunion and a third incredible act, which will be announced during the spring.</p><p>Buy a Savoy WORLD season ticket now at a Blind Bird price of €125.</p><p>Season ticket concerts:</p><p>Lila Downs (Mexico) Sun 10 September at 6 pm.</p><p>The wildly popular, Grammy award-winning Mexican artist Lila Downs grew up influenced by two cultures in the U.S. state of Minnesota and in the Mexican state of Oaxaca. The multicultural background is clearly present in her music, which features echoes of Mexican rancheras, boleros, jazz standards, hip hop and North American folk. Downs sings her songs in Spanish and English, but also uses a variety of Native American languages, such as Zapotec, Mixtec and Tarascan. The incomparable star who has performed at the White House and the Oscar Gala can now be heard in Finland for the first time.</p><p>Duration approx. 1½ h, no intermission.</p><p>Mostar Sevdah Reunion (Bosnia and Hertsegovina) Thu 9 November, 7 pm</p><p>The Bosnian band Mostar Sevdag Reunion has established itself as nothing short of an institution in the Balkans. The ensemble’s interpretations of traditional Sevdah music tie together an entire world of musical expression drawing influences from a wealth of sources ranging from flamenco, fado and rebetiko to salsa, blues and funk.<br>Sevdah, however, forms the foundation of Mostar Sevdah Reunion’s music. The painfully melancholy and powerful Sevdah singing provides an experience that is sure to make your heart swell. The music is mostly ancient and often des</p>" }, "provider_contact_info": null, "short_description": { "fi": "Bosnialaisyhtye Mostar Sevdah Reunionista on muodostunut Balkanilla suoranainen instituutio. Yhtyeen tulkinnat perinteisestä sevdah-musiikista yhdistävät kokonaisen musiikillisen maailman: kuultavissa on vaikutteita niin flamencosta, fadosta ja rebetikasta kuin salsasta, bluesista ja funkistakin.", "sv": "Bosniska Mostar Sevdah Reunion har blivit en regelrätt institution i Balkan. Bandets tolkningar av den traditionella sevdahmusiken för samman en hel värld av musik: i musiken hörs influenser från såväl flamenco, fado och rebetika som från salsa, blues och funk.", "en": "The Bosnian band Mostar Sevdag Reunion has established itself as nothing short of an institution in the Balkans. The ensemble’s interpretations of traditional Sevdah music tie together an entire world of musical expression drawing influences from a wealth of sources ranging from flamenco, fado and rebetiko to salsa, blues and funk." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59804/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59948", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "15 € / 12 €", "sv": "15 € / 12 €", "en": "15 € / 12 €" }, "info_url": { "fi": "https://holvi.com/shop/todellisuus/", "sv": "https://holvi.com/shop/todellisuus/", "en": "https://holvi.com/shop/todellisuus/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4526, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:14.728677Z", "last_modified_time": "2023-09-07T14:26:14.728701Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731860.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4526/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:14.383088Z", "last_modified_time": "2023-11-14T06:13:36.660664Z", "date_published": null, "start_time": "2023-11-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, "name": { "fi": "Todellisuuden tutkimuskeskus: Camping", "sv": "Todellisuuden tutkimuskeskus: Camping", "en": "Reality Research Center: Camping" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/9D428BB70F3697D025D708A812FA356E/Todellisuuden_tutkimuskeskus_Camping", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/9D428BB70F3697D025D708A812FA356E/Todellisuuden_tutkimuskeskus_Camping", "en": "http://www.kanneltalo.fi/en/events/event/9D428BB70F3697D025D708A812FA356E/Reality_Research_Center_Camping" }, "description": { "fi": "<p>Camping on kokemuksellinen esitys ja selviytymisopas rajusti muuttuvaan maailmaan, missä kaikki on liikkeessä, kaikki palaa, kompassit pyörivät ja tulivuoret purkautuvat.</p><p>Aurinko on aina eri värinen, ruoka on oudon makuista, fossiilit tuntuvat lämpimiltä ja jokin lähestyy.</p><p>Tässä maailmassa kaksi lasta leiriytyy tuntemattoman äärelle yhdessä katsojien kanssa ja antaa kysymysten, tunteiden ja olioiden tulla luo. Leiri kasvaa, karttoja laaditaan, pystytetään spa-hoitola.</p><p>Camping on syntynyt halusta valmistautua siihen mihin ei voi valmistautua. Siinä tapahtuu kaikki minkä voidaan kuvitella tapahtuvan ja samalla kaikesta selvitään. Teoksessa on jotain kamalaa ja jotain lohdullista, ja vaikka siinä on monta loppua, mikään ei kokonaan lopu kuitenkaan.</p><p>Ikäraja: Esitys ei sovi alle 11-vuotiaille.<br>Esityksessä käytetään välkkyviä valoja ja tekoverta.</p><p><b>TYÖRYHMÄ:</b><br>Ohjaus ja dramaturgia: Essi Rossi<br>Äänisuunnittelu: Pauli Riikonen<br>Pukusuunnittelu: Liisa Pesonen<br>Runot: Petra Vallila <br>Skenografia: Milla Martikainen<br>Näyttämöllä: Olga ja Ruut Neves <br> <br>Tuotanto: Todellisuuden tutkimuskeskus<br>Esitystä ovat tukeneet: Koneen säätiö, Taike, Huberin säätiö</p><p>= = =</p>", "sv": "<p>Camping är en föreställning som bygger på upplevelse och en överlevnadsguide till världen som förändras häftigt, där allting är i rörelse, där allting brinner, kompasserna snurrar och vulkanerna har utbrott.</p><p>Solens färg ändras ständigt, maten smakar konstigt, fossiler känns varma och någonting närmar sig.</p><p>I den här världen slår två barn läger vid det okända tillsammans med publiken och låter frågorna, känslorna och varelserna komma nära. Lägret växer, kartor ritas, en spasalong inrättas.</p><p>Camping har uppstått ur en önskan om att förbereda sig på det som man inte kan förbereda sig på. Här händer allt som kan tänkas hända och samtidigt klarar man av allt. Verket är både hemskt och tröstande och även om det innehåller många avslut, upphör ingenting helt ändå.</p><p>Åldersgränsen: inte för barn under 11 år<br>Föreställningen innehåller blinkande ljus och användning av fejkblod.</p>", "en": "<p>‘Camping’ is an experiential performance and a survival guide to a rapidly changing world where everything is on the move, everything is on fire, compasses are spinning and volcanoes are erupting.</p><p>The sun is always a different colour, food tastes strange, fossils feel warm and something is coming.</p><p>In this world, two children set up a camp, stopping together with the audience to face the unknown and let questions, feelings and creatures come to them. The camp grows, maps are drawn, a spa is set up.</p><p>‘Camping’ is born out of a desire to prepare for what cannot be prepared for. Everything that can be imagined will happen and yet everything will be overcome. There is something terrible and something comforting and, although it has many endings, it doesn’t end completely.</p><p>Age limit: not for children under 11 yrs.<br>The performance contains flashing lights and the use of fake blood.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Camping on kokemuksellinen esitys ja selviytymisopas rajusti muuttuvaan maailmaan, missä kaikki on liikkeessä, kaikki palaa, kompassit pyörivät ja tulivuoret purkautuvat.", "sv": "Camping är en föreställning som bygger på upplevelse och en överlevnadsguide till världen som förändras häftigt, där allting är i rörelse, där allting brinner, kompasserna snurrar och vulkanerna har utbrott.", "en": "‘Camping’ is an experiential performance and a survival guide to a rapidly changing world where everything is on the move, everything is on fire, compasses are spinning and volcanoes are erupting." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59948/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59924", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:u4804001050", "sub_events": [], "images": [ { "id": 4525, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:14.119583Z", "last_modified_time": "2023-09-07T14:26:14.119605Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731300.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4525/?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": "2023-09-07T14:26:13.972846Z", "last_modified_time": "2023-11-14T06:13:36.586461Z", "date_published": null, "start_time": "2023-11-09T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Unfinished Tales", "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse", "en": "Unfinished Tales" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/7BC0D9EA6C6A2CECF8D1AFF873B85EF3/Unfinished_Tales", "sv": "http://www.annantalo.fi/sv/evenemang/event/7BC0D9EA6C6A2CECF8D1AFF873B85EF3/Unfinished_Tales", "en": "http://www.annantalo.fi/en/events/event/7BC0D9EA6C6A2CECF8D1AFF873B85EF3/Unfinished_Tales" }, "description": { "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>", "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>", "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix. <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.", "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59924/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59921", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:u4804001050", "sub_events": [], "images": [ { "id": 4523, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:13.235744Z", "last_modified_time": "2023-09-07T14:26:13.235765Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731299.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4523/?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": "2023-09-07T14:26:12.056281Z", "last_modified_time": "2023-11-14T06:13:36.507163Z", "date_published": null, "start_time": "2023-11-09T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Unfinished Tales", "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse", "en": "Unfinished Tales" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D73290471E72A0870D6895746C3D3A78/Unfinished_Tales", "sv": "http://www.annantalo.fi/sv/evenemang/event/D73290471E72A0870D6895746C3D3A78/Unfinished_Tales", "en": "http://www.annantalo.fi/en/events/event/D73290471E72A0870D6895746C3D3A78/Unfinished_Tales" }, "description": { "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>", "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>", "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix. <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.", "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59921/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60474", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-3/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4524, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:13.730792Z", "last_modified_time": "2023-09-07T14:26:13.730811Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725261.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4524/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:13.572471Z", "last_modified_time": "2023-11-14T06:13:36.430610Z", "date_published": null, "start_time": "2023-11-09T08:00:00Z", "end_time": "2023-11-09T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Taidetta Taaperoille – Open Art Studio for Toddlers-verkstäder (", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/01DEEC9FADE480479F4EA0BD172ECF37/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/01DEEC9FADE480479F4EA0BD172ECF37/Taidetta_Taaperoille_Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/01DEEC9FADE480479F4EA0BD172ECF37/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "description": { "fi": "<p>Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.</p><p>Tilassa on aina maalaustelineet ja kuvanveistomahdollisuus. Lapset voivat työskennellä omassa tahdissaan ja tutustua viikoittain vaihtuviin tekemisen pisteisiin.</p><p>Lapsille avautuu mahdollisuus kokeilla omaa taidetekemistä ja kehittää sosiaalisia taitojaan toisten lasten kanssa. Lapsen ja huoltajan kiintymyssuhde vahvistuu leikkisässä ja luovassa ympäristössä. Työpajoihin voi tulla koko ajaksi tai vain hetkeksi kerrallaan. Ennakkoilmoittautumista ei tarvita.</p><p>Työpajaohjaajana Eungyung Kim<br>Ikäsuositus ja/tai kohderyhmä: 1,5–3-vuotiaille lapsille yhdessä huoltajan kanssa<br>Kieli: englanti ja suomi<br>Vapaa pääsy</p>", "sv": "<p>Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.</p><p>I lokaler finns alltid stafflier och möjlighet till skulptering. Barnen kan arbeta i egen takt och bekanta sig med aktiviteter som varierar från vecka till vecka.</p><p>Barnen får möjlighet att prova på att skapa konst och utveckla sina sociala färdigheter tillsammans med andra barn. Anknytningen mellan barnet och den vuxna stärks när man umgås i en lekfull och kreativ miljö. Man kan stanna under hela verkstaden eller bara delta en stund. Ingen förhandsanmälan krävs.</p><p>Verkstaden leds av Eungyung Kim.<br>Åldersrekommendation: 1,5–3 år med en vuxen<br>Språk: engelska, finska<br>Fritt inträde</p>", "en": "<p>Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations.</p><p>Painting easels and sculpting tools and materials are available always for children to work and play with.</p><p>The children will move at their own pace exploring weekly changing stations. It is an opportunity for little children to experience artistic creativity, develop social skills with other children. For the caretaker, the workshop provides a cahnge to strengthen emotional bonding in a playful and creative environment. Drop-in course, no registration needed.</p><p>Art teacher: Eungyung Kim<br>Age recommendation 1.5 to 3-year-olds together with an adult<br>Language: English and Finnish<br>Free entry</p>" }, "provider_contact_info": null, "short_description": { "fi": "Lapset tutustuvat yhdessä huoltajansa kanssa erilaisiin taidemateriaaleihin ja tekniikoihin, jotka on sijoitettu studiotilan eri pisteisiin.", "sv": "Barnen får tillsammans med sina vårdnadshavare bekanta sig med olika konstmaterial och tekniker, utplacerade på olika ställen i studiolokalen.", "en": "Children are welcomed to come in with a caretaker and together they will explore various art materials and techniques placed in different stations." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60474/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60163", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "29,50/22,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3412855" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4522, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:10.834284Z", "last_modified_time": "2023-09-07T14:26:10.834304Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730720.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4522/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:10.265786Z", "last_modified_time": "2023-11-14T06:13:36.360695Z", "date_published": null, "start_time": "2023-11-08T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ladies First Big Band – 30 vuotta yhtä juhlaa!" }, "provider": { "fi": "Rytmihäiriköt ry" }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/F425F25BCDD33BBA81287536ED223B92/Ladies_First_Big_Band_" }, "description": { "fi": "<p>Marraskuinen ilta saa kimaltavan hunnun, kun Ladies First Big Band valtaa legendaarisen Savoy-teatterin paljetit säihkyen ja glitterit pölisten. Komeaa 30-vuotista taivaltaan juhlistava orkesteri tuo koko 22-henkisen kokoonpanonsa lisäksi lavalle kattauksen solistivieraita, jotka ovat myös vuosien varrella esiintyneet Ladies Firstin riveissä. Juhlakonsertissa koetaan nostalgisia hetkiä, kuullaan upeita sooloja sekä parhaita paloja vuosien varrelta ja juhlistetaan nykyhetkeä mehevän bilesetin tahtiin. Tervetuloa juhlimaan kanssamme!</p><p>Kesto n. 2,5 h, sisältää väliajan</p><p>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>" }, "provider_contact_info": null, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60163/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60889", "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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5213, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:45.785632Z", "last_modified_time": "2023-10-09T13:31:45.785653Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735806.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5213/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:44.501269Z", "last_modified_time": "2023-11-14T06:13:36.289263Z", "date_published": null, "start_time": "2023-11-08T17:00:00Z", "end_time": "2023-11-08T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkeellä marraskuussa – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP", "en": "Moving in November – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/6C9043D05A7AA17F0BB0D58E1A6F3B80/Liikkeella_marraskuussa_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP", "en": "http://www.stoa.fi/en/events/event/6C9043D05A7AA17F0BB0D58E1A6F3B80/Moving_in_November_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP" }, "description": { "fi": "<p>Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.</p><p>Vuorovaikutuksessa Kim_Twiddlen live-musiikin kanssa esiintyjät maalaavat intiimin muotokuvan suhteestaan seitsemässä luvussa. Tämä persoonallisuuksien cocktail uhmaa stereotypioita ja normatiivisia käsityksiä tarjoamalla yleisölle välähdyksen utopiasta – näkemyksen ihmisten välisestä vuorovaikutuksesta, joka perustuu aidolle kohtaamiselle asettaen etusijalle hellyyden ja rehellisyyden.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia vierailevat taiteilijat käyvät keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 8.11. klo 12 Goethe instituutissa.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/scores-that-shaped-our-friendship-2/</p><p>Kesto: 1 tunti<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.</p><p>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>", "en": "<p>With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality.</p><p>Interacting with live music by Kim_Twiddle, the performers paint an intimate portrait in seven chapters. This cocktail of personalities defies stereotypes and normative perceptions and offers the audience a glimpse of utopia – a vision of human interactions that prioritize tenderness, honesty, and a dedication to authentically relate to one another.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with the invited artists and local host called Soup Talk on the 8th of November at noon in Goethe-Institut.</p><p>Read more: https://movinginnovember.fi/scores-that-shaped-our-friendship/</p><p>Duration: 1 hour<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11. The festival program will be published in September.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.", "en": "With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60889/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61120", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5334, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-10T13:31:13.896003Z", "last_modified_time": "2023-10-10T13:31:13.896022Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737936.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5334/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-10T13:31:12.597192Z", "last_modified_time": "2023-11-14T06:13:36.215649Z", "date_published": null, "start_time": "2023-11-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Ihmeiden äärellä (S) – Kino Helios" }, "provider": null, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/C2CAA044C7883F30F23736EF4D133101/Ihmeiden_aarella_S_" }, "description": { "fi": "<p>Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin.</p><p>Kuuluisassa ranskalaisessa pyhiinvaelluskohteesessa virtaa parantavaksi kutsuttua lähdevettä itsensä Neitsyt Marian toimesta.</p><p>Matkaan lähtee myös nuori äiti Dolly pienen, puhumattoman poikansa kanssa sekä vuosia poissa ollut Chrissie. Jokainen odottaa matkalta ihmeitä vain huomatakseen, että ovat jo ystävyydessään ihmeiden äärellä.</p><p>Hauskan ja koskettavan elokuvan pääosissa nähdään Oscar-palkitut Maggie Smith ja Kathy Bates sekä Laura Linney ja Stephen Rea.</p><p>Kesto 90 min<br>Ensi-ilta 3.11.<br>Ikäraja Sallittu</p>" }, "provider_contact_info": null, "short_description": { "fi": "Ikänsä miehiään passanneet Lily ja Eileen saavat mahdollisuuden matkustaa 1960-luvun Irlannin ahtaista ympyröistä Lourdesiin." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61120/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61138", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5451, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T13:58:28.350829Z", "last_modified_time": "2023-10-12T13:58:28.350849Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733539.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5451/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-12T13:58:28.216592Z", "last_modified_time": "2023-11-14T06:13:36.141831Z", "date_published": null, "start_time": "2023-11-08T16:00:00Z", "end_time": "2023-11-08T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Onsdagsbio: Kungen", "sv": "Onsdagsbio: Kungen", "en": "Onsdagsbio: Kungen" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen", "sv": "http://www.vuotalo.fi/sv/evenemang/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen", "en": "http://www.vuotalo.fi/en/events/event/AB52DD69684C0A632DB3F4081370F16A/Onsdagsbio_Kungen" }, "description": { "fi": "<p>Kahden vuoden ajan elokuvaohjaaja Karin af Klintberg oli yhteydessä Ruotsin hovin tiedotusosastoon. Lopulta hänestä tuli ensimmäinen journalisti, jolle sanottiin kyllä.</p><p>Hän sai ainutlaatuisen tilaisuuden seurata tiiviisti kuningas Kaarle XVI Kustaata hänen elämässään ja työssään. Kuvaukset alkoivat viime keväänä ja sen jälkeen tapaamisia on ollut useita. Joskus etäältä virallisemmissa tilaisuuksissa, kuten virkaanastujaisissa ja valtiovierailuissa. Joskus kasvokkain Tukhoman linnassa tai Sollidenin puistossa kuninkaan kesäasunnossa Öölannissa. Keskustelut koskevat kaikkea lapsuudesta kuninkaallisen elämän ylä- ja alamäkiin.</p><p>Dokumentti on ensimmäinen Ruotsin kuninkaasta tämän elinaikana kuvattu dokumentti. Kuninkaan isoisä Kustaa VI Adolf ja isoisän isä Kustaa V eivät antaneet haastatteluja.</p><p>Maa: Ruotsi 2023<br>Ohjaaja: Karin af Klintberg<br>Kesto: 1 t 38 min.<br>Kieli: ruotsi<br>Tekstitys: suomi<br>Ikäraja: S</p><p>Vapaa pääsy</p><p>Järj. Finlandssvenskt filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Under två år uppvaktade filmregissören Karin af Klintberg hovets informationsavdelning. Till slut fick hon som första journalist någonsin ett ja.</p><p>En unik möjlighet att på nära håll få följa kung Carl XVI Gustaf i hans liv och arbete.</p><p>Det är första gången i historien som det pågår en dokumentärfilmsinspelning om och med en kung medan han fortfarande lever. Kungens farfar Gustaf VI Adolf och farfars far Gustaf V gav inte intervjuer.</p><p>Land: Sverige 2023<br>Regissör: Karin af Klintberg<br>Medverkande: Carl XVI Gustaf<br>Längd: 1 h 38 min.<br>Språk: svenska<br>Text: finska<br>Barntillåten<br>Fritt inträde</p><p>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset</p>", "en": "<p>The Swedish bio-pic about the country's monarch is the first of its kind: never before has a documentary been filmed about the king during his lifetime.</p><p>Sweden 2023<br>Director: Karin af Klintberg<br>Duration: 1 h 38 min<br>Language: Swedish<br>Subtitles: Finnish</p><p>For all ages, free entry.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Kahden vuoden ajan elokuvaohjaaja Karin af Klintberg oli yhteydessä Ruotsin hovin tiedotusosastoon. Lopulta hänestä tuli ensimmäinen journalisti, jolle sanottiin kyllä.", "sv": "Under två år uppvaktade filmregissören Karin af Klintberg hovets informationsavdelning. Till slut fick hon som första journalist någonsin ett ja.", "en": "The Swedish bio-pic about the country's monarch is the first of its kind: never before has a documentary been filmed about the king during his lifetime." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61138/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60650", "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:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "24,50 € / 17 €", "sv": "24,50 € / 17 €", "en": "24,50 € / 17 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV", "sv": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV", "en": "https://www.lippu.fi/artist/tommi-lantinen/?affiliate=ADV" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4521, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:09.903902Z", "last_modified_time": "2023-09-07T14:26:09.903923Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730532.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4521/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:09.757837Z", "last_modified_time": "2023-11-14T06:13:36.065519Z", "date_published": null, "start_time": "2023-11-08T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Tommi Läntinen Trio", "sv": "Tommi Läntinen Trio", "en": "Tommi Läntinen Trio" }, "provider": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio", "en": "http://www.kanneltalo.fi/en/events/event/839DA573D9FAD93830F7768F527B0822/Tommi_Lantinen_Trio" }, "description": { "fi": "<p>Upeaääninen ja karismaattinen Tommi Läntinen on kirjoittanut, esittänyt ja levyttänyt musiikkiaan jo yli neljänkymmenen vuoden ajan.</p><p>Lukuisten sooloalbumiensa lisäksi hän on vaikuttanut pitkän uransa aikana mm. Boycott-yhtyeessä ja tehnyt kappaleita myös muille artisteille. Läntisen suurimpiin hitteihin lukeutuvat esimerkiksi Via Dolorosa, Kevät ja minä, Rööperin kuu, Syvälle sydämeen sattuu, Satelliitti, Villi ja vapaa, Se on rock sekä monta muuta.</p><p>Läntinen osallistui vuonna 2022 Uuden Musiikin Kilpailuun kappaleellaan ”Elämä kantaa mua”, minkä lisäksi saman vuoden helmikuussa ilmestyi samanniminen albumi. Läntinen nähtiin mukana myös syksyn 2022 Vain Elämää -ohjelmassa.</p><p>Esityksen kesto n. 1 t 30 min. sisältäen väliajan.</p>", "sv": "<p>Karismatiska Tommi Läntinen med den fantastiska rösten har skrivit, framfört och spelat in musik i redan över fyra årtionden.</p>", "en": "<p>Tommi Läntinen, the charismatic singer with a magnificent voice, has been writing, performing and recording music for over 40 years.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Upeaääninen ja karismaattinen Tommi Läntinen on kirjoittanut, esittänyt ja levyttänyt musiikkiaan jo yli neljänkymmenen vuoden ajan.", "sv": "Karismatiska Tommi Läntinen med den fantastiska rösten har skrivit, framfört och spelat in musik i redan över fyra årtionden.", "en": "Tommi Läntinen, the charismatic singer with a magnificent voice, has been writing, performing and recording music for over 40 years." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60650/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60680", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:602/?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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5578/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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:u4804001050", "sub_events": [], "images": [ { "id": 4520, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:09.527910Z", "last_modified_time": "2023-09-07T14:26:09.527931Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735268.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4520/?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": "2023-09-07T14:26:09.380305Z", "last_modified_time": "2023-11-14T06:13:35.985796Z", "date_published": null, "start_time": "2023-11-08T15:00:00Z", "end_time": "2023-11-08T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/787CCCEE27B58F7BC0F6FCA74CAEE27C/Sanapaja_Wordshop_" }, "description": { "fi": "<p>Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?</p><p>Haluatko harrastaa kirjoittamista mukavassa seurassa? Tervetuloa Sanapaja / Wordshop -kirjoittajatyöpajoihin!<br> <br>Voit kirjoittaa millä kielellä haluat. Kieliopilla ei ole väliä, vaan sillä mitä haluat sanoa! <br>Pajoissa puhutaan suomea ja englantia.</p><p>Voit osallistua pajoihin vaikka joka kerta, tai silloin kuin sinulle sopii. <br>Vapaa pääsy, ei ennakkoilmoittautumista.</p><p>Ole ylpeä kaikista kielistä, joita osaat!<br> <br>Järjestäjät: Vuotalo, Nuoren Voiman Liitto ja Operaatio Pulssi <br>Ikäsuositus: 13-19v (mutta ei tarkkaa ikärajaa) <br>Paikka: Kirjaston kokoushuone 2</p>", "sv": "<p>Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?</p><p>Vill du skriva i ett härligt gäng? Välkommen till skrivarverkstäderna Sanapaja / Wordshop!</p><p>Du kan skriva på vilket språk som helst. Det viktigaste är inte grammatiken utan det du vill säga!</p><p>I verkstäderna talas finska och engelska. <br>Du kan delta i verkstäderna varje gång eller då det passar dig. <br>Fritt inträde, ingen förhandsanmälan.</p><p>Var stolt över alla språk du kan!</p><p>Arrangörer: Nordhuset, Nuoren Voiman Liitto ry och Operaatio Pulssi <br>Åldersrekommendation: 13–19 (ingen specifik åldersgräns) <br>Plats: Bibliotekets mötesrum 2</p>", "en": "<p>Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?</p><p>Do you want to do some writing in good company? Welcome to the Wordshop writers’ workshops! <br> <br>You can write in any language you want. It's not the grammar that counts. It's what you want to say. The workshops are conducted in Finnish and English.</p><p>You can participate in the workshops every time or whenever it suits you.</p><p>Free admission, no pre-registration required.</p><p>Be proud of all the languages you know!</p><p>Organisers: Vuosaari House, Nuoren Voiman Liitto and Operation Pulse <br>Age recommendation: 13–19 (no specific age limit)<br>Location: Meeting room 2 in Vuosaari Library</p>" }, "provider_contact_info": null, "short_description": { "fi": "Oletko useamman kielen ja kulttuurin parissa elävä nuori? Haluatko oppia kirjoittamaan vaikka lavarunon, rap-biisin tai somepäivityksen?", "sv": "Är du en ung person som lever bland flera språk och kulturer? Vill du lära dig att skriva till exempel estradpoesi, raplåtar eller inlägg på sociala medier?", "en": "Are you a young person living with multiple languages and cultures? Do you want to learn how to write slam poetry, a rap song or social media update?" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60680/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60050", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4519, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:09.158830Z", "last_modified_time": "2023-09-07T14:26:09.158862Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732348.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4519/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:26:08.950225Z", "last_modified_time": "2023-11-14T06:13:35.910967Z", "date_published": null, "start_time": "2023-11-08T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves", "sv": "HOW-radio | Global Club Nights – Helsinki Open Waves", "en": "HOW-radio | Global Club Nights – Helsinki Open Waves" }, "provider": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/75362994A028FC2005B833613890D4FD/HOW-radio_Global_Club_Nights" }, "description": { "fi": "<p>Tarinankerrontaa – Juniper and the Wolf</p><p><b>Juniper & The Wolf</b> (aka <b>Genevieve Andersen</b>) on yhden hengen duo: aivan omanlaisensa lauluntekijä ja balladilaulaja, joka punoo yhteen ainutlaatuisen sekoituksen eeppistä runoutta, tarinankerrontaa, alkuperäistä musiikkia ja kansanlauluja eri puolilta maailmaa.</p><p>Kesto: 60 min</p>", "sv": "<p>Berättelser – Juniper and the Wolf</p><p><b>Juniper and the Wolf</b> (även <b>Genevieve Andersen</b>) är en duo i en person; en enastående låtskrivare och balladsångare, som väver samman en egen unik blandning av episk poesi, berättande, originalmusik och folksånger från hela världen.</p><p>Längd: 60 min</p>", "en": "<p>Storytelling – Juniper and the Wolf</p><p><b>Juniper & The Wolf</b> (aka <b>Genevieve Andersen</b>) is a duo of one; a one-of-a-kind songwriter and ballad singer, weaving together her own unique blend of epic poetry, storytelling, original music, and folk songs from around the world.</p><p>Hailing from the USA, Genevieve has traveled extensively throughout Europe, the US, and Canada, collecting songs and stories from various countries and cultures.</p><p>With performances that encompass a multitude of eras and languages—and shows that are equally known for spellbound silences as they are for joyously singing crowds—Juniper & The Wolf will leave you quietly transformed; ready to escape unto the wilds, forge a new world empire, or delve into the heart of a fascinating story.</p><p>Duration: 60 min</p>" }, "provider_contact_info": null, "short_description": { "fi": "Tarinankerrontaa – Juniper and the Wolf", "sv": "Berättelser – Juniper and the Wolf", "en": "Storytelling – Juniper and the Wolf" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60050/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59923", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:u4804001050", "sub_events": [], "images": [ { "id": 4518, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:07.735641Z", "last_modified_time": "2023-09-07T14:26:07.735662Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731297.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4518/?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": "2023-09-07T14:26:06.756757Z", "last_modified_time": "2023-11-14T06:13:35.840605Z", "date_published": null, "start_time": "2023-11-08T11:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Unfinished Tales", "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse", "en": "Unfinished Tales" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/301408B0013472C01061467739D650DF/Unfinished_Tales", "sv": "http://www.annantalo.fi/sv/evenemang/event/301408B0013472C01061467739D650DF/Unfinished_Tales", "en": "http://www.annantalo.fi/en/events/event/301408B0013472C01061467739D650DF/Unfinished_Tales" }, "description": { "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>", "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>", "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix. <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.", "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59923/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61137", "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:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5450, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T13:58:23.728093Z", "last_modified_time": "2023-10-12T13:58:23.728113Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736815.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5450/?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": "2023-10-12T13:58:23.587820Z", "last_modified_time": "2023-11-14T06:13:35.762589Z", "date_published": null, "start_time": "2023-11-08T11:00:00Z", "end_time": "2023-11-08T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "DOKKINO filmvisningar för högstadiet", "sv": "DOKKINO filmvisningar för högstadiet", "en": "DOKKINO filmvisningar för högstadiet" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/4E15F2F7FA8BD5D2C76252F051030777/DOKKINO_filmvisningar_for_hogstadiet", "sv": "http://www.vuotalo.fi/sv/evenemang/event/4E15F2F7FA8BD5D2C76252F051030777/DOKKINO_filmvisningar_for_hogstadiet", "en": "http://www.vuotalo.fi/en/events/event/4E15F2F7FA8BD5D2C76252F051030777/DOKKINO_filmvisningar_for_hogstadiet" }, "description": { "fi": "<p>7.–9.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.</p><p>Näytöksen kokonaiskesto on 70 minuuttia. Elokuvien tarkempiin sisältöihin voit tutustua <u><a href=\"https://dokkino.fi/ylakoulunaytos/\">DOKKINON sivuilla</a></u>.</p><p>Jokaiseen elokuvaan liittyy oma opetusmateriaali, jonka löydät myös DOKKINON sivuilta. Opetusmateriaalit on tuotettu yhteistyössä ammattitahojen kanssa ja ne tarjoavat keskustelunavauksia ja tehtäviä elokuvien teemoihin sekä dokumenttielokuvaan liittyen.</p><p>Näytökseen on vapaa pääsy, mutta osallistuminen edellyttää ilmoittautumista <u><a href=\"https://www.kultus.fi\">Kultuksessa</a></u></p><p>Näytöksessä nähtävät elokuvat:<br>Aikiddo<br>#kiusaamistarina<br>Safiyan elokuva<br>Surffari Charlie</p>", "sv": "<p>DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 7–9. Filmerna är internationella med svensk text.</p><p>Den totala längden på visningarna är ca.70 minuter. Du kan bekanta dig närmare med filmerna på <u><a href=\"https://dokkino.fi/sv/filmvisningar-for-hogstadiet/\">DOKKINOs sida</u></a></p><p>På DOKKINOs sida finns det också läromaterial som är framtaget för varje film som lärarna kan använda sig av för att behandla filmerna och dess innehåll efteråt med eleverna.</p><p>Fritt deltagande men obligatorisk förhandsanmälan via <u><a href=\"https://www.kultus.fi\">kultus.fi</u></a></p><p>Dokumentärfilmserien för lågstadiet består av följande filmer: <br>Aikiddo<br>#mobbningsfall<br>Safiyas film<br>Surfar-Charlie</p>", "en": "<p>At the DOKKINO film screening for 7–9 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-</p><p>The screening duration in full is approximately 70 minutes. You can read more about the films on <u><a href=\"https://dokkino.fi/en/\">DOKKINO's own site.</u></a></p><p>Each film also has an associated learning material in Finnish and Swedish that you can find on DOKKINO's site of the corresponding language.</p><p>Free entry, obligatory pre-registration at <u><a href=\"https://www.kultus.fi\">Kultus</u></a></p><p>Films shown in the screening:<br>Aikiddo<br>#bullyingstory<br>Safiya the Movie<br>Charlie Surfer</p>" }, "provider_contact_info": null, "short_description": { "fi": "7.–9.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.", "sv": "DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 7–9. Filmerna är internationella med svensk text.", "en": "At the DOKKINO film screening for 7–9 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61133", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5426, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-12T12:31:05.471894Z", "last_modified_time": "2023-10-12T12:31:05.471949Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_736814.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5426/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-12T12:31:05.341212Z", "last_modified_time": "2023-11-14T06:13:35.685162Z", "date_published": null, "start_time": "2023-11-08T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "DOKKINO filmvisningar för lågstadiet", "sv": "DOKKINO filmvisningar för lågstadiet", "en": "DOKKINO filmvisningar för lågstadiet" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/8637F168214EBB8869845C53869FFD31/DOKKINO_filmvisningar_for_lagstadiet", "sv": "http://www.vuotalo.fi/sv/evenemang/event/8637F168214EBB8869845C53869FFD31/DOKKINO_filmvisningar_for_lagstadiet", "en": "http://www.vuotalo.fi/en/events/event/8637F168214EBB8869845C53869FFD31/DOKKINO_filmvisningar_for_lagstadiet" }, "description": { "fi": "<p>4.–6.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.</p><p>Näytöksen kokonaiskesto on 70 minuuttia. Elokuvien tarkempiin sisältöihin voit tutustua <u><a href=\"https://dokkino.fi/alakoulunaytos/\">DOKKINON sivuilla</a></u>.</p><p>Jokaiseen elokuvaan liittyy oma opetusmateriaali, jonka löydät myös DOKKINON sivuilta. Opetusmateriaalit on tuotettu yhteistyössä ammattitahojen kanssa ja ne tarjoavat keskustelunavauksia ja tehtäviä elokuvien teemoihin sekä dokumenttielokuvaan liittyen.</p><p>Näytökseen on vapaa pääsy, mutta osallistuminen edellyttää ilmoittautumista <u><a href=\"https://www.kultus.fi\">Kultuksessa</a></u></p><p>Näytöksessä nähtävät elokuvat:<br>Aikiddo<br>#kiusaamistarina<br>Safiyan elokuva<br>Surffari Charlie</p>", "sv": "<p>DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 4-6. Filmerna är internationella med svensk text.</p><p>Den totala längden på visningarna är ca.70 minuter. Du kan bekanta dig närmare med filmerna på <u><a href=\"https://dokkino.fi/sv/filmvisningar-for-lagstadiet/\">DOKKINOs sida</u></a></p><p>På DOKKINOs sida finns det också läromaterial som är framtaget för varje film som lärarna kan använda sig av för att behandla filmerna och dess innehåll efteråt med eleverna.</p><p>Fritt deltagande men obligatorisk förhandsanmälan via <u><a href=\"https://www.kultus.fi\">kultus.fi</u></a></p><p>Dokumentärfilmserien för lågstadiet består av följande filmer: <br>Aikiddo<br>#mobbningsfall<br>Safiyas film<br>Surfar-Charlie</p>", "en": "<p>At the DOKKINO film screening for 4–6 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-</p><p>The screening duration in full is approximately 70 minutes. You can read more about the films on <u><a href=\"https://dokkino.fi/en/\">DOKKINO's own site.</u></a></p><p>Each film also has an associated learning material in Finnish and Swedish that you can find on DOKKINO's site of the corresponding language.</p><p>Free entry, obligatory pre-registration at <u><a href=\"https://www.kultus.fi\">Kultus</u></a></p><p>Films shown in the screening:<br>Aikiddo<br>#bullyingstory<br>Safiya the Movie<br>Charlie Surfer</p>" }, "provider_contact_info": null, "short_description": { "fi": "4.–6.-luokkalaisten DOKKINO-elokuvanäytöksessä nähdään neljä lyhytdokumenttielokuvaa. Elokuvat ovat kansainvälisiä ja ne on tekstitetty ruotsiksi.", "sv": "DOKKINOs dokumentärfilmserien för lågstadiet riktar sig till årskurserna 4-6. Filmerna är internationella med svensk text.", "en": "At the DOKKINO film screening for 4–6 graders, four short documentary films are presented. The films are international and have subtitles in Swedish-" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61133/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59922", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:669/?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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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:u4804001050", "sub_events": [], "images": [ { "id": 4516, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:05.357917Z", "last_modified_time": "2023-09-07T14:26:05.357940Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731296.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4516/?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": "2023-09-07T14:26:05.202587Z", "last_modified_time": "2023-11-14T06:13:35.610667Z", "date_published": null, "start_time": "2023-11-08T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Unfinished Tales", "sv": "Unfinished Tales – Oavslutade berättelser – en kollektiv berättelse", "en": "Unfinished Tales" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/C0030752392D0253376495F7EDD9580C/Unfinished_Tales", "sv": "http://www.annantalo.fi/sv/evenemang/event/C0030752392D0253376495F7EDD9580C/Unfinished_Tales", "en": "http://www.annantalo.fi/en/events/event/C0030752392D0253376495F7EDD9580C/Unfinished_Tales" }, "description": { "fi": "<p>Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.</p><p>Installaatioesityksessä nuori yleisö kutsutaan runolliseen arkistoon, joka koostuu nuorten ja taiteilijoiden yhteistyönä luomasta tutkimusaineistosta. Esitettävä aineisto on valikoitu pohjoismaalaisten, ghanalaisten ja St. Croix'n nuorten muodostaman kuraattoritiimin toimesta.</p><p>Installaatiossa nuorten tarinoita esittävät ammattitaiteilijat, ja nuori yleisö opastetaan läpi installaation, jossa videokuva, liikkeet, teksti, äänitallenteet ja esineet avautuvat ja heräävät henkiin yleisön ja esiintyjien yhteistyönä.</p><p>Esityksen kesto: 60 min<br>Kieli: englanti, ruotsi, suomi<br>Ikäsuositus: 13–18<br>Maksuttomiin installaatioesityksiin ilmoittautuminen 15.9. alkaen osoitteessa https://www.kultus.fi</p>", "sv": "<p>Hur känns det att vara ung efter kolonialismen? Att vara tvungen att hitta sin identitet mellan oskrivna sidor i historieböcker och svarta hål i det kollektiva medvetandet?<br> <br><i>Unfinished Tales – a collective story (Oavslutade berättelser – en kollektiv berättelse)</i> är ett transatlantiskt samarbete som utforskar den nordiska kolonialismen – förr och nu – som upplevs av unga i Norden, Ghana och Saint Croix. <br> <br>Installationen bjuder en ung publik in i ett sensuellt och poetiskt arkiv som utgörs av forskningsmaterial som skapats av ungdomar och artister i samarbete. Det material som presenteras har valts ut av ett team kuratorer som består av ungdomar från Norden, Ghana och Saint Croix.</p><p>I installationen främjas och framförs de ungas berättelser av professionella artister. Den unga publiken handleds genom installationen där filmer, rörelser, text, ljudinspelningar och föremål avslöjas och väcks till liv i ett samarbete mellan publiken och dem som uppträder.</p><p>Längd: 60 min<br>Språk: engelska<br>Åldersrekommendation: 13-18 år</p><p>Anmälan till gratis installationspresentationer: kultus.fi</p>", "en": "<p>Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix.</p><p>In the installation the young audience is invited into a sensous and poetic archive composed of the research material created by youth and artists in collaboration. The material presented is selected by a curatorteam of youths from the Nordics, Ghana and St. Croix. <br> <br>In the installation the stories of the youth are facilitated and performed by the professional artists and the young audience is guided through the installation where films, movements, text, audiorecordings and objects are unfolded and brought to life in collaboration between audience and performers.</p><p><i>\"Overgrown history is everywhere\"<br>\"Why do I know so little?\"<br>\"It feels like I have empty hand, no tools, a world of knowledge, but everything is in the dark\"<br>\"I hope nothing bad happens today, but it is of course not good, what happened in the past\"<br>\"It is not past, it is still here\"<br>\"We must continue talking, so that everyone can see, we all are one people\"</i></p><p>How does it feel to be young in the wake of colonialism? Having to find your identity between the unwritten pages in history books and black holes in the collective consciousness?</p><p>Performance duration: 60 min<br>Language: English<br>Age recommendation: 13–18-year-olds<br>Free entry, pre-registration at https://www.kultus.fi starting 15 September.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Unfinished tales on Atlantin ylittävä yhteistyöprojekti, joka tutkii Pohjoismaiden kolonialismia – menneisyydessä ja nykyhetkessä – nuorten kokemana Pohjoismaissa, Ghanassa ja St. Croix'n saarella.", "en": "Unfinished Tales – a collective story is a cross-atlantic collaboration, investigating Nordic colonialism – past and present – experienced by youth in the Nordics, Ghana and St. Croix." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59922/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60940", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5212, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:42.944630Z", "last_modified_time": "2023-10-09T13:31:42.944650Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737174.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5212/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-10-09T13:31:42.798165Z", "last_modified_time": "2023-11-14T06:13:35.536213Z", "date_published": null, "start_time": "2023-11-08T08:00:00Z", "end_time": "2023-11-08T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Naperokino: Yhteiskunta ja kaupunki", "sv": "Knattebion: samhälle och stad!", "en": "Naperokino (toddles cinema): society and the city" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/D24B7727E374BCEABD311BED09D33B99/Naperokino_Yhteiskunta_ja_kaupunki", "sv": "http://www.annantalo.fi/sv/evenemang/event/D24B7727E374BCEABD311BED09D33B99/Knattebion_samhalle_och_stad_", "en": "http://www.annantalo.fi/en/events/event/D24B7727E374BCEABD311BED09D33B99/Naperokino_toddles_cinema_society_and_the_city" }, "description": { "fi": "<p>Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>0–3-vuotiaiden Naperokino palaa ohjelmistoon syksyllä 2023! Rento, mukava esityspaikka ja -tilanne mahdollistavat vaipanvaihdon, syöttämisen/imettämisen tai vaikkapa pienet päiväunet lyhäreiden lomassa.</p><p>Tarkoituksena on näyttää lapselle laadukkaita elokuvia ja totutella häntä vähitellen ottamaan vastaan ja katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas painottuu pienimmillekin sopiviin sanattomiin animaatioihin, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja.</p><p>Naperokino on suunnattu kotiäideille ja –isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ke 11.10., 22.11. ja 13.12. pääset myös paikan päällä tapaamaan ja halaamaan Naperokinossa vierailevaa Myyrää, jonka seikkailuita voit seurata tänä syksynä Annantalon somessa!</p><p>Näytöksillä on joka viikko vaihtuva teema.</p><p>Kieli: suomi<br>Ikäsuositus: 0-3-vuotiaille vanhempiensa kanssa<br>Tila: 1. kerroksen oleskelutila</p>", "sv": "<p>Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!</p><p>De minsta barnens egen biograf Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se även för en liten stund i taget. En avslappnad, bekväm plats för filmvisningen gör det möjligt att byta blöjor, mata/amma barnet eller t.ex. ta en liten tupplur under de korta filmerna.</p><p>Syftet är att visa barnet filmer av hög kvalitet och gradvis vänja hen vid att ta emot och titta på långa barnfilmer på biografer. Under den första halvan av visningen som varar två timmar ligger fokusen på animerade filmer utan tal och på den andra halvan visas det favoriter med tal.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Ons 11.10, 22.11. och 13.12 på plats kan du också möta och krama Mullvaden som besöker Knattebion. Mullvadens äventyr kan du följa under hösten också i Annegårdens sociala medier!</p><p>Föreställningarna har ett varierande tema varje vecka. Den här veckan är temat samhälle och stad!</p><p>Mer information från kultural producent, tel. +358 40 188 3416</p>", "en": "<p>Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!</p><p>The cinema for toddlers, Naperokino, shows Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while. The relaxed, comfortable venue and setting allow nappy changes, feeding/breastfeeding, or even little naps between short films.</p><p>The goal is to show children high-quality films and gradually get them used to engaging with and watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on wordless animations suitable for even the smallest children, and the second hour will feature favourites with spoken dialogue.</p><p>Naperokino is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>On Wed Oct 11, Nov 22 and Dec 13 you also get to meet and hug Naperokino’s guest Mole, whose adventures you can also follow this autumn on Annantalo’s social media!</p><p>The screenings have a different theme each week. This week, it’s society and the city!</p><p>For more information please contact cultural produces +358 40 188 3416</p>" }, "provider_contact_info": null, "short_description": { "fi": "Pienimpien lasten oma elokuvateatteri Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion för barn mellan 0–3 år kommer tillbaka på repertoaren hösten 2023!", "en": "Naperokino for children aged 0–3 will return to the programme in the autumn of 2023!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60940/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60732", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:30/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:734/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p11617/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16327/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7266/?format=api" } ], "registration": null, "super_event": 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:u4804001050", "sub_events": [], "images": [ { "id": 4514, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:26:04.541776Z", "last_modified_time": "2023-09-07T14:26:04.541805Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735160.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4514/?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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2023-09-07T14:26:03.655273Z", "last_modified_time": "2023-11-14T06:13:35.464890Z", "date_published": null, "start_time": "2023-11-08", "end_time": "2024-01-20", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Annantalo valkokankaalla: Elävät kuvat 2", "sv": "På vita duken i Annegården: Levande bilder 2", "en": "Annantalo on the Big Screen: Moving Pictures 2" }, "provider": null, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9A7B4C8EC75BC0C22788E5C3B04CFDD2/Annantalo_valkokankaalla_Elavat_kuvat_2", "sv": "http://www.annantalo.fi/sv/evenemang/event/9A7B4C8EC75BC0C22788E5C3B04CFDD2/Pa_vita_duken_i_Annegarden_Levande_bilder_2", "en": "http://www.annantalo.fi/en/events/event/9A7B4C8EC75BC0C22788E5C3B04CFDD2/Annantalo_on_the_Big_Screen_Moving_Pictures_2" }, "description": { "fi": "<p>Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.</p><p>Perinteistä sekä kokeellista, uutta ja vanhaa sopivassa suhteessa. Esillä oleva kokoelma koostuu Annantalon oppilaiden tekemistä videoista vuosilta 2020–2023.</p><p>Yhden näytöskierroksen kokonaiskesto on noin 30 minuuttia. Videot pyörivät nonstoppina galleriatilassa.</p><p>Ota mukava asento sohvalta ja nauti!</p><p>Paikka: pohjoinen lasigalleria<br>Kielet: Suomi / sanaton<br>Kaikenikäisille</p><p>Elävät kuvat 2 Annantalossa 19.9.2023–12.10.2023 ja 8.11.2023–20.1.2024.</p>", "sv": "<p>Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.</p><p>En lagom blandning av traditionellt och experimentellt, nytt och gammalt. Den utställda samlingen består av videor skapade av Annegårdens elever från åren 2020–2023.</p><p>Den totala längden på en utställningsrunda är cirka 30 minuter. Videorna rullar nonstop i gallerilokalen.</p><p>Inta en bekväm ställning på soffan och njut!</p><p>Språk: finska / ordlös<br>För alla åldrar</p>", "en": "<p>The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films.</p><p>It is an ecletic mix of traditional and experimental, new and old. The collection on display consists of videos made by the students of Annantalo between 2020 and 2023.</p><p>The total duration is approximately 30 minutes. The videos run non-stop in the gallery.</p><p>Take a seat on the couch, lie back and enjoy!</p><p>Language: Finnish / non-verbal<br>For all ages</p>" }, "provider_contact_info": null, "short_description": { "fi": "Annantalon toisen kerroksen pohjoinen galleria muuttuu elokuvasaliksi, jossa nähdään animaatioita, videoita ja lyhytelokuvaa.", "sv": "Det norra galleriet på andra våningen i Annegården förvandlas till biosalong, där vi får se animationer, videor och en kortfilmer.", "en": "The northern gallery on the second floor of Annantalo is transformed into a cinema presenting animations, videos and short films." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60732/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60888", "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:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "17,50 € / 33,50 €", "en": "17,50 € / 33,50 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/", "en": "https://www.lippu.fi/artist/liikkeellae-marraskuussa/liikkeellae-marraskuussa-2023-3487799/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5211, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:39.988851Z", "last_modified_time": "2023-10-09T13:31:39.988869Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735805.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5211/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:39.837905Z", "last_modified_time": "2023-11-14T06:13:35.390972Z", "date_published": null, "start_time": "2023-11-07T17:00:00Z", "end_time": "2023-11-07T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Liikkeellä marraskuussa – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP", "en": "Moving in November – Lucy Wilke & Paweł Duduś: SCORES THAT SHAPED OUR FRIENDSHIP" }, "provider": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/79E33720FBE92ECF9D239C20665F19A2/Liikkeella_marraskuussa_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP", "en": "http://www.stoa.fi/en/events/event/79E33720FBE92ECF9D239C20665F19A2/Moving_in_November_Lucy_Wilke_Pawe_Dudu_SCORES_THAT_SHAPED_OUR_FRIENDSHIP" }, "description": { "fi": "<p>Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.</p><p>Vuorovaikutuksessa Kim_Twiddlen live-musiikin kanssa esiintyjät maalaavat intiimin muotokuvan suhteestaan seitsemässä luvussa. Tämä persoonallisuuksien cocktail uhmaa stereotypioita ja normatiivisia käsityksiä tarjoamalla yleisölle välähdyksen utopiasta – näkemyksen ihmisten välisestä vuorovaikutuksesta, joka perustuu aidolle kohtaamiselle asettaen etusijalle hellyyden ja rehellisyyden.</p><p>Teos on osa Liikkeellä marraskuussa -festivaalia 2.–12.11.2023. Osana festivaalia vierailevat taiteilijat käyvät keskustelua paikallisen taiteilijan kanssa avoimessa Soup Talks –tilaisuudessa 8.11. klo 12 Goethe instituutissa.</p><p>Lue lisää: https://liikkeellamarraskuussa.fi/scores-that-shaped-our-friendship-2/</p><p>Kesto: 1 tunti<br>Yksittäisliput 17,50 € / 33,50 €, lippu.fi.<br>Festivaalipassit 45 € festivaalin omasta lippukaupasta: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Liikkeellä marraskuussa on pääkaupunkiseudulla vuosittain järjestettävä nykytanssifestivaali.</p><p>Festivaali kutsuu kokoontumaan yhteen ja kokemaan taiteellisia teoksia sekä paikalliselta taidekentältä että ulkomailta. Festivaali esittelee taiteilijoiden kriittistä ajattelua, visioita, kokemuksia, unelmia, avaten pieniä ikkunoita maailmaan, jossa elämme.</p><p>Stoa on yksi Liikkeellä marraskuussa -festivaalin esityspaikoista. Vuoden 2023 festivaali järjestetään 2.–12. marraskuuta.</p>", "en": "<p>With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality.</p><p>Interacting with live music by Kim_Twiddle, the performers paint an intimate portrait in seven chapters. This cocktail of personalities defies stereotypes and normative perceptions and offers the audience a glimpse of utopia – a vision of human interactions that prioritize tenderness, honesty, and a dedication to authentically relate to one another.</p><p>The performance is part of Moving in November festival 2.-12.11.2023. As part of the festival, there will be an open discussion with the invited artists and local host called Soup Talk on the 8th of November at noon in Goethe-Institut.</p><p>Read more: https://movinginnovember.fi/scores-that-shaped-our-friendship/</p><p>Duration: 1 hour<br>Single tickets: 17,50 € / 33,50 €, lippu.fi.<br>Festival pass 45 € from the festival's own shop: https://holvi.com/shop/liikkeellamarraskuussa/</p><p>Moving in November is a contemporary dance festival organised yearly in the Helsinki area.</p><p>The festival is an invitation to come together. To experience artistic works from the local scene and abroad. Artists voicing their critical thinking, their visions, their experiences, their dreams, opening small windows to the world we are living in.<br> <br>Stoa is one of the festival venues. In year 2023 Moving in November Festival will take place in 2.–12.11. The festival program will be published in September.</p>" }, "provider_contact_info": null, "short_description": { "fi": "Teoksessa SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke ja Paweł Duduś tutkivat suhteensa laajuutta: ystävyyttä, joka uhmaa perinteisiä määritelmiä ja vahvistuu runollisuudesta ja yhteisestä halusta kurottaa aistillisuutta kohti.", "en": "With SCORES THAT SHAPED OUR FRIENDSHIP Lucy Wilke and Paweł Duduś explore the scope of their relationship: a friendship that defies traditional definitions and is shaped by poetic tendencies and a shared urge for sensuality." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60888/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61053", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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:u4804001050", "sub_events": [], "images": [ { "id": 5210, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:31:39.632891Z", "last_modified_time": "2023-10-09T13:31:39.632911Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_729626.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5210/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:31:39.496711Z", "last_modified_time": "2023-11-14T06:13:35.311599Z", "date_published": null, "start_time": "2023-11-07T12:00:00Z", "end_time": "2023-11-07T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "name": { "fi": "Charlotta Kerbs & Sanjay Khan – Svenska Veckans Seniornätverksträff", "sv": "Charlotta Kerbs & Sanjay Khan – Svenska Veckans Seniornätverksträff", "en": "Charlotta Kerbs & Sanjay Khan – Svenska Veckans Seniornätverksträff" }, "provider": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A05C19BE1630E83457E030911E1E7366/Charlotta_Kerbs_Sanjay_Khan", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A05C19BE1630E83457E030911E1E7366/Charlotta_Kerbs_Sanjay_Khan", "en": "http://www.vuotalo.fi/en/events/event/A05C19BE1630E83457E030911E1E7366/Charlotta_Kerbs_Sanjay_Khan" }, "description": { "fi": "<p>Charlotta Curbs (Lepplax, Suomi) ja Sanjay Khan (Rajasthan, Intia) tapasivat Ruotsissa festivaaleilla kesällä 2022.</p><p>Molemmat esiintyivät festivaaleilla ja pian syntyi yhteistyö. Toistensa musiikin ja kulttuurin inspiroimana he luovat ainutlaatuisen musiikillisen tapaamisen, jossa yhdistyvät perinteinen suomalainen ja pohjoismainen musiikkiperinne sekä perinteinen ja klassinen intialainen musiikki.</p><p>Heidän yhdessä luomansa musiikki on meditatiivista, mystistä, mutta myös leikkisää ja energistä ja kutsuu vuorovaikutukseen ja tanssiin. Ne tuovat viestin rakkaudesta ja ilosta musiikin kautta, levein hymyin ja avoimin sydämin.</p><p>Sanjay Khan on laulaja, tabla-, harmoni- ja kartal-virtuoosi sekä seitsemän sukupolven ajan säilyneen musiikillisen tietämyksen perillinen. Hän kiertää ja edustaa sufi-musiikkia sekä perinteistä ja klassista musiikkia Pohjois-Intiasta kaikkialla maailmassa. Sanjay on esiintynyt yli 80 maassa ja soittanut Queen Elizabethille ja Mick Jaggerille tuoden intialaista perinnettä sydämiin kaikkialla maailmassa.</p><p>Charlotta Kerbs – laulu, akustinen kitara<br>Sanjay Khan – laulu, tablarummut, harmoni, kartal, tanpura</p><p>Konsertin kesto n. 60 min. Infotori ja kahvitarjoilu. <br>Vapaa pääsy, ei ennakkoilmoittautumista.<br>Järjestäjä: Seniornätverket i Helsingfors yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Sanjay Khan och Charlotta Kerbs träffades på en festival sommaren 2022 och ett samarbete föddes kort därefter.</p><p>I sommar bjuder duon på en konsert i samband med folkmusikfestivalen Etno-Espa i Helsigfors. <br>Sångaren Charlotta Kerbs från Österbotten är en mångsidig, stark och själfull sångare, som arbetar aktivt i många olika band över genregränserna med stark inspiration från jazz, soul och nordisk folkmusik. Sanjay Khan är en sångare och multiinstrumentalist från Rajasthan, Indien. Han turnerar med traditionell och klassisk musik från norra Indien över hela världen. Duons framträdande är en fusion mellan traditionell nordisk folkmusik och klassisk musik från Indien.</p><p>Charlotta Kerbs – sång, akustisk gitarr<br>Sanjay Khan – sång, tablatrummor, harmonium, kartal, tanpura</p><p>Konsertens längd ca 60 min. <br>Dessutom infotorg och kaffeservering mm. <br>Fritt deltagande, ingen förhandsanmälan.<br>Arr. Seniornätverket i Helsingfors i samarbete med Nordhuset</p>", "en": "<p>Charlotta Kerbs (Lepplax, Finland) and Sanjay Khan (Rajasthan, India) met at a festival summer 2022 in Sweden where they were both performing, and a collaboration was soon born.</p><p>Inspired by each others music and culture they create an unique musical meeting, blending traditional Finnish and Nordic music tradition together with traditional and classical music from India. The music they create together is meditative, mystic but also playful and energetic and invites to interaction and dance. They bring the message of love and joy through music, with big smiles and open hearts!</p><p>Sanjay Khan is a singer, tabla, harmonium and kartal virtuoso and a heir to a musical knowledge perpetuated for seven generations. He tours and represents sufi music and traditional and classical music from northern India all over the world. Sanjay has performed in over 80 countries and played for Queen Elizabeth and Mick Jagger, bringing Indian tradition to hearts all over the world.</p><p>Charlotta Kerbs – vocals, acustic guitar <br>Sanjay Khan – vocals, tabladrums, harmonium, kartal, tanpura</p><p>Duration approx. 60 minutes. Info and coffee. <br>Free entry, no need to pre register. <br>Co-operation: Seniornätverket i Helsingingors and Vuotalo</p>" }, "provider_contact_info": null, "short_description": { "fi": "Charlotta Curbs (Lepplax, Suomi) ja Sanjay Khan (Rajasthan, Intia) tapasivat Ruotsissa festivaaleilla kesällä 2022.", "sv": "Sanjay Khan och Charlotta Kerbs träffades på en festival sommaren 2022 och ett samarbete föddes kort därefter.", "en": "Charlotta Kerbs (Lepplax, Finland) and Sanjay Khan (Rajasthan, India) met at a festival summer 2022 in Sweden where they were both performing, and a collaboration was soon born." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61053/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 26224, "next": "