Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default ordering is descending order by -last_modified_time
. You may also order
results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=1164
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1165", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=1163" }, "data": [ { "id": "kulke:61061", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso: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": 5144, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:39.179357Z", "last_modified_time": "2023-10-09T13:29:39.179378Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733538.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5144/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.926239Z", "last_modified_time": "2023-11-14T06:13:16.661997Z", "date_published": null, "start_time": "2023-10-04T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "sv": "http://www.vuotalo.fi/sv/evenemang/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn", "en": "http://www.vuotalo.fi/en/events/event/6B5107C03FC1EA6B4B930CE6F0829061/Onsdagsbio_Dogborn" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.</p><p>Kodittomina ja yhteiskunnalle näkymättöminä elävistä kaksosista sisar on tikittävä pommi. Veli ei ole sanonut sanaakaan sen jälkeen, kun he pakenivat kotimaastaan. Odottamaton työtarjous näyttää tuovan heidät askeleen lähemmäksi unelmaa oikeasta kodista. Heidän tarvitsee vain kuljettaa tavaroita paikasta A paikkaan B. Mutta kun tavarat saapuvat kahden nuoren tytön muodossa, sisarusten välille syntyy konflikti. Kahden intensiivisen päivän aikana he kohtaavat elämää muuttavan dilemman – kuinka pitkälle he ovat valmiita menemään selviytymistaistelussaan?</p><p>Ruotsi 2022\t<br>Ohjaaja:\t Isabella Carbonell<br>Käsikirjoitus:\tIsabella Carbonell<br>Näyttelijät:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Genre:\t Draama, Rikostarina, 2020-luku<br>Kesto: 84 min. <br>Kielet: Ruotsi, litvia, arabia, mandariini-kiinaa, englanti, tekstitys: Suomi <br>ikäraja: K16</p><p>Järj. Finlandssvenkst filmcentrum yhteistyössä Vuotalon kanssa.</p>", "sv": "<p>Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig</p><p>Ett hemlöst tvillingpar rör sig under radarn, bortom samhällets regler och system för hjälpande händer. Tillsammans kämpar de för sin överlevnad och tvingas söka sig till kriminella kretsar där de får i uppdrag att sköta okategoriserade leveranser genom ett vinterkyligt Stockholm. När leveransernas innehåll avslöjas sätts tvillingarnas mänsklighet på prov.</p><p>Sverige 2022\t<br>Regissör:\t Isabella Carbonell<br>Manus:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-talet<br>Skådespelare:\tSilvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Längd: 84 min. <br>Språk: Svenska, litauiska, arabiska, mandarin-kinesiska, <br> engelska, <br>Textning: Fnska. <br>Åldersgräns: F16<br>. <br>Arr. Finlandssvenskt filmcentrum i samarbete med Nordhuset.</p>", "en": "<p>The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice.</p><p>Homeless and invisible – the Twins are constantly struggling to survive. Sister is a ticking time bomb; her screams are loud. Brother, on the other hand, doesn’t speak, but rather screams inwards. Their dream of a real home leads to an unexpected job opportunity that sounds simple enough: transport goods from point A to point B. But when the goods appear in the form of two young girls, the unspeakable happens: a rift suddenly occurs between Brother and Sister. Over the course of two intense days the twins are forced to make a life-altering decision: how far are they willing to go in their quest for a better future?</p><p>Sweden 2022\t<br>Director:\t Isabella Carbonell<br>Script:\t Isabella Carbonell<br>Genre:\t Drama, Thriller, 2020-ies<br>Actors:\t Silvana Imam, Philip Oros, Emma Lu, Mia Liu, <br> Henrik Norlén, Lukas Malinauskas<br>Duration: 84 min. <br>Languages: Swedish, lithuanian, arabic, mandarin-chinese, <br> english<br>Subtitles: Finnish<br>Age limit : 16</p><p>Org. Finlandssvenskt filmcentrum in cooperation with Vuotalo.<br>.</p>" }, "name": { "fi": "Onsdagsbio: Dogborn", "sv": "Onsdagsbio: Dogborn", "en": "Onsdagsbio: Dogborn" }, "short_description": { "fi": "Rap-tähti Silvana Imam tekee pääosassa elokuvadebyyttinsä. Isabella Carbonell palkittiin parhaana alle 40-vuotiaana ohjaajana Venetsian elokuvajuhlilla.", "sv": "Huvudrollen var rap-stjärnan Silvana Imams filmdebut. Isabella Carbonell belönades som bästa regissör under 40 år vid filmfestivalen i Venedig", "en": "The headpart is the rapstar Silvana Imams first appearance on film. Isabella Carbonell was rewarded as the best director under 40 years at the Film Festival in Venice." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61061/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61047", "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/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": false, "offer_price_groups": [], "price": { "fi": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios/", "sv": "https://www.lippu.fi/artist/kino-helios/", "en": "https://www.lippu.fi/artist/kino-helios/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5145, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:41.086199Z", "last_modified_time": "2023-10-09T13:29:41.086218Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737377.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5145/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:40.401936Z", "last_modified_time": "2023-11-14T06:13:16.577770Z", "date_published": null, "start_time": "2023-10-04T15: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_", "en": "http://www.malmitalo.fi/en/events/event/D703D9A3CEAB6805C4DF744FDC982E45/Rakas_aitini_12_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa.</p><p>Borghettin perhe on juuri muuttanut uuteen upeilla näkymillä varustettuun kerrostaloasuntoon, joita kiireessä rakennetaan kaupungin vaurastuvalle keskiluokalle. Vaikka perheessä näyttää ulospäin olevan kaikki kunnossa, niin asiat eivät ole niin kuin ennen.<br> <br>Clara (<b>Penélope Cruz</b>) ja Felice (<b>Vincenzo Amato</b>) ovat menettäneet rakkautensa. Kotiäiti Clara on<br>autoritääriselle miehelleen ensimmäiseksi vaimo ja vasta toiseksi lapsilleen äiti. Claralla ei juurikaan ole sosiaalista elämää ydinperheen ulkopuolella ja siksi hän alkaa elää elämäänsä lastensa kautta.</p><p>Kotona oleva stressaantunut tunnelma sekä kotiväkivallan peittely suvun silmissä vie hänet entistä kauemmaksi aviomiehestään. Perheen tytär Adri (<b>Luana Giuliani</b>) kamppailee oman identiteettinsä kanssa ja isänsä harmiksi ystävystyy alempaan yhteiskuntaluokkaan kuuluvan tytön kanssa. Sisäiset ristiriidat repivät perhettä erilleen kohti murtumispistettä, jota suvun taustalla aiheuttama paine ei yhtään helpota.</p><p><i>Terraferma</i> ja <i>Kultainen portti</i> -elokuvien ohjauksistaan tunnettu <b>Emanuele Crialese</b> on Rakas äitini<br>elokuvassa tarttunut osittain omaelämänkerralliseen aiheeseen. Sen autenttinen 1970-lukulainen värimaailma on värikylläinen ja näyttävä. Elokuva toimii monessa tasossa ja sen perheidylliä rikkovat ongelmat ovat hyvin samaistuttavia myös nykyaikana.<br> <br>Ensi-ilta 22.9.2023<br>Kesto 99 min<br>Ikäraja 12</p>" }, "name": { "fi": "Rakas äitini (12) – Kino Helios", "sv": "Rakas äitini (12) – Kino Helios", "en": "Rakas äitini (12) – Kino Helios" }, "short_description": { "fi": "1970-luvun Rooma oli suurten sosiaalisten ja kulttuuristen muutosten aikaa." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61047/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60676", "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": 4348, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:36.497907Z", "last_modified_time": "2023-09-07T14:23:36.497939Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_735264.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4348/?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:23:36.349214Z", "last_modified_time": "2023-11-14T06:13:16.492768Z", "date_published": null, "start_time": "2023-10-04T14:00:00Z", "end_time": "2023-10-04T16: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_", "en": "http://www.vuotalo.fi/en/events/event/A3111113D200CD6948A8EC8F079E4A77/Sanapaja_Wordshop_" }, "provider_contact_info": null, "provider": null, "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>" }, "name": { "fi": "Sanapaja / Wordshop", "sv": "Sanapaja / Wordshop", "en": "Sanapaja / Wordshop" }, "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:60676/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60535", "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:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4347, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:35.333562Z", "last_modified_time": "2023-09-07T14:23:35.333584Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730662.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4347/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:34.660288Z", "last_modified_time": "2023-11-14T06:13:16.414441Z", "date_published": null, "start_time": "2023-10-04T13:00:00Z", "end_time": "2023-10-04T15: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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/71CB8ED3A51AC9A7B369047D62317BBF/Keskiviikon_taidepaja_Tulkoon_valo_", "sv": "http://www.vuotalo.fi/sv/evenemang/event/71CB8ED3A51AC9A7B369047D62317BBF/Onsdagens_konstverkstad_Tulkoon_valo_", "en": "http://www.vuotalo.fi/en/events/event/71CB8ED3A51AC9A7B369047D62317BBF/Wednesday_art_workshop_Let_there_be_light_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Alussa on pikimusta alusta.</p><p>Raaputtamalla raapekartonkia tuomme valoa pikkuhiljaa piirustukseen.</p><p>Työpajan ikäsuositus: sopii sekä lapsille että aikuisille<br>Työpajaa ohjaa: Chloé Mahy-Hulkko<br>Tapahtuman kieli: suomi, ranska, englanti<br>Vapaa pääsy</p>", "sv": "<p>I början finns ett becksvart underlag.</p><p>En linje i taget skrapar vi fram ljuset i teckningen som görs på skrappapper.</p><p>För barn och vuxna. <br>Verkstadsinstruktör: Chloé Mahy-Hulkko<br>Språk: finska, franska, engelska</p><p>Fritt inträde</p>", "en": "<p>At the beginning, there is a pitch-black surface.</p><p>By scraping scraper board, we gradually bring light into the drawing.</p><p>For children and adults<br>Workshop instructor: Chloé Mahy-Hulkko<br>Languages: Finnish, French, English</p><p>Free entry</p>" }, "name": { "fi": "Keskiviikon taidepaja: Tulkoon valo!", "sv": "Onsdagens konstverkstad: Tulkoon valo!", "en": "Wednesday art workshop: Let there be light!" }, "short_description": { "fi": "Alussa on pikimusta alusta.", "sv": "I början finns ett becksvart underlag.", "en": "At the beginning, there is a pitch-black surface." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60535/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:61045", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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": "8 €", "sv": "8 €", "en": "8 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/kino-helios", "sv": "https://www.lippu.fi/artist/kino-helios", "en": "https://www.lippu.fi/artist/kino-helios" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 5143, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:38.313568Z", "last_modified_time": "2023-10-09T13:29:38.313594Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737373.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5143/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:38.175668Z", "last_modified_time": "2023-11-14T06:13:16.330254Z", "date_published": null, "start_time": "2023-10-04T12: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, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_", "en": "http://www.malmitalo.fi/en/events/event/D0CA566A3BAD089DA8A709153DDE1F5C/Peluri_kuolema_on_elavien_ongelma_16_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.</p><p>Risto on pelannut kotinsa ja perheensä ja Arto on saanut niskakipuja hoidattaessaan kuulla, ettei hänellä ole käytännössä juurikaan aivoja.</p><p>Voi siis kaikella syyllä todeta, että paremminkin on mennyt. Ystävyksillä ei käytännössä ole jäljellä muuta kuin työnsä. Sen parissa he hoitavat kaikkein likaisimmatkin keikat. Hakevat junan alle murskautuneet ja koteihinsa mädäntyneet niiden viimeiseen lepopaikkaan. Kuten Risto osuvasti toteaa – kuolema on elävien ongelma. Sitä miesten elämässä riittää, mutta tästä huolimatta he pyrkivät uskomaan elämään.</p><p>Vaikka toisella ei ole aivoja, eikä toisella sydäntä, yhdessä tilanne ei ole toivoton. Asiat ottavat kuitenkin yllättävän suunnan ja Risto ja Arto joutuvat pelaamaan uhkapeliä omalla hengellään. Sen jälkeen mikään ei ole ennallaan.</p><p><i>Peluri – Kuolema on elävien ongelma</i> on kuolemanvakava komedia ystävyydestä, heikkouksista ja anteeksiannosta. Se koskettaa, naurattaa ja satuttaa - sekä auttaa ymmärtämään elämää sen eri sävyissä.</p><p>Ikäraja: 16<br>Kesto 98 min<br>Ensi-ilta 22.9.2023<br>Tekstitys suomeksi</p>", "sv": "<p>Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.</p><p>Risto har spelat bort hem och familj och Arto har i samband med en behandling av sin nacksmärta fått veta att han praktiskt taget knappt har någon hjärna.</p><p>Läget har alltså varit bättre. I praktiken har de två polarna inget annat än sitt arbete, där de tar emot också de värsta uppdragen och transporterar personer som krossats under tåg och personer som förmultnat i hemmet till den sista viloplatsen. Som Risto mycket träffande konstaterar – döden är de levandes problem. Och problem finns det gott om i männens liv, men trots det här gör de sitt bästa för att tro på livet.</p><p>Den ena må sakna hjärna och den andra må sakna hjärta, men när de är tillsammans är situationen i alla fall inte helt hopplös. Saker och ting tar ändå en oväntad vändning och Risto och Arto tvingas spela ett högt spel med sina liv som insats. Efter det är ingenting mera som förut.<br>Spelaren – Döden är de levandes problem är en gravallvarlig komedi om vänskap, svagheter och förlåtelse. Den berör, den roar och den gör ont – samt hjälper oss att förstå livet i alla dess olika nyanser.</p><p>Åldersgräns: 16<br>Längd 98 min<br>Premier 22.9.2023</p>", "en": "<p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start.</p><p>Age limit: 16<br>Duration 98 min<br>Premier 22.9.2023</p>" }, "name": { "fi": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "sv": "Peluri – kuolema on elävien ongelma (16) – Kino Helios", "en": "Peluri – kuolema on elävien ongelma (16) – Kino Helios" }, "short_description": { "fi": "Ruumisautobisneksen halvimmat kuskit, Risto Kivi (Pekka Strang) ja Arto Niska (Jari Virman) ovat joutuneet tilanteeseen, jossa kaikki on mennyt pieleen ja uusi alku olisi tarpeen.", "sv": "Allt har gått åt skogen för likbilsbranschens lågprischaufförer Risto Kivi (Pekka Strang) och Arto Niska (Jari Virman) och de måste börja om från början.", "en": "The cheapest drivers in the hearse business, gambling addict Risto Kivi and his friend, the 85% brainless man, Arto Niska, have found themselves in a situation where everything has gone wrong, and they are in need of a fresh start." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:61045/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60048", "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": 4346, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:33.839510Z", "last_modified_time": "2023-09-07T14:23:33.839532Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732380.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4346/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:33.572137Z", "last_modified_time": "2023-11-14T06:13:16.259915Z", "date_published": null, "start_time": "2023-10-04T12: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/BAE8D3DC6EF0F15B33C102DCB37A5E06/HOW-radio_Global_Club_Nights" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Muusikot Cinta Hermo ja Maarikka Autio kertovat musiikkiurastaan ja kokemuksistaan ja samalla myös heidän tulevasta Magas-projektistaan.</p><p>Kesto: 60 min</p>", "sv": "<p>Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.</p><p>Längd: 60 min</p>", "en": "<p>Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.</p><p>Duration: 60 min</p>" }, "name": { "fi": "HOW-radio | Global Club Nights – Helsinki Open Waves", "sv": "HOW-radio | Global Club Nights", "en": "HOW-radio | Global Club Nights" }, "short_description": { "fi": "Muusikot Cinta Hermo ja Maarikka Autio kertovat musiikkiurastaan ja kokemuksistaan ja samalla myös heidän tulevasta Magas-projektistaan.", "sv": "Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas.", "en": "Musikerna Cinta Hermo och Maarikka Autio berättar om sin musikaliska karriär och sina musikaliska erfarenheter och samtidigt också om sitt kommande projekt Magas." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60048/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60534", "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": 4344, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:32.940772Z", "last_modified_time": "2023-09-07T14:23:32.940793Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728498.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4344/?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:23:32.778395Z", "last_modified_time": "2023-11-14T06:13:16.186835Z", "date_published": null, "start_time": "2023-10-04T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/017B31A7B2D58E9281C2E515BDFD8981/Ylakoulukino_Revontulten_rappari", "sv": "http://www.vuotalo.fi/sv/evenemang/event/017B31A7B2D58E9281C2E515BDFD8981/Hogstadiekino_Revontulten_rappari", "en": "http://www.vuotalo.fi/en/events/event/017B31A7B2D58E9281C2E515BDFD8981/Lower_Secondary_School_Cinema_Rap_and_Reindeer" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Revontulten räppäri on dokumenttielokuva Saamenmaan pohjoisimmassa kulmassa asuvan 18-vuotiaan saamelaisräppärin Mihkku Laitin elämästä.</p><p>Elokuva on <i>Talent Suomessa</i> hurmanneen <b>Mihkkun</b> kasvutarina kohti muusikon uraa ja orastavaa tähteyttä monenlaisten odotusten keskellä.</p><p>Mihkku kantaa ylpeästi itse tuunaamaansa saamenpukua, räppää ja joikaa sulassa sovussa, suunnittelee brändiään tietokoneella, mutta taitaa myös poronhoidon vaativan työn. Ja ennen kaikkea näkee omat erityiset juurensa ja saamen kielen suurena vahvuutenaan. Tulevaisuus askarruttaa: seuraako Mihkku isänsä jalanjälkiä vai omia unelmiaan?</p><p>Ohjaaja Petteri Saario: <br><i>”Olen tuntenut Mihkkun viisivuotiaasta lähtien, eli lähes koko hänen elämänsä. On ollut upeaa seurata, miten esiintymisestä tykänneestä vilkkaasta pojasta on varttunut poikkeuksellisen karismaattinen ja syvällinen nuorimies. Mihkkun tarinassa kiteytyy vahvasti saamelaisuuden huominen: kulttuuri säilyy, jos se kykenee uudistumaan ja vastaamaan sen keskellä kasvavien ihmisten tarpeisiin.</p><p>Sama pätee kulttuuria kannattelevaan kielelliseen ilmaisuun. Revontulten räppäri tarjoaa raikkaan näkökulman monimuotoiseen saamelaisuuteen, saamelaisnuoren itsensä kokemana ja kertomana.”</i></p><p>Ikäraja: S<br>Ikäsuositus: yläkoulu, toinen aste<br>Pituus: 75 min<br>Ohjaus: Petteri Saario</p><p>Koululaisryhmille pakolliset ennakkoilmoittautumiset osoitteessa <u><a href=\"https://kultus.fi/ \">kultus.fi</a></u></p><p>Koulukinon kautta oppimateriaalit: <u><a href=\"https://www.koulukino.fi/oppimateriaalit/revontulten-rappari/\">Revontulten räppäri – Koulukino</a></u></p>", "sv": "<p>Revontulten räppäri är en dokumentärfilm om 18-åriga Mihkku Laiti, en samisk rapartist som bor det nordligaste hörnet av Sápmi.</p><p>Åldersgräns: T<br>Åldersrekommendation: högstadiet, andra stadiet<br>Längd: 75 min<br>Regi: Petteri Saario</p>", "en": "<p>The documentary ‘Rap and Reindeer’ follows the life of the 18-year-old Sámi rapper Mihkku Laiti, who lives in the northernmost corner of Sámiland.</p><p>Age limit: for all ages<br>Age recommedation: Lower Secondary School, upper secondary education<br>Duration: 75 min<br>Director: Petteri Saario</p>" }, "name": { "fi": "Yläkoulukino: Revontulten räppäri", "sv": "Högstadiekino: Revontulten räppäri", "en": "Lower Secondary School Cinema: Rap and Reindeer" }, "short_description": { "fi": "Revontulten räppäri on dokumenttielokuva Saamenmaan pohjoisimmassa kulmassa asuvan 18-vuotiaan saamelaisräppärin Mihkku Laitin elämästä.", "sv": "Revontulten räppäri är en dokumentärfilm om 18-åriga Mihkku Laiti, en samisk rapartist som bor det nordligaste hörnet av Sápmi.", "en": "The documentary ‘Rap and Reindeer’ follows the life of the 18-year-old Sámi rapper Mihkku Laiti, who lives in the northernmost corner of Sámiland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60534/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59878", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "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": 4342, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:30.727832Z", "last_modified_time": "2023-09-07T14:23:30.727853Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730800.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4342/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:30.061281Z", "last_modified_time": "2023-11-14T06:13:16.106314Z", "date_published": null, "start_time": "2023-10-04", "end_time": "2023-10-28", "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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/46ED411EC0D070101ECFFC8F9D210D88/Yhta_matkaa_puoli_vuosisataa", "sv": "http://www.caisa.fi/sv/evenemang/event/46ED411EC0D070101ECFFC8F9D210D88/Pa_gemensam_resa_i_ett_halvt_sekel", "en": "http://www.caisa.fi/en/events/event/46ED411EC0D070101ECFFC8F9D210D88/On_a_Common_Journey_for_Half_a_Century" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin.</p><p>Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomenkin hallitus päätti jo syksyllä 1973 ottaa tänne ryhmän pakolaisia, jotka pakenivat Chilen sotilasdiktatuurin sortoa. He olivat maamme ensimmäiset kiintiöpakolaiset, ja heistä alkoi maamme avautuminen ja kansainvälistyminen. Tänne muodostui kiinteä chileläinen yhteisö, joka sopeutui hyvin maahamme.</p><p>Näyttely luo silmäyksen puolen vuosisadan takaisiin tapahtumiin ja siihen, mitä chileläiset ovat antaneet Suomelle. Caisassa on esillä myös poliittisia julisteita, jotka heijastavat Suomeen syntynyttä laajaa solidaarisuusliikettä.</p><p>Viittomakielinen näyttelyopastus la 28.10. klo 13–14, yhteistyö Ursa Minorin kanssa. Oppaana Aino Laiho. <br> <br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Kulttuurikeskus Caisassa on lokakuussa Chilen vallankaappaukseen liittyviä näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Utställningen kastar en tillbakablick på händelserna för ett halvt sekel sedan och på vad chilenarna har gett Finland.</p><p>I Caisa visas också politiska affischer som återspeglar den omfattande solidaritetsrörelsen som uppstod i Finland.</p><p>Guidning på utställningen på finskt teckenspråk lördagen den 28 oktober kl. 13–14, ett samarbete med Ursa Minor. Guide Aino Laiho.</p><p>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The exhibition offers a glimpse into the events of half a century ago and what Chileans have given to Finland.</p><p>Caisa will also display political posters reflecting the broad solidarity movement that emerged in Finland.</p><p>A guided tour of the exhibition will be held in Finnish sign language on Sat, 28 Oct between 13 and 14, in collaboration with Ursa Minor. Guided by Aino Laiho.</p><p>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme. </i></p>" }, "name": { "fi": "Yhtä matkaa puoli vuosisataa – Chile50-teemaisia tapahtumia Caisassa", "sv": "På gemensam resa i ett halvt sekel – Evenemang med Chile50-tema i Caisa", "en": "On a Common Journey for Half a Century – Chile50 themed events at Caisa" }, "short_description": { "fi": "Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin.", "sv": "Utställningen kastar en tillbakablick på händelserna för ett halvt sekel sedan och på vad chilenarna har gett Finland.", "en": "The exhibition offers a glimpse into the events of half a century ago and what Chileans have given to Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59878/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60108", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:47/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:733/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "price": null, "info_url": null, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4341, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:29.610355Z", "last_modified_time": "2023-09-07T14:23:29.610386Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_733019.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4341/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:29.461120Z", "last_modified_time": "2023-11-14T06:13:16.028810Z", "date_published": null, "start_time": "2023-10-03T14:30:00Z", "end_time": "2023-10-03T16: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3FF496042DA397BFA215D15EFC4516DA/Keskustelu_Yhteiskunnallisten_vaikuttajien_muistoja_1970-luvulta", "sv": "http://www.caisa.fi/sv/evenemang/event/3FF496042DA397BFA215D15EFC4516DA/Samtal_Samhallspaverkares_minnen_fran_1970-talet", "en": "http://www.caisa.fi/en/events/event/3FF496042DA397BFA215D15EFC4516DA/Discussion_Memories_of_Social_Opinion_Leaders_from_the_1970s" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Chilen vallankaappaus ja sitä seurannut diktatuuri oli suomalaisillekin suorastaan sukupolvikokemus. Suomeen syntyi vahva solidaarisuusliike.</p><p>Muistojaan ja tuntojaan tulevat kertomaan poliitikot ja yhteiskunnalliset toimijat, jotka tuolloin olivat vielä nuoria, mutta joista tuli merkittäviä vaikuttajia suomalaisessa yhteiskunnassa.</p><p>Keskustelussa mukana presidentti <b>Tarja Halonen</b>, <b>Erkki Tuomioja</b>, <b>Arja Alho</b> ja <b>Kari Uotila</b>. Juontaja: <b>Adrián Soto</b>.</p><p>Kesto: 1,5 h<br>Ikäsuositus: sopii kaikille<br>Kieli: suomi<br>Vapaa pääsy<br>Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</p><p><i>Väkivaltainen vallankaappaus Chilessä 11.9.1973 romutti maan demokratian ja aloitti 17 vuotta kestäneen sotilasdiktatuurin. Tuhansia toisinajattelijoita tapettiin, kymmeniä tuhansia kidutettiin ja sadat tuhannet lähtivät maanpakoon. Suomeenkin muodostui kiinteä chileläinen yhteisö.</p><p>Nyt, puoli vuosisataa käänteentekevien tapahtumien jälkeen, chileläisyhteisö tarjoilee laajan kulttuuritapahtumien sarjan, joka tuo esille muistoja ja tunteita tuolta ajalta. Samalla analysoidaan, miten Chilen tapahtumat vaikuttivat suomalaiseen yhteiskuntaan.</p><p>Kulttuurikeskus Caisassa on lokakuussa aiheesta näyttelyitä, keskusteluita, seminaareja, elokuvia ja lasten työpajoja. Sisältövaroitus: Chile50-teemaisten tapahtumien sisällöt voivat järkyttää herkkiä katsojia.</i></p>", "sv": "<p>Militärkuppen i Chile och den efterföljande diktaturen var även för finländarna en upplevelse som formligen påverkade en hel generation. I Finland uppstod en stark solidaritetsrörelse.</p><p>Politiker och samhälleliga aktörer, som vid denna tid ännu var unga, men som senare blev betydande påverkare i det finländska samhället, kommer till Caisa för att berätta om sina minnen och känslor. I samtalet deltar: President <b>Tarja Halonen</b>, <b>Erkki Tuomioja</b>, <b>Arja Alho</b> och <b>Kari Uotila</b>. Programledare: <b>Adrián Soto</b>.</p><p>Längd: 1,5 t<br>Åldersrekommendation: för alla åldrar<br>Språk: finska<br>Fritt inträde</p><p>Innehållsvarning: Innehållen i evenemangen med Chile50-tema kan vara omskakande för känsliga tittare.</p><p><i>Den våldsamma militärkuppen i Chile 11.9.1973 skrotade landets demokrati och inledde en militärdiktatur som fortsatte i 17 år.</p><p>Tusentals oliktänkande dödades, tiotusentals människor torterades och hundratusentals andra flydde landet. Även i Finland bildades en fast chilensk gemenskap.</p><p>Nu, ett halvt sekel efter de omvälvande händelserna, bjuder medlemmarna i denna gemenskap på en omfattande serie av kulturevenemang som lyfter fram minnen och känslor från denna tid. Samtidigt analyseras hur händelserna i Chile påverkade det finländska samhället.</p><p>I kulturcentret Caisa hålls i oktober utställningar, samtal, seminarier och verkstäder för barn samt visas filmer om ämnet.</i></p>", "en": "<p>The Chilean coup d’état and the dictatorship that followed were a generational experience, even for Finns. A strong solidarity movement was born in Finland.</p><p>Politicians and social actors who were still young at the time but who later became important figures in Finnish society, will share their memories and feelings. Participating in the discussion are: President <b>Tarja Halonen</b>, <b>Erkki Tuomioja</b>, <b>Arja Alho</b> and <b>Kari Uotila</b>. Host: <b>Adrián Soto</b>.</p><p>Duration: 1,5 h<br>Age recommendation: for all ages<br>Language: Finnish<br>Free entry</p><p>Content warning: The contents of the Chile50-themed events may upset sensitive people.</p><p><i>The violent Chilean coup d’état of 11 September 1973 brought down the country’s democracy and began a 17-year military dictatorship.</p><p>Thousands of dissidents were killed, tens of thousands were tortured and hundreds of thousands went into exile. A strong Chilean community was also established in Finland.</p><p>Now, half a century after the revolutionary events, the Chilean community is offering a wide range of cultural events that will bring out memories and emotions of that time. The events in Chile will also be analysed in terms of their impact on Finnish society.</p><p>In October, Cultural Centre Caisa will host exhibitions, discussions, seminars, films and children’s workshops on the theme.</i></p>" }, "name": { "fi": "Keskustelu: Yhteiskunnallisten vaikuttajien muistoja 1970-luvulta – Chile50-teemaisia tapahtumia Caisassa", "sv": "Samtal: Samhällspåverkares minnen från 1970-talet – Evenemang med Chile50-tema i Caisa", "en": "Discussion: Memories of Social Opinion Leaders from the 1970s – Chile50 themed events at Caisa" }, "short_description": { "fi": "Chilen vallankaappaus ja sitä seurannut diktatuuri oli suomalaisillekin suorastaan sukupolvikokemus. Suomeen syntyi vahva solidaarisuusliike.", "sv": "Militärkuppen i Chile och den efterföljande diktaturen var även för finländarna en upplevelse som formligen påverkade en hel generation. I Finland uppstod en stark solidaritetsrörelse.", "en": "The Chilean coup d’état and the dictatorship that followed were a generational experience, even for Finns. A strong solidarity movement was born in Finland." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60108/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60457", "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-2/?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": 4338, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:27.829247Z", "last_modified_time": "2023-09-07T14:23:27.829268Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_725182.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4338/?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:23:26.954116Z", "last_modified_time": "2023-11-14T06:13:15.952849Z", "date_published": null, "start_time": "2023-10-03T10:30:00Z", "end_time": "2023-10-03T12:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/FE644A50FC07C58D56F6E201FB800AEE/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers", "sv": "http://www.caisa.fi/sv/evenemang/event/FE644A50FC07C58D56F6E201FB800AEE/Open_Art_Studio_for_Toddlers-verkstader_", "en": "http://www.caisa.fi/en/events/event/FE644A50FC07C58D56F6E201FB800AEE/Taidetta_taaperoille_Open_Art_Studio_for_Toddlers" }, "provider_contact_info": null, "provider": null, "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>" }, "name": { "fi": "Taidetta taaperoille – Open Art Studio for Toddlers", "sv": "Open Art Studio for Toddlers-verkstäder", "en": "Taidetta taaperoille – Open Art Studio for Toddlers" }, "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:60457/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60098", "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:288/?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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p25966/?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": 4337, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:26.328069Z", "last_modified_time": "2023-09-07T14:23:26.328093Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732902.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4337/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:25.990256Z", "last_modified_time": "2023-11-14T06:13:15.874833Z", "date_published": null, "start_time": "2023-10-03", "end_time": "2023-10-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Haklin_valokuvia_Sortavalasta", "sv": "http://www.stoa.fi/sv/evenemang/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Haklis_fotografier_fran_Sordavala", "en": "http://www.stoa.fi/en/events/event/4E92002DCC737B6EC7C59F3A92CDB34A/Kari_Hakli_s_Photographs_of_Sortavala" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Stoan Parvigalleriassa on esillä valokuvaaja Kari Haklin valokuvia Sortavalasta vuodelta 2019.</p><p>Kuvat kertovat vaikuttavasti, millaiseksi kaupunki on kehittynyt suomalaisajan jälkeen. Haklin kuvat ovat osa Stoan galleriassa samaan aikaan nähtävää Aikamatka Sortavalaan -näyttelyä.<br> <br>Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944. Millainen tuo kaupunki ympäristöineen oli?</p><p>Pääsemme tutustumaan 1900-luvun alkupuolen valokuvien ja postikorttien kautta Sortavalan hienoon arkkitehtuuriin, upeisiin Laatokan maisemiin ja kaupunkilaisten elämään. Esillä on myös yksityishenkilöiden lainaamista evakkoesineistä koottu installaatio sekä arkistoaineistoa. <br> <br>Sortavalan kaupunki sijaitsee Laatokan pohjoisrannalla, ja ennen sotia sitä ympäröi laaja maalaiskunta. Suomalaisajalla Sortavala oli alueensa tärkein kulttuurin, sivistyksen, liike-elämän, teollisuuden ja yhdistystoiminnan keskus, jonka vaikutukset heijastuivat koko Suomen alueelle. Sinne kehittyi omaleimainen identiteetti, jossa idän ja lännen kulttuuripiirteet rikastuttivat toisiaan ja uskontokunnat elivät sovussa rinnakkain. <br> <br>Aikamatka Sortavalaan -näyttely juhlistaa Sortavala-seura ry:n 70-vuotisjuhlavuotta. Lisätiedot: www.sortavala-seura.fi <br> <br>Tuottaja: Tuula Roitto, Sortavala-seura ry:n hallitus <br>Näyttely- ja graafinen suunnittelu: Annika Roitto <br>Valokuvat ja postikortit: Tuula Roiton kokoelmat, Kari Nissisen valokuva- ja postikorttikokoelma, Sortavala-seura <br>Parvigallerian valokuvat: Kari Hakli<br>Kiitokset: Sortavala-säätiö, joka on tukenut näyttelyn toteuttamista taloudellisesti, näyttelyyn aineistoa lainanneet yksityishenkilöt, Stoa, joka tarjosi näyttelytilan.</p>", "sv": "<p>I Stoas balkonggalleri visas fotograf Kari Haklis fotografier från Sordavala från år 2019.</p><p>Bilderna ger en imponerande inblick i stadens utveckling efter den finska tiden. Haklis bilder utgör en del av utställningen Aikamatka Sortavalaan som visas samtidigt i Stoas galleri.</p>", "en": "<p>Stoa’s Balcony Gallery features photographs taken by photographer Kari Hakli in Sortavala in 2019.</p><p>Bilderna ger en imponerande inblick i stadens utveckling efter den finska tiden. Haklis bilder utgör en del av utställningen Aikamatka Sortavalaan som visas samtidigt i Stoas galleri.</p>" }, "name": { "fi": "Kari Haklin valokuvia Sortavalasta", "sv": "Kari Haklis fotografier från Sordavala", "en": "Kari Hakli’s Photographs of Sortavala" }, "short_description": { "fi": "Stoan Parvigalleriassa on esillä valokuvaaja Kari Haklin valokuvia Sortavalasta vuodelta 2019.", "sv": "I Stoas balkonggalleri visas fotograf Kari Haklis fotografier från Sordavala från år 2019.", "en": "Stoa’s Balcony Gallery features photographs taken by photographer Kari Hakli in Sortavala in 2019." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60098/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60095", "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:104/?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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p485/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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": 4336, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:25.736268Z", "last_modified_time": "2023-09-07T14:23:25.736288Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732806.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4336/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:25.589083Z", "last_modified_time": "2023-11-14T06:13:15.798178Z", "date_published": null, "start_time": "2023-10-03", "end_time": "2023-10-15", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/984D4A3DE07B3EF378982C2F0DAE5760/Aikamatka_Sortavalaan", "sv": "http://www.stoa.fi/sv/evenemang/event/984D4A3DE07B3EF378982C2F0DAE5760/Tidresa_till_Sordavala", "en": "http://www.stoa.fi/en/events/event/984D4A3DE07B3EF378982C2F0DAE5760/Time_Travel_to_Sortavala" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944.</p><p>Millainen tuo kaupunki ympäristöineen oli osana Suomea? Pääsemme tutustumaan 1900-luvun alkupuolen valokuvien ja postikorttien kautta Sortavalan hienoon arkkitehtuuriin, upeisiin Laatokan maisemiin ja kaupunkilaisten elämään. Esillä on myös yksityishenkilöiden lainaamista evakkoesineistä koottu installaatio sekä arkistoaineistoa. <br> <br>Sortavalan kaupunki sijaitsee Laatokan pohjoisrannalla, ja ennen sotia sitä ympäröi laaja maalaiskunta. Suomalaisajalla Sortavala oli alueensa tärkein kulttuurin, sivistyksen, liike-elämän, teollisuuden ja yhdistystoiminnan keskus, jonka vaikutukset heijastuivat koko Suomen alueelle. Sinne kehittyi omaleimainen identiteetti, jossa idän ja lännen kulttuuripiirteet rikastuttivat toisiaan ja uskontokunnat elivät sovussa rinnakkain. <br> <br>Stoan Parvigalleriassa on samaan aikaan esillä valokuvaaja <b>Kari Haklin</b> valokuvia Sortavalasta vuodelta 2019. Kuvat kertovat vaikuttavasti, millaiseksi kaupunki on kehittynyt suomalaisajan jälkeen. <br> <br>Näyttelyn järjestää <b>Sortavala-seura ry</b> ja se juhlistaa seuran 70-vuotisjuhlavuotta. https://www.sortavala-seura.fi <br> <br>Tuottaja: Tuula Roitto, Sortavala-seura ry:n hallitus <br>Näyttely- ja graafinen suunnittelu: Annika Roitto <br>Valokuvat ja postikortit: Tuula Roiton kokoelmat, Kari Nissisen valokuva- ja postikorttikokoelma, Sortavala-seura <br>Parvigallerian valokuvat: Kari Hakli<br>Kiitokset: Sortavala-säätiö, joka on tukenut näyttelyn toteuttamista taloudellisesti, näyttelyyn aineistoa lainanneet yksityishenkilöt, Stoa, joka tarjosi näyttelytilan.</p>", "sv": "<p>Utställningen tar besökaren till Sordavala i Karelen, som överläts till Sovjetunionen efter kriget 1944.</p><p>Hurdan var staden och dess omgivningar när den fortfarande var en del av Finland? Vi får bekanta oss med Sordavalas fina arkitektur, de fantastiska landskapen vid Ladoga och stadsbornas liv genom fotografier och postkort från 1900-talets första halva. På utställningen visas också en installation sammanställd av föremål som det evakuerade folket tagit med sig och som privatpersoner lånat ut samt arkivmaterial.</p>", "en": "<p>The exhibition ‘Time Trip to Sortavala’ takes the visitor to Sortavala in Karelia, which was ceded to the Soviet Union as a result of the wars in 1944.</p><p>What were the town and its surroundings like as part of Finland? Through photographs and postcards from the early 20th century, we get to explore Sortavala’s fine architecture, the magnificent landscapes of Ladoga and the lives of its inhabitants. The exhibition also includes an installation of evacuee objects lent by private individuals as well as archival material.</p>" }, "name": { "fi": "Aikamatka Sortavalaan", "sv": "Tidresa till Sordavala", "en": "Time Travel to Sortavala" }, "short_description": { "fi": "Aikamatka Sortavalaan -näyttely vie mukanaan Karjalan Sortavalaan, joka luovutettiin Neuvostoliitolle sotien seurauksena 1944.", "sv": "Utställningen tar besökaren till Sordavala i Karelen, som överläts till Sovjetunionen efter kriget 1944.", "en": "The exhibition ‘Time Trip to Sortavala’ takes the visitor to Sortavala in Karelia, which was ceded to the Soviet Union as a result of the wars in 1944." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60095/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60504", "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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:675/?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": 4335, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:25.364059Z", "last_modified_time": "2023-09-07T14:23:25.364088Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_730310.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4335/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:25.203964Z", "last_modified_time": "2023-11-14T06:13:15.720220Z", "date_published": null, "start_time": "2023-10-02T15: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, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/C52A168B8227FE19C1F0CE5C3CD5B011/Juurilla_Juho_Kihara_Pitkanen", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/C52A168B8227FE19C1F0CE5C3CD5B011/Juurilla_Juho_Kihara_Pitkanen", "en": "http://www.kanneltalo.fi/en/events/event/C52A168B8227FE19C1F0CE5C3CD5B011/At_the_Roots_Juho_Kihara_Pitkanen" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Aloita viikko menevällä meiningillä! Lokakuun klubilla vierailee Juho Pitkänen, joka tunnetaan suvereenina Jimi Hendrix -tulkitsijana ja Remu Aaltosen luottokitaristina.</p><p><b>Juho ”Kihara” Pitkänen</b> on helsinkiläinen kitaristi, laulaja ja lauluntekijä. Hän tekee omaa englanninkielistä musiikkia artistinimellä Kihara. Kiharan sähköisen rosoisessa musiikissa pääpaino on omakohtaisella tarinankerronnalla, jota tyylikäs kitarointi hienosti alleviivaa. Juurilla-klubilla kuullaan artistivieraan omien kappaleiden ohella tarkkaan valittuja kevyen musiikin helmiä.<br> <br>Maanantai-illan suosikkiklubin sykkivää ydintä ovat jazz, blues, country, folk, rhythm and blues, bluegrass ja americana-roots-musiikki. Juurilla-klubia isännöivät tuttuun tapaan <b>Juki Välipakka</b> ja <b>The Rooty Toot Toot Band</b>. <br> <br>The Rooty Toot Toot Band: Juki Välipakka (laulu & kitara), Lasse Sirkko (basso), Tommi Lievemaa (kitara), Olli Haavisto (pedal steel guitar), Sirpa Suomalainen (saksofoni) ja Kepa Kettunen (rummut). <br> <br>Kesto: 1 t <br>Vapaa pääsy <br>Kahvilan stage <br> <br><i><b>Maksuttomat maanantait</b> on sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti, kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</i></p>", "sv": "<p>Börja veckan i ösig stämning!</p><p>Klubben i oktober gästas av Juho Pitkänen, som är känd som en suverän tolkare av Jimi Hendrix och Remu Aaltonens go to-gitarrist.</p><p><i><b>Kostnadsfria måndagar</b> är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</i></p>", "en": "<p>Start your week with some catchy tunes!</p><p>Juho Pitkänen, known as a masterful Jimi Hendrix interpreter and Remu Aaltonen’s trusted guitarist, visits the club in October.</p><p><i><b>Free Mondays</b> is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</i></p>" }, "name": { "fi": "Juurilla: Juho ”Kihara” Pitkänen – Maksuttomat maanantait", "sv": "Juurilla: Juho ”Kihara” Pitkänen – Kostandsfria måndagar", "en": "At the Roots: Juho “Kihara” Pitkänen – Free Mondays" }, "short_description": { "fi": "Aloita viikko menevällä meiningillä! Lokakuun klubilla vierailee Juho Pitkänen, joka tunnetaan suvereenina Jimi Hendrix -tulkitsijana ja Remu Aaltosen luottokitaristina.", "sv": "Börja veckan i ösig stämning!", "en": "Start your week with some catchy tunes!" }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60504/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60494", "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:32/?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" } ], "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": 4334, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:24.965298Z", "last_modified_time": "2023-09-07T14:23:24.965361Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731773.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4334/?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:23:24.460627Z", "last_modified_time": "2023-11-14T06:13:15.625890Z", "date_published": null, "start_time": "2023-10-02T07:15:00Z", "end_time": "2023-10-02T08: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/5AF69461930DDC1C0CEDEC162B918517/Tanssi_ja_leikki_-tyopajat_Leikki-ikaiset", "sv": "http://www.caisa.fi/sv/evenemang/event/5AF69461930DDC1C0CEDEC162B918517/Dans_och_lek_verkstad_Barn_i_lekaldern", "en": "http://www.caisa.fi/en/events/event/5AF69461930DDC1C0CEDEC162B918517/Dance_and_play_workshops_Play-age" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan. Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.<br>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "name": { "fi": "Tanssi ja leikki -työpajat | Leikki-ikäiset – Leikki-ikäisille (3–5 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Barn i lekåldern – För barn i lekåldern (3–5 år) och deras föräldrar", "en": "Dance and play workshops | Play-age – For play-age children (3–5 years) and their parents" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60494/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60482", "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: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: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" } ], "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": 4333, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:23.528646Z", "last_modified_time": "2023-09-07T14:23:23.528674Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731757.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4333/?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:23:22.764488Z", "last_modified_time": "2023-11-14T06:13:15.538972Z", "date_published": null, "start_time": "2023-10-02T06:15:00Z", "end_time": "2023-10-02T07: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, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/3CB0BCFEE25BE5538D5A293577F12AA9/Tanssi_ja_leikki_-tyopaja_Taaperot", "sv": "http://www.caisa.fi/sv/evenemang/event/3CB0BCFEE25BE5538D5A293577F12AA9/Dans_och_lek_verkstad_Smabarn", "en": "http://www.caisa.fi/en/events/event/3CB0BCFEE25BE5538D5A293577F12AA9/Dance_and_play_workshops_Toddlers" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.</p><p>Lapset yhdessä huoltajansa kanssa ovat tervetulleita iloiselle matkalle, jossa he voivat leikkiä, kommunikoida ja ilmaista itseään liikkeen ja tanssin kautta yksilöllisellä tavallaan.</p><p>Kurssi sopii myös osallistujille, joilla on erityistarpeita ja erilaisia liikkumiskykyjä.</p><p>Työpaja perustuu amerikkalaisen tanssitaiteilija <b>Alito Alessin</b> kehittämään Danceability inclusive -tanssimenetelmään. Menetelmä tukee itsensä vahvistamista ja tarjoaa osallistujille mahdollisuuden jakaa iloisen kokemuksen yhdessä tanssimisesta ja liikkumisesta.</p><p>Kurssin ohjaajana on tanssitaiteilija <b>Vera Lapitskaya</b>, hän on myös sertifioitu DanceAbility-opettaja.</p><p><b>Osallistuminen</b><br>Tanssi ja leikki- työpaja innostaa ja opastaa helsinkiläisiä vanhempia ja lapsia tekemään ja kokemaan tanssitaidetta yhdessä. Työpajan opetukseen voi osallistua silloin kun se itselle sopii, kaikilla kerroilla tai vain joillain. Valitse itsellesi sopiva aika ja tule paikalle ajoissa. Ei ennakkoilmoittautumista, paikat täytetään saapumisjärjestyksessä. Mukaan mahtuu 12 ensimmäistä.</p><p>Kieli: suomi (englanti, venäjä ja espanja tarvittaessa)</p>", "sv": "<p>Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.</p><p>Barn tillsammans med sina vårdnadshavare är välkomna till en glad resa där de kan leka, kommunicera och uttrycka sig själva genom rörelse och dans på sitt individuella sätt. Kursen lämpar sig även för deltagare som har specialbehov och olika rörelseförmågor.</p><p>Verkstaden baserar sig på den amerikanska danskonstnären <b>Alito Alessis</b> Danceability inclusive-dansmetod. Metoden stödjer människans förmåga att stärka sig själv och erbjuder deltagarna möjlighet att dela sin glada upplevelse av att dansa och röra sig tillsammans.</p><p>Handledaren på kursen är danskonstnären <b>Vera Lapitskaya</b>, certifierad DanceAbility-lärare.</p><p><b>Deltagande</b><br>Dans och lek-verkstaden uppmuntrar och handleder föräldrar och barn i Helsingfors att skapa och uppleva danskonst tillsammans. Man kan delta i undervisningen i verkstaden när man har tid, antingen alla möten eller endast några. Välj en tid som passar dig och kom på platsen i tid. Ingen förhandsanmälning, platserna fylls i anländningsordning. De 12 första kommer med.</p><p>Språk: finska (engelska, ryska, spanska om nödvändigt)</p>", "en": "<p>The dance and play workshop introduces children to the world of dance through movement, music and play.</p><p>Children along with their guardians are welcome on a joyful journey where they can play, communicate and express themselves through movement and dance in their individual way. The course is also suitable for participants with special needs and different mobility abilities.</p><p>The workshop is based on the Danceability inclusive dance method developed by American dance artist <b>Alito Alessi</b>. The method supports self-empowerment and provides participants with the opportunity to share a joyful experience of dancing and moving together.</p><p>The instructor of the course is dance artist and instructor <b>Vera Lapitskaya</b>, she is also a certified DanceAbility teacher.</p><p><b>Participation</b><br>The dance and play workshop inspires and guides parents and children in Helsinki to do and experience the art of dance together.</p><p>You can participate either one workshop or all of them on consecutive weeks. Arrive on time. No pre-registration, places will be filled in order of arrival. The first 12 can be accommodated.</p><p>Language: Finnish (English, Russian and Spanish if needed)</p>" }, "name": { "fi": "Tanssi ja leikki -työpaja | Taaperot – Taaperoille (1–3 vuotta) ja heidän vanhemmilleen", "sv": "Dans och lek verkstad | Småbarn – För småbarn (1–3 år) och deras föräldrar", "en": "Dance and play workshops / Toddlers – For toddlers (1–3 years) and their parents" }, "short_description": { "fi": "Tanssi ja leikki -työpaja esittelee lapsille tanssin maailmaa liikkeen, musiikin ja leikin kautta.", "sv": "Dans och lek-verkstaden presenterar dansens värld till barn genom rörelse, musik och lek.", "en": "The dance and play workshop introduces children to the world of dance through movement, music and play." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60482/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60999", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?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": 5142, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-10-09T13:29:33.992224Z", "last_modified_time": "2023-10-09T13:29:33.992246Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_737416.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/5142/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-10-09T13:29:33.210799Z", "last_modified_time": "2023-11-14T06:13:15.458978Z", "date_published": null, "start_time": "2023-10-02", "end_time": "2023-10-31", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/6A7F4868A82322C412101505134CCFB7/Haagan_Taideseura_Seppo_Piiraisen_taidegrafiikkaa" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Taidegrafiikan olen todennut itselleni parhaiten luontuvaksi ilmaisutavaksi. Sen eri tekniikoita olen opiskellut jo vuosikymmeniä mm. Työväenopistojen kursseilla.</p><p>Yleensä teokseni syntyvät yksittäisestä kuvaideasta sen merkitystä pohdiskellen ja siihen eri elementtejä lisäillen, joskus hyvin pitkän prosessin kautta. Toisinaan jonkin uuden tekniikan opettelu inspiroi minua vapaisiin kokeiluihin, mikä tarjoaa virkistävää vastapainoa suunnitelmalliselle työskentelylle.</p><p>Olen erityisesti halunnut tutkia ja kuvata luonnossa esiintyviä muotoja ja rakenteita sekä niiden säännönmukaisuuksia. Toisaalta minua kiehtovat ikiaikaiset myytit ja kertomukset etenkin maailman synnystä: kuinka samanlaisina ne ilmenevät eri kansojen piirissä.</p><p>Haagan Taideseura on Helsingissä yli 50 vuotta toiminut ammatti- ja harrastajataiteilijoista koostuva kuvataideseura. Lisätiedot https://www.haagantaideseura.com/</p>" }, "name": { "fi": "Haagan Taideseura: Seppo Piiraisen taidegrafiikkaa" }, "short_description": { "fi": "Taidegrafiikan olen todennut itselleni parhaiten luontuvaksi ilmaisutavaksi. Sen eri tekniikoita olen opiskellut jo vuosikymmeniä mm. Työväenopistojen kursseilla." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60999/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60533", "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:30/?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: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/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": 4332, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:22.366247Z", "last_modified_time": "2023-09-07T14:23:22.366280Z", "name": "", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731336.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4332/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:22.198252Z", "last_modified_time": "2023-11-14T06:13:15.384983Z", "date_published": null, "start_time": "2023-10-02", "end_time": "2023-10-30", "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, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/83505BC859366C2FC4F4250E8E0C22EE/Nayttely_Kirjava_vuosikymmen_julisteita_1970-luvun_arkkitehtuurinayttelyista" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Julistetaiteen kulta-aikana 1970-luvulla julisteet olivat tärkeä osa näyttelyiden markkinointia ja viestintää.</p><p>Arkkitehtuurimuseon <i>Kirjava vuosikymmen</i> -näyttelyssä ajan visuaalista maailmaa tarkastellaan näyttelyjulisteiden kautta. Esillä olevat julisteet ovat peräisin Arkkitehtuurimuseon (silloin: Suomen rakennustaiteen museo) 1970-luvun aikana järjestämistä näyttelyistä. Ne heijastavat paitsi aikansa tyyliä myös arkkitehtuurin ja yhteiskunnan kehitystä.</p><p>Suomen rakennustaiteen museon (nykyisen Arkkitehtuurimuseon) järjestämänä nähtiin vuosina 1970–1979 huimat kahdeksankymmentä näyttelyä. Millaisia aiheita tuona aikana pidettiin arkkitehtuurinäyttelyn arvoisina? Näyttelyn ovat kuratoineet intendentti <b>Anna Autio</b> ja amanuenssi <b>Joona Rantasalo</b> Arkkitehtuurimuseosta.</p><p>Haluatko sukeltaa syvemmälle 1970-luvun maailmaan? <i>Betoniunelmia – ja muita näkymiä 1970-luvun arkkitehtuuriin</i> -näyttely on avoinna Arkkitehtuurimuseossa 17.5.–15.10.2023. Osoite: Kasarmikatu 24, Helsinki.</p>" }, "name": { "fi": "Näyttely: Kirjava vuosikymmen – julisteita 1970-luvun arkkitehtuurinäyttelyistä" }, "short_description": { "fi": "Julistetaiteen kulta-aikana 1970-luvulla julisteet olivat tärkeä osa näyttelyiden markkinointia ja viestintää." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60533/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59931", "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:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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/yso:p2625/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "75/22,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/3394236" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4331, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:21.948332Z", "last_modified_time": "2023-09-07T14:23:21.948364Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_731687.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4331/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:21.793157Z", "last_modified_time": "2023-11-14T06:13:15.296698Z", "date_published": null, "start_time": "2023-10-01T15: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/29EA3E2690F8C9D3EE838A0B8F185309/Stand_Up_Show_-_Nezlobin_Friends_K-18_" }, "provider_contact_info": null, "provider": { "fi": "Jap Nordic Oy" }, "description": { "fi": "<p>1. lokakuuta Helsingissä pidetään Alexander Nezlobinin stand up -konsertti. Kuuluisa koomikko esittelee uuden ohjelman - \"Nezlobin ja ystävät\". Esityksen yleisöä odottaa yllätys - yhdessä Alexanderin kanssa lavalle nousevat suositut stand-up-artistit, Igor Meerson ja Denis Ivanov, lisää infoa heistä tässä: https://japnordicevents.com</p><p>Alexander Nezlobin on stand-up koomikko, näyttelijä, TV-juontaja, elokuvaohjaaja ja käsikirjoittaja, tuottaja, DJ, humoristi, entinen Comedy Clubin asukas. Koomikko toimi tuottajana ja käsikirjoittajana sitcomissa Nezlob, jossa hän puhui elämästään. Kuvaamiseen osallistui taiteilijan perhe ja ystävät sekä kutsutut julkkikset. Osallistunut useisiin komediaprojekteihin televisiossa. Valtavan suosion ansiosta taiteilija pääsi kansainvälisen tutkimusryhmän TNS Gallup Median 50 parhaan julkisuuden listalle.</p><p>Kaikille tutut ja läheiset aiheet herättävät varmasti yleisöä, ja kuuluisan stand-up-koomikon seurassa vietetty ilta tuo hyvän mielen ja ystävällisen hymyn.</p><p>Kesto n. 2 h, ei väliaikaa</p><p>Ikäraja: K18<br>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p>", "ru": "<p>1 Октября в Хельсинки состоится стендап-концерт Александра Незлобина.<br>Известный комик представит новую программу — «Незлобин и друзья».<br>Зрителей шоу ожидает сюрприз — вместе с Александром на сцену выйдут<br>популярные стендап-артисты: Игорь Меерсон и Денис Иванов, о которых подробнее здесь: https://japnordicevents.com/</p><p>Александр Незлобин — стендап-комик, актёр, телеведущий, кинорежиссёр и сценарист, продюсер, диджей, юморист, бывший резидент Comedy Club. Комик выступил продюсером и сценаристом ситкома «Неzлоб», в котором рассказывал о своей жизни. В съемках принимали участие семья и друзья артиста, а также приглашенные знаменитости. Участвовал во многих комедийных проектах на ТВ. Благодаря огромной популярности, артист вошел в список топ-50 лучших публичных людей по версии международной исследовательской группы «TNS Gallup Media».<br> <br>«Мне кажется, что главное в стендапе — рассказывать зрителям о них через себя. Еще важно относиться к себе иронично». – признается Незлобин. В своих монологах Александр с тонкой иронией говорит про девушек, межличностные отношения, конфликты между мужчинами и женщинами, употребление алкоголя, глупых вопросах, школьных годах и шоу-бизнесе. Главный акцент юморист делает на стереотипы и шаблоны в поведении людей.<br> <br>Знакомые и близкие каждому темы обязательно найдут отклик у зрителей, а вечер проведенный в компании известного стендап-комика подарит хорошее настроение и добрую улыбку.<br> <br>*****</p>" }, "name": { "fi": "Stand Up Show - Nezlobin & Friends (K-18)", "ru": "Александр Незлобин: Большой Stand Up концерт" }, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59931/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:59462", "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:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5007/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "59,50/39,50/32,50 €", "sv": "59,50/39,50/32,50 €", "en": "59,50/39,50/32,50 €" }, "info_url": { "fi": "https://www.lippu.fi/eventseries/name-3335753", "sv": "https://www.lippu.fi/eventseries/name-3335753", "en": "https://www.lippu.fi/eventseries/name-3335753" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4330, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:21.562823Z", "last_modified_time": "2023-09-07T14:23:21.562845Z", "name": "", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_728336.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4330/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:21.386047Z", "last_modified_time": "2023-11-14T06:13:15.215201Z", "date_published": null, "start_time": "2023-09-30T17: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, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/B2299169A5AE87FF913AB8397581DC66/III_International_Queerlesque_Festival_in_Helsinki", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/B2299169A5AE87FF913AB8397581DC66/III_International_Queerlesque_Festival_in_Helsinki", "en": "http://www.savoyteatteri.fi/en/events/event/B2299169A5AE87FF913AB8397581DC66/III_International_Queerlesque_Festival_in_Helsinki" }, "provider_contact_info": null, "provider": { "fi": "We Are Queerlesque", "sv": "We Are Queerlesque", "en": "We Are Queerlesque" }, "description": { "fi": "<p>Betty Fvck esittää: III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI Savoy-teatterissa.Tervetuloa maailmanluokan festivaaliin, joka on täynnä Burleskia, Sirkusta, Dragia ja Queer-energiaa! Tässä festivaalissa koet mitä lumoavimpia ja henkeäsalpaavimpia esityksiä kaikkialta maailmasta. Me tuomme luoksesi Suomen suurimman Queer taiteen spektaakkelin! Show seuraa huikeaa menestystä vuosilta 2021 ja 2022, joka nähtiin myös Yle Areenassa. Queerlesque on aina ollut foorumi LGBT+ ja POC –yhteisöjen voimaannuttamiseksi. Tänä vuonna haluamme omistaa tämän projektin rasismin torjuntaan ja parempaan tasa-arvoon yhteiskuntaamme! Tule siis mukaan ja ole osa positiivista muutosta yhteiskunnassamme tämän queer-taideprojektin kautta!</p><p>PÄÄESIINTYJIÄT:<br>★KITTEN N' LOU (USA) - Kitten LaRue & Lou Henry Hoover - Multi-awared Burlesque icons: Best Duo, The Burlesque Hall of Fame 2019, Voted #1 Burlesque Performers in the world 2015, King of Boylesque, Mr. Exotic World 2017<br>★CHOCOLATE SHOWBOY (USA/FR) - Paris Moulin Rouge's Showboy<br>★TINUS DE SCHUNARD (USA) - Denmark's Legendary Diva Queen<br>★Mukana myös paikallisia supertähtiä: Betty Fvck, Ile Poikela, Minka Leskinen, Mysterikah, House of Sibelius ja monia muita</p><p>Ovet: 19.00, Show time: 20.00 - 22.45, sisältäen 30 min väliajan</p><p>Video aikaisemmasta showsta Savoy-teatterissa: https://youtu.be/g1q3hZpuBR8</p><p>Parhaan asun palkinto yleisölle: mahdollisuus voittaa palkintoja asulla joka on mahdollisimman Queer ja Extravaganza</p><p>Ikäraja: K18<br>Permanto K18 anniskelualue. Parveke S, ei anniskelua</p><p>About Betty Fvck’s Queerlesque<br>wearequeerlesque.com<br>Betty Fvck’s Queerlesque edustaa monimuotoisuutta, rohkeutta ja queeria. Olemme turvallinen tila monimuotoiselle queer-taiteelle ja -kulttuurille Helsingissä. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more!</p>", "sv": "<p>Betty Fvck presenterar: III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI på Savoyteatern. Välkommen på en festival i världsklass, full med Burlesk, Cirkus, Drag och Queerenergi! På den här festivalen får du uppleva de mest förtrollande och hisnande föreställningarna från hela världen. Vi tar Finlands största spektakel inom queerkonst till dig! Showen är en uppföljare till succéerna 2021 och 2022 som även visades på Yle Arenan.</p><p>Dörrar: 19.00, Showtime: 20.00–22.45, med 30 minuters paus</p><p>Artisterna publiceras sommaren 2023</p><p>Video från den tidigare showen i Savoyteatern: https://youtu.be/g1q3hZpuBR8</p><p>Bästa kostymen-pris för publiken: möjlighet att vinna priser med en kostym som maxar allt som är Queer och Extravaganza!</p><p>Åldersgräns: F18<br>Parkett utskänkningsområde, 18-årsgräns Läktare ingen utskänkning eller åldersgräns</p><p>About Betty Fvck’s Queerlesque<br>wearequeerlesque.com<br>Betty Fvck’s Queerlesque representerar mångformighet, mod och queer. Vi är ett tryggt utrymme för mångformig queerkonst och -kultur i Helsingfors. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more!</p>", "en": "<p>III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI</p><p>Following the huge success of the of the last two editions, which was once highlighted on YLE. Betty Fvck presents: III INTERNATIONAL QUEERLESQUE FESTIVAL IN HELSINKI at Savoy-teatteri.</p><p>Welcome to a world-class festival full of Burlesque, Circus, Drag and Queerness! In this festival you will see some of the most mesmerising and breath-taking performances from all around the world. On the grand stage of Savoy theatre, combined with our stunning and professional decorations and light, we will bring you the most spectacular stage of Queer art in Finland, which was highlighted on YLE 1 and Areena in 2021. Our project has always been a platform to empower the community - the LGBT+ and the POC, this year we want to dedicate this project to fight against racism and bring better equality to our society. So come join us and unite through this queer art project, we will make positive change to our society!</p><p>HEADLINERS:<br>★KITTEN N' LOU (USA) - Kitten LaRue & Lou Henry Hoover - Multi-awared Burlesque icons: Best Duo, The Burlesque Hall of Fame 2019, Voted #1 Burlesque Performers in the world 2015, King of Boylesque, Mr. Exotic World 2017<br>★CHOCOLATE SHOWBOY (USA/FR) - Paris Moulin Rouge's Showboy<br>★TINUS DE SCHUNARD (USA) - Denmark's Legendary Diva Queen<br>★Together with local Queer superstars: Betty Fvck, Ile Poikela, Minka Leskinen, Mysterikah, House of Sibelius and more</p><p>Door: 19.00, Show time: 20.00 till 22.45 include a 30 mins intermission</p><p>Video of our previous festival in Savoy-theatre: https://youtu.be/g1q3hZpuBR8</p><p>Best costume prize for audience: A chance to win prizes by wearing the most Queer and Extravaganza outfits</p><p>Age limit: K18<br>The stalls form a designated alcohol serving area for adults age 18 and older. The balcony is for people of all ages, no alcohol serving.</p><p>About Betty Fvck’s Queerlesque<br>wearequeerlesque.com<br>Betty Fvck’s Queerlesque represents Diversity, Boldness and Queer. Welcome to the Queer World of Burlesque, Boylesque, Draglesque, Circus and much more. The Queerlesque Show provides a safe space for diverse queer art and culture in Helsinki. We are fighting against homophobia, transphobia and racism in art and society.</p>" }, "name": { "fi": "III International Queerlesque Festival in Helsinki – Celebrate the Art of Burlesque and Queer", "sv": "III International Queerlesque Festival in Helsinki – Celebrate the Art of Burlesque and Queer", "en": "III International Queerlesque Festival in Helsinki – Celebrate the Art of Burlesque and Queer" }, "short_description": null, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:59462/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:60393", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "price": { "fi": "20 € / 15 €", "sv": "20 € / 15 €", "en": "20 € / 15 €" }, "info_url": { "fi": "https://www.lippu.fi/artist/stoa/fatima-zahra-bennacer-the-middle-eastern-ensemble-3428498/", "sv": "https://www.lippu.fi/artist/stoa/fatima-zahra-bennacer-the-middle-eastern-ensemble-3428498/", "en": "https://www.lippu.fi/artist/stoa/fatima-zahra-bennacer-the-middle-eastern-ensemble-3428498/" }, "description": null } ], "data_source": "kulke", "publisher": "ahjo:u4804001050", "sub_events": [], "images": [ { "id": 4329, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2023-09-07T14:23:20.527791Z", "last_modified_time": "2023-09-07T14:23:20.527811Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_732981.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u4804001050", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/4329/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2023-09-07T14:23:19.768030Z", "last_modified_time": "2023-11-14T06:13:15.135151Z", "date_published": null, "start_time": "2023-09-30T16: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, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/D071B92339167800AAB2657A4ADFCF2F/PERUTTU_Fatima_Zahra_Bennacer_the_Middle_Eastern_Ensemble_", "sv": "http://www.stoa.fi/sv/evenemang/event/D071B92339167800AAB2657A4ADFCF2F/INSTALLT_Fatima_Zahra_Bennacer_the_Middle_Eastern_Ensemble_", "en": "http://www.stoa.fi/en/events/event/D071B92339167800AAB2657A4ADFCF2F/CANCELLED_Fatima_Zahra_Bennacer_the_Middle_Eastern_Ensemble_" }, "provider_contact_info": null, "provider": null, "description": { "fi": "<p>Tapahtuma on peruttu sairaustapauksesta johtuen. Tapahtuma siirtyy keväälle 2024, tarkempi ajankohta ilmoitetaan myöhemmin.</p><p>--</p><p>Fatima Zahra Bennacer & the Middle Eastern Ensemble kutsuvat kokemaan arabialaisen musiikin sielukkaat ja kiehtovat äänet Nomads Festival 2023 -tapahtumassa kulttuurikeskus Stoassa.</p><p>F.Z Bennacer, joka on tunnettu marokkolainen laulaja ja näyttelijä, tuo ainutlaatuisen äänensä ja taiteellisuutensa lavalle vangiten Lähi-idän olemuksen jokaisella nuotilla.</p><p>Tällä kertaa the Middle Eastern Ensemble esittää vaikuttavan melodioiden ja rytmien musiikillisen ilotulituksen yhdessä 10 muusikon kanssa. Ohjelma koostuu energisistä ja tanssittavista mutta koskettavista ja melankolisista sävelmistä, jotka perustuvat Lähi-idän klassiseen musiikkiin ja kansanmusiikkiin eri alueilta, kuten arabialaisesta, persialaisesta, turkkilaisesta ja kurdilaisesta musiikista Egyptistä, Syyriasta, Turkista ja Irakista.</p><p>Yhtyeen äänimaisemaa värittää ainutlaatuinen sekoitus arabialaisia ja länsimaisia soittimia, kuten oud, tabla, riq, ney, qanoun, saz, viulu, alttoviulu, sello, harmonikka, trumpetti, klarinetti ja piano. Yhtyeen taiteellinen johtaja ja perustaja Ali Haithem, joka on tunnettu irakilainen oud-soittaja, johtaa ryhmää luomaan lumoavan musiikkikokemuksen.</p><p>Tule mukaan viettämään musiikillisen lumouksen iltaa F.Z Bennacerin ja the Middle Easternin viedessä sinut Lähi-idän sydämeen.</p><p>Kesto: 2 h, ei väliaikaa</p>", "sv": "<p>Evenemanget flyttas till år 2024, det nya datumet kommer att meddelas senare.</p><p>--</p><p>Fatima Zahra Bennacer och the Middle Eastern Ensemble bjuder in dig att uppleva den djupsinniga och fängslande arabiska musiken vid Nomads Festival 2023 vid Stoa kulturcentrum.</p><p>F.Z Bennacer, en känd marockans sångare och skådespelare, visar upp sin unika röst och sitt unika artisteri på scenen och fångar essensen av Mellanöstern med varje ton.</p><p>Den här gången presenterar the Middle Eastern Ensemble ett imponerande musikaliskt fyrverkeri av melodier och rytmer tillsammans med tio andra musiker. Programmet består av energifyllda och dansvänliga men samtidigt rörande och melankoliska låtar, som hämtar inspiration från klassisk musik och folkmusik från olika delar av Mellanöstern, till exempel arabisk, persisk, turkisk och kurdisk musik från länder som Egypten, Syrien, Turkiet och Isak.</p><p>Ensemblens ljudlandskap färgas av en unik blandning av arabiska och västerländska instrument, inklusive oud, tabla, riq, ney, qanoun, saz, violin, altfiol, cello, dragspel, trumpet, klarinett och piano. Den konstnärliga ledaren och grundaren av ensemblen Ali Haithem, som är en känd oudspelare från Irak, leder gruppen och skapar en förtrollande musikalisk upplevelse.</p><p>Följ med på en kväll av musikalisk förtrollning när F.Z Bennacer och the Middle Eastern Ensemble tar med dig till hjärtat av Mellanöstern.</p><p>Längd: 2 t.</p>", "en": "<p>The event has been cancelled and will be rescheduled to spring 2024. The new date will be announced later.</p><p>--</p><p>Fatima Zahra Bennacer & the Middle Eastern Ensemble invite you to experience the soulful and captivating sounds of Arabic music at the Nomads Festival 2023, at Cultural Center Stoa.</p><p>F.Z Bennacer, a renowned Moroccan singer and actress, brings her unique voice and artistry to the stage, capturing the essence of the Middle East with every note. <br> <br>This time, the Middle Eastern Ensemble presents an impressive musical firework of melodies and rhythms together with 10 musicians. The program consists of energetic and danceable yet touching and melancholic tunes, drawing on Middle Eastern classical and folk music from various regions such as Arabic, Persian, Turkish, and Kurdish music from countries like Egypt, Syria, Turkey, and Iraq. <br> <br>The soundscape of the ensemble is colored by a unique blend of Arabic and Western instruments, including oud, tabla, riq, ney, qanoun, saz, violin, viola, cello, accordion, trumpet, clarinet, and piano. Artistic director and founder of the ensemble, Ali Haithem, a renowned oud player from Iraq, leads the group to create a mesmerizing musical experience that will leave you spellbound. <br> <br>Join us for an evening of musical enchantment as F.Z Bennacer and the Middle Eastern ensemble transport you to the heart of the Middle East.</p><p>Duration: 2 hours</p>" }, "name": { "fi": "PERUTTU | Fatima Zahra Bennacer & the Middle Eastern Ensemble", "sv": "INSTÄLLT | Fatima Zahra Bennacer & the Middle Eastern Ensemble", "en": "CANCELLED | Fatima Zahra Bennacer & the Middle Eastern Ensemble" }, "short_description": { "fi": "Tapahtuma on peruttu sairaustapauksesta johtuen. Tapahtuma siirtyy keväälle 2024, tarkempi ajankohta ilmoitetaan myöhemmin.", "sv": "Evenemanget flyttas till år 2024, det nya datumet kommer att meddelas senare.", "en": "The event has been cancelled and will be rescheduled to spring 2024. The new date will be announced later." }, "location_extra_info": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:60393/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 27037, "next": "