Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki
to search for the events with both search
terms in the description fields and local_ongoing_OR
to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training)
use
local_ongoing_OR_setX
parameter, where X
is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND
,
internet_ongoing_OR
, and internet_ongoing_OR_setX
, Note, that
local_ongoing
and internet_ongoing
are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND
, all_ongoing_OR
and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start
and end
to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start
and end
can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today
(for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days
filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start
and end
cannot be used together with the
days
parameter.
Example:
event/?days=7
Event start/end time
Use starts_after
, starts_before
, ends_after
, and
ends_before
to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday
to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration
to filter for the events that last up to a specified time, or
min_duration
to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west
is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location
, separating values by commas if you wish to query for several locations.
Location ids are found at the place
endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473
. An easy way to locate service points is to browse
servicemap.hel.fi
, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473
.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division
,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi
, or by division
name malmi
. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin
and dwithin_metres
in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon
is the longitude of the origin point, lat
is the latitude
of the origin point, and distance
is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid
parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword
,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND
, if you require all provided values (separated by commas) to be present.
Use parameter keyword!
if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185)
use keyword_OR_setX
parameter, where X
is a number.
Keyword ids are found at the keyword
endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354
.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND
and keyword_set_OR
. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2
would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since
.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted
filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids
, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status
field) may be either
scheduled as planned (EventScheduled
), rescheduled if their start time has
changed after they were first published (EventRescheduled
), cancelled if they
were cancelled altogether after publication (EventCancelled
), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed
).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status
filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status
parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id
field) may be event (General
),
course (Course
) or volunteering (Volunteering
). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type
filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text
.
Example:
event/?text=shostakovich
Combined text
While the text
search is looking for the events containg exact matches of the search
string, combined_text
filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Event price
Events may or may not contain the offers
field that lists event pricing.
To return only free or non-free events, use the query parameteris_free
. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language
. If you only wish to see events that have a set language,
use the in_language
parameter, and if you only want event data translated to a set
language, use the translation
parameter.
Supported languages are found at the language
endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi
,
sv
, en
, ru
, zh_hans
, and ar
.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt
, audience_min_age_gt
, audience_max_age_lt
,
audience_max_age_gt
.
audience_min_age_lt
returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt
returns the events whose minimal age is greater
than or equals the specified value. max_age
parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age
and audience_min_age
parameters without lt
and gt
modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher
, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization
endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id
as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor
, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source
. All event ids are of the form data_source:origin_id
,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki
is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring
(repeating events, event series) and umbrella
(festivals etc.).
recurring
events last for a period and have sub_events
that all have
similar data, but different dates.
umbrella
events last for a period and may have different sub_events
,
including recurring
events (i.e. an umbrella
festival may have a
recurring
theater play sub_event
, which may have several nights
as sub_events
.)
Super event type
You may use the query parameter super_event_type
, comma separated, to get only
super events of specific types. You may use none
if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event
, comma separated, to get all subevents
for specific superevents. You may use none
if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event
to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children
to hide all child events
for super events which are of type recurring
.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events
in pair with hide_recurring_children
to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children
and hide_recurring_children_sub_events
with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration
.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open
or in the waiting lists enrolment_open_waitlist
.
Note that the latter query parameter when set to true
returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on
parameter displays events where the given datetime is within the
enrolment_start_time
and enrolment_end_time
of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte
parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte
parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte
parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte
parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte
parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull
parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte
parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull
parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True
, true
and 1
are all considered to be "true".
The values False
, false
and 0
are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all
parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status
field) may be either
(draft
) if the event is not published yet or (public
) for published
events.
You may filter events with only the desired publication status with the
publication_status
filter.
Example:
event/?publication_status=draft
Only editable events
admin_user
parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user
parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by
parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include
. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time
.
Default full text search ordering is based on search relevance rank and id (-rank,id
).
You may also order results by start_time
, end_time
, name
,
duration
, enrolment_start_time
, enrolment_end_time
,
registration__enrolment_start_time
, registration__enrolment_end_time
,
enrolment_start
and enrolment_end
. Descending order is denoted by
adding -
in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start
and enrolment_end
have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time
and enrolment_end_time
are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&is_free=true&page=241
https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=242", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&is_free=true&page=240" }, "data": [ { "id": "kulke:64525", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152308, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:14:02.129011Z", "last_modified_time": "2024-09-05T11:14:02.129024Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749847.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152308/?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": "2024-09-05T11:14:02.113985Z", "last_modified_time": "2024-12-20T01:14:17.129673Z", "date_published": null, "start_time": "2024-12-04T08:00:00Z", "end_time": "2024-12-04T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/72E8D61653866380E4E4DB5F738AE99C/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/72E8D61653866380E4E4DB5F738AE99C/Knattebion", "en": "http://www.annantalo.fi/en/events/event/72E8D61653866380E4E4DB5F738AE99C/Toddler_cinema" }, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64525/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64433", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152209, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T13:15:56.519797Z", "last_modified_time": "2024-08-23T13:15:56.519817Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757200.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152209/?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": "2024-08-23T13:15:56.489871Z", "last_modified_time": "2024-12-20T01:14:17.042026Z", "date_published": null, "start_time": "2024-12-04T08:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/E3D767D31A844AECD5AA11C21AD5BC0C/Kuskit_Company_Superkehot" }, "name": { "fi": "Kuskit Company: Superkehot – Ilmoittautuminen kultus.fi" }, "description": { "fi": "<p>Superkehot on asiantuntijatietoon pohjautuva esitys 3–5-vuotiaiden lasten suhteesta omaan ja toisten kehoon. TÄYTEEN VARATTU</p><p>Se on syliä ja haleja, hassuttelua, höpöttelyä, nukkumista, heräämistä, nujuamista, hyppimistä, heilumista, juoksemista, tanssimista. Se on leikkiä, ja se on tärkeitä sanoja. Se on turvataitoja ja turvallista tahtomista, se on EI EI EI EI EI, se on KYLLÄ ja se on en tiedä...!</p><p>Se on se kaikkein tärkein – ikioma keho!</p><p>Vuoden 2024 Itu-palkittu esitys pohtii nukketeatterin keinoin kehoitsetunnon rakentumisen peruspalikoita, hellästi ja konkreettisesti.</p><p>Työryhmä:<br>Skenografia ja nuket: K Rasila<br>Dramaturgia ja ohjaus: Valto Kuuluvainen<br>Äänisuunnittelu: Maura Korhonen<br>Valosuunnitelu: Anna Pöllänen<br>Näyttämöllä: Eero Ojala ja Elisa Salo<br>Lopun superkehomusiikki: Sävellys Pasi Huttula, sovitus Maura Korhonen<br>Käsiohjelma: Leena Aronen<br>Esityskuva: Mikael Ahlfors ja K Rasila<br>Esityksen kesto 45 minuuttia</p><p>Vanhemmille tietosivusto: hyvakysymys.fi/lapsijaseksuaalisuus<br>Vanhemman vihkonen: https://www.vaestoliitto.fi/uploads/2020/11/bac46f71-vanhemmantietovihko-netti-2-20.pdf</p><p>Pikku Kakkosen videot: https://yle.fi/aihe/artikkeli/2019/06/05/pikku-kakkosessa-annetaan-kaikille-kehon-osille-nimi-ja-opetellaan</p><p>Ikäsuositus: 3–5-v</p><p>Arkiaamuesityksiin ilmoittautuminen: kultus.fi perjantaista 1.11. klo 8 alkaen</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64433/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64688", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152792, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-11T13:16:34.182085Z", "last_modified_time": "2024-10-11T13:16:34.182102Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759237.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152792/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-11T13:16:34.155967Z", "last_modified_time": "2024-12-20T01:14:16.954053Z", "date_published": null, "start_time": "2024-12-03T17:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Monipuolista jazzia bebopista happoiseen fuusioon sekä neliulotteinen hyperkuutio täynnä fuusiojazzia mielenkiintoisilla vivahteilla.", "sv": "Mångsidig jazz från bebop till psykedelisk fusion samt en fyrdimensionell hyperkub full av fusionsjazz med intressanta nyanser.", "en": "Versatile jazz from bebop to acid fusion plus a four-dimensional hypercube full of fusion jazz with an interesting twist." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/11B23E02F910C7A8B90FC9F67BBC5A6A/BOPPiN_CHAIR_ja_Popjazz-tesserakti", "sv": "http://www.malmitalo.fi/sv/evenemang/event/11B23E02F910C7A8B90FC9F67BBC5A6A/BOPPiN_CHAIR_och_Popjazz-tesserakt", "en": "http://www.malmitalo.fi/en/events/event/11B23E02F910C7A8B90FC9F67BBC5A6A/BOPPiN_CHAIR_and_Popjazz_Tesseract_" }, "name": { "fi": "BOPPiN' CHAIR ja Popjazz-tesserakti – Pop & Jazz Konservatorion ammattiopiskelijat", "sv": "BOPPiN' CHAIR och Popjazz-tesserakt – Konserter med Pop & Jazz Konservatoriets yrkesstuderande", "en": "BOPPiN’ CHAIR and Popjazz Tesseract – Concerts by students of the Pop & Jazz Conservatory" }, "description": { "fi": "<p>Monipuolista jazzia bebopista happoiseen fuusioon sekä neliulotteinen hyperkuutio täynnä fuusiojazzia mielenkiintoisilla vivahteilla.</p><p><b>BOPPiN' CHAIR</b></p><p>Boppin' Chair soittaa monipuolisesti jazz-musiikkia tyylikkäästä bebopista happoiseen fuusioon. Taitava ja vaihteleva kokoonpano tarjoaa uusia ja mielenkiintoisia käänteitä jokaisessa esityksessään. Yhtyeen jäsenten perinteisen ja modernin jazzin tietämys kuuluu soiton ainutlaatuisina vivahteina. Persoonallisilla ideoilla ja energisellä lavakarismallaan yhtye pitää huolen, että jokainen kuulija tulee puhtaalla innolla pomppimaan tuolissaan jättäen miettimään loppupäiväksi esityksen luovaa rajattomuutta. Uskallappa vain jättää se näkemättä!</p><p>Leo Korte - Sähköbasso ja laulu<br>Patrik Fónsen - Kitara<br>Kalle Rinne - Kitara<br>Max Shadrin - Rummut<br>Mirjam Mannila- Koskettimet<br>Ilta Attila - Saksofoni<br>Joel Mäntyvaara - Perkussiot</p><p><b>Popjazz-tesserakti</b></p><p>Mitä tapahtuu, kun yhdistää viisi helsinkiläistä popjazz-muusikkoa ja neliulotteisen hyperkuution? Emme mekään tiedä. Mutta sen tiedämme, että asia saattaa selventyä Popjazz-tesseraktin esiintymistilaisuudessa.</p><p>Soitamme jazzia (fuusio-). Luvassa ennätysmäärä nuotteja soitettuna alati ennalta-arvaamattomammissa rytmeissä, jotka saavat harjaantuneimmatkin jazzdiggarit kyseenalaistamaan kuuloaistinsa.</p><p>Jussi Parkkonen - kitara<br>Matti Korhonen - kitara<br>Lume Himanen - huilu, saksofoni<br>Jouko Kokko - basso<br>Onni Koivisto - rummut</p><p><b>Aikataulu</b><br>klo 19.00 - BOPPiN' CHAIR <br>klo 20.00 - Popjazz-tesserakti</p>", "sv": "<p>Mångsidig jazz från bebop till psykedelisk fusion samt en fyrdimensionell hyperkub full av fusionsjazz med intressanta nyanser.</p><p><b>BOPPiN' CHAIR</b></p><p>Boppin' Chair spelar mångsidig jazzmusik från elegant bebop till psykedelisk fusion. Den skickliga och varierade ensemblen bjuder på nya och intressanta vändningar i varje show. Medlemmarnas kännedom om traditionell och modern jazz hörs i musikens unika nyanser. Med sina personliga idéer och sin energiska scenkarisma tar ensemblen hand om att varje åhörare kommer att av ren iver hoppa i sin stol och får åhörarna att fundera på showens kreativa gränslöshet för resten av dagen. Missa inte den här!</p><p>Leo Korte – Elbasgitarr och sång<br>Patrik Fónsen – Gitarr<br>Kalle Rinne – Gitarr<br>Max Shadrin – Trummor<br>Mirjam Mannila – Keyboard<br>Ilta Attila – Saxofon<br>Joel Mäntyvaara – Perkussion</p><p><b>Popjazz-tesserakt</b></p><p>Vad händer när man kombinerar fem popjazzmusiker från Helsingfors och en fyrdimensionell hyperkub? Det vet vi inte heller. Men det som vi vet är att Popjazz-tesserakts show kan klargöra saken.</p><p>Vi spelar (fusions)jazz. Vi utlovar ett rekordantal noter som spelas i mer och mer oförutsägbara rytmer som får även de mest tränade jazzälskarna att ifrågasätta sin hörsel.</p><p>Jussi Parkkonen – gitarr<br>Matti Korhonen – gitarr<br>Lume Himanen – flöjt, saxofon<br>Jouko Kokko – basgitarr<br>Onni Koivisto – trummor</p><p><b>Tidsplan</b><br>kl. 19.00 – BOPPiN' CHAIR <br>kl. 20.00 – Popjazz-tesserakt</p>", "en": "<p>Versatile jazz from bebop to acid fusion plus a four-dimensional hypercube full of fusion jazz with an interesting twist.</p><p><b>BOPPiN’ CHAIR</b></p><p>BOPPiN’ CHAIR plays a wide range of jazz from elegant bebop to acid fusion. The skilful musicians offer new and interesting twists and turns in every show. The band members’ knowledge of traditional and modern jazz gives a unique nuance to the music. With their personal ideas and energetic stage charisma, the band makes sure that every listener will bounce up and down in their chair with pure enthusiasm and leave the gig thinking about the creative limitlessness of the performance. Don’t you dare miss it!</p><p>Leo Korte – electric bass and vocals<br>Patrik Fónsen – guitar<br>Kalle Rinne – guitar<br>Max Shadrin – drums<br>Mirjam Mannila – keyboard<br>Ilta Attila – saxophone<br>Joel Mäntyvaara – percussion</p><p><b>Pop Jazz Tesseract</b></p><p>What happens when you combine five Helsinki-based pop jazz musicians with a four-dimensional hypercube? We don’t know either. But we do know that it might become clearer when the Popjazz Tesseract performs.</p><p>We play jazz (fusion). A record number of notes will be played at ever more unpredictable rhythms that will make even the most trained jazz diggers question their hearing.</p><p>Jussi Parkkonen – guitar<br>Matti Korhonen – guitar<br>Lume Himanen – flute, saxophone<br>Jouko Kokko – bass<br>Onni Koivisto – drums</p><p><b>Schedule</b><br>19:00 BOPPiN’ CHAIR <br>20:00 Popjazz Tesseract</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64688/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64633", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152709, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-10-02T10:17:11.263831Z", "last_modified_time": "2024-10-02T10:17:11.263844Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758817.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152709/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-10-02T10:17:11.234536Z", "last_modified_time": "2024-12-20T01:14:16.687623Z", "date_published": null, "start_time": "2024-12-02T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Moneen kertaan palkittu ja usealle kielelle käännetty kirjailija Katja Kettu vierailee Kanneltalossa keskustelemassa tuoreesta kirjastaan Erään kissan tutkimuksia (Otava 2023).", "sv": "Den mångfaldigt prisbelönta författaren Katja Kettus verk har översatts till många språk. Hon besöker Gamlasgården för att diskutera sin senaste bok Erään kissan tutkimuksia (Otava 2023).", "en": "Katja Kettu, an author who has received several awards and has been translated into several languages, visits Kanneltalo to talk about her recent book, The Investigations of a Certain Cat (Otava 2023)." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/394F8FA8971D2F9047E0A9D5EF8B03DC/Kirjailijavieraana_Katja_Kettu_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/394F8FA8971D2F9047E0A9D5EF8B03DC/Gastforfattare_Katja_Kettu", "en": "http://www.kanneltalo.fi/en/events/event/394F8FA8971D2F9047E0A9D5EF8B03DC/Author_guest_Katja_Kettu" }, "name": { "fi": "Kirjailijavieraana Katja Kettu – Maksuttomat maanantait", "sv": "Gästförfattare Katja Kettu – Avgiftsfria måndagar", "en": "Author guest Katja Kettu – Free Mondays" }, "description": { "fi": "<p>Moneen kertaan palkittu ja usealle kielelle käännetty kirjailija Katja Kettu vierailee Kanneltalossa keskustelemassa tuoreesta kirjastaan Erään kissan tutkimuksia (Otava 2023).</p><p>Katja Kettua haastattelee kirjailija, toimittaja Esa Mäkijärvi.</p><p>Katja Ketun huikaiseva romaani Erään kissan tutkimuksia kieppuu aikojen lävitse ja antautuu villille luonnolle ja perillistä ikävöivän veren kutsulle.</p><p>Kirjailija saa keskenmenon ja menettää kykynsä puhua ja kirjoittaa. Paikalle lähetetään Taivaiden Tutkimustoimistosta Etsivä, mutta jokin menee pieleen, ja tuvan nurkkaan ilmestyykin Kissa, joka käy tutkimaan vintin lattialuukusta löytynyttä Isoisoäidin päiväkirjaa. Kun uusi elämä on menetetty, kääntää Kirjailija katseensa menneisyyteen ja ikiaikaisiin syntysanoihin. Niiden taitajalla, Isoisoäidillä, on suomen kielen väessä ja voimassa parantajien mahti. Voiko menneestä löytää lohdun ja tarkoituksen elämälle, kun tulevaisuutta ei ole?</p><p>Katja Kettu (s. 1978) on Rovaniemeltä kotoisin oleva kirjailija ja animaatio-ohjaaja. Hänen läpimurtoteoksensa Kätilö (2011) sai Kalevi Jäntin palkinnon, Runeberg-palkinnon ja Kiitos kirjasta -mitalin. Teoksen käännösoikeudet on myyty 19 maahan ja sitä on myyty Suomessa yli 160 000 kappaletta. Kirjasta on tehty myös elokuva.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.<br>Kieli: suomi<br>Vapaa pääsy</p>", "sv": "<p>Den mångfaldigt prisbelönta författaren Katja Kettus verk har översatts till många språk. Hon besöker Gamlasgården för att diskutera sin senaste bok Erään kissan tutkimuksia (Otava 2023).</p><p>Katja Kettu intervjuas av författare och journalist Esa Mäkijärvi.</p><p>Katja Kettus fantastiska roman Erään kissan tutkimuksia susar genom tiden och ger sig hän sig till den vilda naturen och blodets längtan efter en arvinge.</p><p>Författaren får missfall och förlorar förmågan att tala och skriva. En detektiv från den himmelska undersökningsbyrån skickas till platsen, men något går fel och istället dyker det upp en katt vid stughörnet. Katten börjar undersöka gammelmormors dagbok, som hittats i en golvlucka på vinden. När ett nytt liv har gått förlorat vänder Författaren blicken mot det förflutna och eviga ursprungsord. Gammelmormor, som kan dessa ord, har kraften att läka bland det finska folket och de finska krafterna. Kan man finna tröst och mening i det förflutna när det inte finns någon framtid?</p><p>Katja Kettu (f. 1978) är en författare och animationsregissör från Rovaniemi. Hennes genombrottsverk Barnmorskan (2011) belönades med Kalevi Jäntti-priset, Runebergspriset och Kiitos kirjasta-medaljen. Översättningsrättigheterna till verket har sålts till 19 länder och mer än 160 000 exemplar har sålts i Finland. Boken har också filmatiserats.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.<br>Språk: finska<br>Fritt inträde</p>", "en": "<p>Katja Kettu, an author who has received several awards and has been translated into several languages, visits Kanneltalo to talk about her recent book, The Investigations of a Certain Cat (Otava 2023).</p><p>Katja Kettu will be interviewed by author and editor Esa Mäkijärvi.</p><p>Katja Kettu's fabulous novel The Investigations of a Certain Cat passes through the ages like a whirlwind, surrendering to wild nature and the call of blood longing for an heir.</p><p>The writer suffers a miscarriage and loses the ability to speak and write. From the Investigative Bureau of Heavens, a Detective is sent to the scene, but something goes awry. Soon, in the corner of the room, there appears Cat who starts examining a mysterious diary that once belonged to the Author’s Great Grandmother. When a new life has been lost, the Author turns their gaze to the past and to the age-old words of creation in the old Finnish outskirts. The one who knows them, Great Grandmother, has the power of healers. Is there comfort and meaning in the past when there is no future?</p><p>Katja Kettu (b. 1978) is a writer and animation director from Rovaniemi. His breakthrough work, The Midwife (2011), received the Kalevi Jäntti Prize, the Runeberg Prize and the Kiitos kirjasta Medal. The translation rights to the work have been sold to 19 countries and more than 160,000 copies have been sold in Finland. The book has also been made into a movie.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.<br>Language: Finnish<br>Free of charge</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64633/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63689", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:104/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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: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" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p5088/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151926, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T09:15:36.831119Z", "last_modified_time": "2024-07-26T09:15:36.831139Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_752037.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151926/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T09:15:36.801951Z", "last_modified_time": "2024-12-20T01:14:16.599040Z", "date_published": null, "start_time": "2024-12-02T13:00:00Z", "end_time": "2024-12-02T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kirsi Piha kertoo teoksestaan Levoton lukija (WSOY 2023), joka sisältää esseitä elämästä, kirjoista, lukemisesta ja kirjoittamisesta. Kirsi Piha ja Hannu Mäkelä kertovat teoksestaan Pimeän yli (WSOY 2020), joka sisältää heidän välisen kirjeenvaihtonsa – kirjeitä ihmisenä olemisen taidosta.", "sv": "Kirsi Piha och Hannu Mäkelä berättar om sin bok Pimeän yli (WSOY 2020), som innehåller deras korrespondens – brev om konsten att vara människa.", "en": "Kirsi Piha and Hannu Mäkelä talk about their book, Pimeän yli (WSOY 2020), which includes their correspondence – letters about the art of being human." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/35EBFE50B5E1F1E4629FB31A8AF133E7/Kirjailijavieraana_Kirsi_Piha_ja_Hannu_Makela", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/35EBFE50B5E1F1E4629FB31A8AF133E7/Kirsi_Piha_och_Hannu_Makela_som_forfattargaster", "en": "http://www.kanneltalo.fi/en/events/event/35EBFE50B5E1F1E4629FB31A8AF133E7/Author_guests_Kirsi_Piha_and_Hannu_Makela" }, "name": { "fi": "Kirjailijavieraana Kirsi Piha ja Hannu Mäkelä – Maksuttomat maanantait", "sv": "Kirsi Piha och Hannu Mäkelä som författargäster – Kostnadsfria måndagar", "en": "Author guests Kirsi Piha and Hannu Mäkelä – Free Mondays" }, "description": { "fi": "<p>Kirsi Piha kertoo teoksestaan Levoton lukija (WSOY 2023), joka sisältää esseitä elämästä, kirjoista, lukemisesta ja kirjoittamisesta. Kirsi Piha ja Hannu Mäkelä kertovat teoksestaan Pimeän yli (WSOY 2020), joka sisältää heidän välisen kirjeenvaihtonsa – kirjeitä ihmisenä olemisen taidosta.</p><p>Haastattelijana kirjailija ja toimittaja Jani Saxell.</p><p>Kirsi Piha: Levoton lukija (WSOY 2023)</p><p>”Olisin halunnut olla se runotyttö, jonka eristäytymisen tarve ja sisäinen kuulumattomuuden tunne selittyisi sillä, että hän intohimoisesti elää runouden maailmassa. Olisin halunnut olla se, joka kantaa kainalossa runokirjaa, siteeraa ulkoa syvällisiä säkeitä ja lempikirjailijoita kysyttäessä mainitsee viiden joukossa ainakin kaksi runoilijaa. Olisin halunnut pitää Lorcasta.<br>En ollut sellainen, enkä ole.”</p><p>Kirsi Piha hahmottaa lukemalla ympäröivää maailmaa, itseään ja toisia ihmisiä. Kirjoista hän etsii ymmärrystä sille, keitä me olemme, mikä meitä liikuttaa ja mistä elämässä on pohjimmiltaan kysymys.</p><p>Levoton lukija käsittelee kirjallisuuden innoittamana rohkeasti ja yllättävistä näkökulmista ihmissuhteita, elämää, sen vaiheita ja muutoksia: äitiyttä, ikääntymistä, kuolemaa ja rakkautta. Muutamat kirjailijat, kuten Virginia Woolf, Tove Jansson, Fernando Pessoa ja Hannu Mäkelä ovat lukijalleen erityisen rakkaita. Paitsi kirjailijoiden tuotantoa, Kirsi Piha pohtii heidän elämäänsä ja tapaansa kirjoittaa.</p><p>Hannu Mäkelä & Kirsi Piha: Pimeän yli (WSOY 2020)</p><p>”Ajattelen, että aina on parempi nousta tuolista ja yrittää katsoa mitä ympärillä on kuin istua aloillaan.”</p><p>Täyttäessään seitsemän vuotta Kirsi Piha sai isältään syntymäpäivälahjaksi Hannu Mäkelän kirjan Herra Huu. Yli neljä vuosikymmentä myöhemmin Piha kutsuu Mäkelän kanssaan kirjeenvaihtoon.</p><p>Lyhyiden ja viiveettä välittyvien pienjulistusten maailmassa pidempi, harkittu ja vuoropuhelunomainen ajatustenvaihto tuntuu jälleen arvokkaalta ja antoisalta.</p><p>Kirjeissä pohditaan suhteita ja sukupolvia, luontoa ja ihmisluontoa, taidetta ja sanomisen tarvetta. Millaisessa maailmassa elämme, mikä on roolimme tässä ajassa, miten voisimme kehittyä ihmisinä ja toteuttaa ihmisen tehtävää – ja mikä se tehtävä on?</p><p>Pimeän yli sisältää Hannu Mäkelän ja Kirsi Pihan kirjeenvaihdon talvelta 2019–2020. Näennäisesti erilaisista elämänkokemuksista nousee yhteisiä mielenkiinnon kohteita, jaettuja huolen ja kiitoksen aiheita. Avoimesta ja ennakkoluulottomasta keskustelusta kasvaa lämmin ystävyys.</p><p>Yhteistyössä Kannelmäen kirjaston ja Helsingin työväenopiston kanssa.</p><p>Kieli: suomi<br>Vapaa pääsy</p>", "sv": "<p>Kirsi Piha och Hannu Mäkelä berättar om sin bok Pimeän yli (WSOY 2020), som innehåller deras korrespondens – brev om konsten att vara människa.</p><p>Författaren och journalisten Jani Saxell fungerar som intervjuare.</p><p>\"Jag tror att det alltid är bättre att resa sig ur stolen och försöka se sig om än att sitta still.\"</p><p>När Kirsi Piha fyllde sju år fick hon Hannu Mäkeläs bok Herra Huu i födelsedagspresent av sin far. Mer än fyra decennier senare bjuder Piha in Mäkelä att korrespondera.<br>I en värld av korta och omedelbara minideklarationer känns ett längre, genomtänkt och dialogliknande utbyte av tankar återigen värdefullt och givande.</p><p>Breven reflekterar över relationer och generationer, naturen och människan, konsten och behovet av att säga något. Vad är det för en värld vi lever i, vad är vår roll i denna tid, hur kan vi utvecklas som människor och fullfölja vårt mänskliga uppdrag – och vad är uppdraget?</p><p>Pimeän yli innehåller korrespondens mellan Hannu Mäkelä och Kirsi Piha från vintern 2019–2020. Till synes olika livserfarenheter ger upphov till gemensamma intressen, delade bekymmer och anledningar till tacksamhet. En varm vänskap växer fram ur en öppen och fördomsfri diskussion.</p><p>I samarbete med Gamlas bibliotek och Helsingfors finska arbetarinstitut.</p>", "en": "<p>Kirsi Piha and Hannu Mäkelä talk about their book, Pimeän yli (WSOY 2020), which includes their correspondence – letters about the art of being human.</p><p>The interviewer is author and journalist Jani Saxell.</p><p>“I think it's always better to get up and try to see what's around you than to sit still.”</p><p>When Kirsi Piha turned seven, her father gave her Hannu Mäkelä’s book, Herra Huu, as a birthday gift. More than four decades later, Piha invited Mäkelä to exchange letters with her.<br>In the world of short and immediate small statements, a longer, thoughtful and dialogue-like exchange of ideas feels ever more valuable and rewarding.</p><p>The letters reflect on relationships and generations, our surrounding nature and human nature, art and the need to say something. What kind of world do we live in, what is our role in this time, how can we evolve as human beings and do what humans need to do – and what is that task?</p><p>Pimeän yli includes letters between Hannu Mäkelä and Kirsi Piha from the winter of 2019–2020. What emerges from these seemingly different life experiences are common interests, shared areas of concern, and gratitude. An open and open-minded discussion grows into a warm friendship.</p><p>In cooperation with the Kannelmäki Library and the Helsinki Adult Education Centre.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63689/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64444", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?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": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-115/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152206, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-23T12:13:33.879987Z", "last_modified_time": "2024-08-23T12:13:33.880002Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757177.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152206/?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": "2024-08-23T12:13:33.871753Z", "last_modified_time": "2024-12-20T01:14:15.402452Z", "date_published": null, "start_time": "2024-11-30T12:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.", "sv": "De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.", "en": "Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/27E5D4D8D813B8C4DE772DD775A3A637/Lasten_inklusiivinen_tanssitunti", "sv": "http://www.annantalo.fi/sv/evenemang/event/27E5D4D8D813B8C4DE772DD775A3A637/Inkluderande_danslektion_for_barn", "en": "http://www.annantalo.fi/en/events/event/27E5D4D8D813B8C4DE772DD775A3A637/Children_s_Inclusive_Dance_Class_" }, "name": { "fi": "Lasten inklusiivinen tanssitunti", "sv": "Inkluderande danslektion för barn", "en": "Children’s Inclusive Dance Class" }, "description": { "fi": "<p>Lasten inklusiiviset tanssitunnit tarjoavat lapsille ja heidän lähiaikuisilleen yhdessäoloa, liikkumisen riemua, mahdollisuuden tutustua uusiin samanerilaisiin ihmisiin.</p><p>Tunneilla leikitellään, tutkitaan ja improvisoidaan liikkeellä yhdessä ja kaikki omilla tavoillamme. Tunnit ovat ilmaisia ja avoimia kaikenikäisille lapsille, heidän sisaruksilleen ja heidän lähiaikuiselleen vammaan tai vammattomuuteen katsomatta.</p><p>Opetus kestää tunnin. Tila on esteetön.</p><p>Vapaa pääsy, ennakkoilmoittautuminen.</p><p>Ohjauskielet: suomi/englanti<br>Osallistujamäärä: max 18 (lasta ja aikuista yhdessä) <br>Tila: Tanssiluokka</p><p>Ilmoittaudu ennakkoon sähköpostitse: info@kaaoscompany.fi</p>", "sv": "<p>De inkluderande danslektionerna för barn erbjuder barn och deras nära vuxna samvaro, rörelseglädje och en möjlighet att lära känna nya lika- och oliksinnade människor.</p><p>På lektionerna leker, utforskar och improviserar vi genom rörelse, tillsammans och var och en på sitt sätt. Lektionerna är gratis och öppna för barn i alla åldrar, deras syskon och deras nära vuxna, oberoende av eventuella funktionsnedsättningar. Lektionen varar i en timme. Lokalen är tillgänglighetsanpassad. Fri entré, förhandsanmälning.</p><p>Antal deltagare: max 18 (barn och vuxna tillsammans)<br>Lokal: Dansklassrummet<br>Undervisningsspråk: Finska, engelska</p><p>Anmäl dig på förhand via e-post: info@kaaoscompany.fi</p>", "en": "<p>Children’s Inclusive Dance Class offer children and their adults togetherness, the joy of movement, and the opportunity to get to know new people of similar and different backgrounds.</p><p>During classes, we play, explore and improvise with movement together and in our own ways. The classes are open to all children, siblings and adults, regardless of disability or non-disability.</p><p>The lesson lasts one hour. <br>The space is accessible. <br>The lessons are free.</p><p>Languages: Finnish and English<br>Number of participants: max 18 (children and adults together)</p><p>Register in advance by email: info@kaaoscompany.fi</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64444/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64426", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/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": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152192, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-08-22T12:14:59.143968Z", "last_modified_time": "2024-08-22T12:14:59.143985Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_757170.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152192/?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": "2024-08-22T12:14:59.117977Z", "last_modified_time": "2024-12-20T01:14:15.298066Z", "date_published": null, "start_time": "2024-11-30T09:00:00Z", "end_time": "2024-11-30T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.", "sv": "På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.", "en": "At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2AE016E4A80345A6F74BBC9AE0783997/Annantalon_taidelauantai_Liikkuva_aani_tyopaja", "sv": "http://www.annantalo.fi/sv/evenemang/event/2AE016E4A80345A6F74BBC9AE0783997/Annegardens_konstlordag_Workshop_Ljud_i_rorelse_", "en": "http://www.annantalo.fi/en/events/event/2AE016E4A80345A6F74BBC9AE0783997/Annantalo_Art_Saturday_Moving_Sound_Workshop_" }, "name": { "fi": "Annantalon taidelauantai: Liikkuva ääni – työpaja", "sv": "Annegårdens konstlördag: Workshop Ljud i rörelse", "en": "Annantalo Art Saturday: Moving Sound Workshop" }, "description": { "fi": "<p>Annantalon taidelauantaissa koko perhe voi viettää yhteistä vapaa-aikaa taiteen parissa. Tarjolla on kaikille avointa non-stop työpajatoimintaa, jossa voi piipahtaa hetkisen tai viipyä pidempään.</p><p><b>Liikkuva ääni – työpaja</b><br> <br>Monet kertovat, että musiikki ja ääni saavat heidät liikkumaan. Mitä jos voisit sen sijaan muuttaa ääntä liikkeellä? Tervetuloa nauhoittamaan omia ääniäsi ja sen jälkeen muokkaamaan ja ohjaamaan niitä kehollasi. <br>Työpajassa puhutaan ruotsia, englantia ja suomea. Osallistua voi myös ilman ko. kieliä.</p><p>Työpajan ohjaa ruotsalainen säveltäjä Stefan Klaverdal.</p><p>Toteutusta on tukenut Suomalais-ruotsalainen kulttuurirahasto ja Ruotsin taideapurahakomitea.</p><p>Työpaja on osa Annantalon Äänen äärellä -näyttelyä, 28.9.2024 – su 2.2.2025. Näyttely järjestetään yhteistyössä taidejärjestö MUU ry:n kanssa. <br> <br>Osallistumiseen ei tarvita ennakkotaitoja eikä täydellistä suomen kielen taitoa. Annantalon taidelauantai on maksuton.<br>Tarjolla kuulosuojaimia ja muita aistiapuvälineitä. Lisäksi käytössä on erillinen hiljainen tila.</p><p>Lämpimästi tervetuloa Annantalolle lauantaisin!</p>", "sv": "<p>På Annegårdens konstlördag kan hela familjen att tillbringa sin lediga tid tillsammans i konstens tecken. Vi erbjuder non-stop workshopverksamhet som är öppen för alla, där du kan titta in en stund eller stanna längre.</p><p><b>Workshop Ljud i rörelse</b></p><p>Många säger att musik och ljud får dem att röra på sig. Men tänk om man i stället kan påverka ljud med sina rörelser?</p><p>Välkommen att banda in egna ljud och sedan modifiera och styra dem med kroppens rörelser. Workshoppens språk är svenska, engelska och finska. Det går också att delta även om du inte talar dessa språk.</p><p>Verkstaden leds av den svenska kompositören Stefan Klaverdal.</p><p>Projektet har fått stöd av Konstnärsnämnden och Kulturfonden för Sverige och Finland</p><p>Workshoppen ingår i utställningen Vid ljudet på Annegården 28.9.2024–2.2.2025. Utställningen ordnas i samarbete med konstföreningen MUU ry.</p><p>Inga förkunskaper och ingen anmälan krävs för att delta. Annegårdens konstlördag är avgiftsfri.<br>Workshopparnas språk varierar, men inga kunskaper i finska krävs för att delta. Hörselskydd och andra hjälpmedel finns tillgängliga för barn med särskilda behov. Det finns också ett separat tyst utrymme.</p><p>Varmt välkomna till Annegården på lördagar!</p>", "en": "<p>At Annantalo Art Saturday, the whole family can spend their free time with art. There are non-stop workshop activities open to everyone, where you can stop by for a while or stay longer.</p><p><b>Moving Sound Workshop</b></p><p>Many people say that music and sound get them to move. What if you could move to change the sound instead?</p><p>Join us and record your own voice, then edit and control it with your body. This workshop is held in Swedish, English and Finnish. You can also participate without knowing the languages in question.</p><p>The workshop is led by Swedish composer Stefan Klaverdal.</p><p>The project has been supported by the Finnish-Swedish Cultural Foundation and the Swedish Arts Grants Committee.</p><p>The workshop is part of the Annantalo Exploring Sound exhibition, which is held on 28 September 2024 – 2 February 2025. <br>The exhibition is organized in cooperation with Art Association MUU.</p><p>No advance skills or registration is required to participate. The Annantalo Art Saturday is free of charge.<br>The language of the workshops varies, Finnish language skills are not required to participate. Hearing protection and other aids are available for children with special needs. In addition, there is a separate quiet space.</p><p>A warm welcome to Annantalo on Saturday!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64426/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64297", "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: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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151898, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T19:14:19.640357Z", "last_modified_time": "2024-07-25T19:14:19.640375Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745836.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151898/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T19:14:19.591296Z", "last_modified_time": "2024-12-20T01:14:14.442901Z", "date_published": null, "start_time": "2024-11-28T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.", "sv": "Höstlöv som faller skildrar två ensamma människor (Alma Pöysti och Jussi Vatanen), som av en slump stöter på varandra i Helsingforsnatten, och deras försök att hitta sitt livs första, enda och sista kärlek.", "en": "Fallen leaves tells the story of two lonely people who meet each other by chance in the Helsinki night and try to find the first, only, and ultimate love of their lives." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/8379AE6C31A4A996A0C44F18D855A216/Yleison_suosikit_Kuolleet_lehdet_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/8379AE6C31A4A996A0C44F18D855A216/Hostlov_7_", "en": "http://www.malmitalo.fi/en/events/event/8379AE6C31A4A996A0C44F18D855A216/Fallen_leaves_7_" }, "name": { "fi": "Yleisön suosikit: Kuolleet lehdet (7) – Kino Helios", "sv": "Höstlöv (7) – Kino Helios", "en": "Fallen leaves (7) – Kino Helios" }, "description": { "fi": "<p>Kuolleet lehdet kertoo kahden yksinäisen, sattumalta Helsingin yössä toisensa kohtaavan ihmisen (Alma Pöysti ja Jussi Vatanen) yrityksestä löytää elämänsä ensimmäinen, ainoa ja viimeinen rakkaus.</p><p>Heidän tietään kohti tätä kunnioitettavaa päämäärää varjostavat miehen alkoholismi, kadonneet puhelinnumerot, tietämättömyys toistensa nimistä tai osoitteista ja elämän yleinen taipumus asettaa esteitä onneaan etsivien tielle. Tämä lempeä tragikomedia on jo kadonneeksi luultu neljäs osa Aki Kaurismäen työläistrilogiaan (Varjoja paratiisissa, Ariel ja Tulitikkutehtaan tyttö).</p><p>Kuolleet lehdet palkittiin toukokuussa Cannesin elokuvajuhlilla Prix du Jurylla eli tuomariston palkinnolla.</p><p>Kesto: 81 min<br>Ikäraja: 7<br>Vapaa pääsy!<br>Ensi-ilta 18.9.2023</p><p>Yleisön suosikit on Kino Helioksen uusi elokuvasarja, jossa nähdään Kino Helioksen aikaisempien kausien yleisömenestyselokuvia ilmaisnäytöksinä.</p>", "sv": "<p>Höstlöv som faller skildrar två ensamma människor (Alma Pöysti och Jussi Vatanen), som av en slump stöter på varandra i Helsingforsnatten, och deras försök att hitta sitt livs första, enda och sista kärlek.</p><p>Vägen mot det hedervärda målet skuggas av mannens alkoholism, försvunna telefonnummer, okunskap om namn och adresser samt livets allmänna tendens att lägga hinder i vägen för den som söker lyckan. Denna ömsinta tragikomedi är den fjärde delen – som man trodde var försvunnen – av Aki Kaurismäkis arbetartrilogi (Skuggor i paradiset, Ariel och Flickan från tändsticksfabriken).</p><p>Höstlöv som faller belönades med Prix du Jury på filmfestivalen i Cannes.</p>", "en": "<p>Fallen leaves tells the story of two lonely people who meet each other by chance in the Helsinki night and try to find the first, only, and ultimate love of their lives.</p><p>Their path towards this honourable goal is clouded by the man's alcoholism, lost phone numbers, not knowing each other's names or addresses, and life's general tendency to place obstacles in the way of those seeking their happiness.</p><p>This gentle tragicomedy, previously thought to be lost, is the fourth part of Aki Kaurismäki's working-class trilogy (Shadows in Paradise, Ariel, and The Match Factory Girl).</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64297/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64579", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:50/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p21812/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 153046, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-19T08:14:37.786576Z", "last_modified_time": "2024-11-19T08:14:37.786599Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758197.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153046/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-19T08:14:37.747266Z", "last_modified_time": "2024-12-20T01:14:14.254664Z", "date_published": null, "start_time": "2024-11-28", "end_time": "2024-12-21", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Näyttelyssä pohditaan paikan merkitystä maalaamiseen sekä näyttelytilan merkitystä näyttelylle.", "en": "The exhibition reflects on the importance of place for painting and the importance of the exhibition space for the exhibition." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/B62544F62F261B5C402A681B971D77C5/Katja_Ohrnberg", "sv": "http://www.malmitalo.fi/sv/evenemang/event/B62544F62F261B5C402A681B971D77C5/Katja_Ohrnberg", "en": "http://www.malmitalo.fi/en/events/event/B62544F62F261B5C402A681B971D77C5/Katja_Ohrnberg" }, "name": { "fi": "Katja Öhrnberg – Taiteilijaresidenssi", "sv": "Katja Öhrnberg", "en": "Katja Öhrnberg – Artist Residency" }, "description": { "fi": "<p>Näyttelyssä pohditaan paikan merkitystä maalaamiseen sekä näyttelytilan merkitystä näyttelylle.</p><p>Miten työskentely- ja näyttelytila vaikuttavat lopputulokseen? Taiteilijaresidenssiin tullessaan uuden paikan haltuun ottaminen muuttaa usein taiteilijan sisäisen maiseman maalaamisen ulkoisen maiseman maalaamiseksi. Esimerkiksi Villa Karon residenssissä Afrikan erilainen, voimakas valo rakennuksissa ja maisemassa houkutti maalaamaan niitä, tehden sitä kautta ympäristöä tutuksi. <br> <br>Malmitalon näyttelytila on mielenkiintoinen sen monenlaisten pintamateriaalien, kaarevan ja eri korkuisten seinien vuoksi. Öhrnberg koki haastavaksi ja innostavaksi tämän tilan ottamisen osaksi näyttelykokonaisuutta. Esimerkiksi gallerian korkean tilan hän huomioi neljämetrisellä muovimaalauksella ja abstraktissa akryylimaalauksessa näyttäytyy osittain sama rytmiikka kuin tilan ikkunan ruudutuksessa. Näyttely koostuu residensseissä ja erilaisissa työtiloissa valmistuneista teoksista ja työprosesseista kertovista valokuvista.</p><p>Residenssityöskentelyn lopputuloksiin vaikuttavat aina hyvinkin erilaiset olosuhteet. <br>Arabiemiirikunta, Liwa (2019, 2021), maalaaminen tapahtui konkreettisesti jalat hiekassa dyynien keskellä. Hiekka-aavikolla näkyi silloin tällöin vain pieni kamelilauma. Työskentelyyn oli helppo keskittyä. <br>Benin, Villa Karon stipendiaattina (2022) työskennellessä puolestaan työtilassa oli pahimmillaan 200 oppilaan disko. Serlachius residenssissä Mäntässä (2023) puutalon pienessä studiossa Öhrnbergin työskentely kääntyi aiemmista residenssi kokemuksista poiketen enemmän sisäänpäin ja hän teki pieniä abstrakteja maalauksia. <br> <br>Outokummun Vanhan kaivoksen residenssissä (2024) mielenkiintoiset tilat johdattivat teosideoihin. Nostokonehuoneen vanha ovi inspiroi tekemään uuden version Helene Schjerfbeckin maalauksesta Ovi. Kestämätön jäteyhteiskuntamme teeman mukaisesti se on tumman synkkä näkymä maailmaamme, lohduttomaan tulevaisuuteen. Millaisen maiseman haluamme oven takaa paljastuvan? Lähempää tarkasteltuna teos yllättää, kun hahmottuu teoksen materiaalina käytetyt kotitalousjätemuovit <br> <br>Eroavaisuuksista huolimatta residensseissä valmistuneet teokset voi nähdä paitsi värien, niin myös valon ja pimeyden välisenä leikkinä. Tavallaan ne ovat myös katseen suuntaamisen ja huomion kisailua. Valo ohjaa näkemistä, valon ja katseen suunta ovat jatkuvassa liikkeessä. <br> <br><b>Taustaa</b><br>Katja Öhrnberg on sitoutunut taiteeseen ja kehittänyt sitä kolmenkymmenen vuoden ajan valmistuttuaan taidekoulusta. Näyttelyitä on ollut niin kotimaassa kuin ulkomailla (22 yksityisnäyttelyä ja 99 ryhmänäyttelyä), lisäksi hän on organisoinut yhteisnäyttelyitä. Hän on aina halunnut korostaa taidenäkemyksensä riippumattomuutta ja työskennellessään luoda uusia näkökulmia ja houkutella katsoja visuaaliseen maailmaan, työskentelipä hän maalaustaiteen, kuvanveiston tai yhteisötaiteen parissa. <br> <br>Tervetuloa näyttelyn avajaisiin keskiviikkona 27.11. klo 17–19. Tarjolla pientä purtavaa.</p><p>Vapaa pääsy.</p>", "en": "<p>The exhibition reflects on the importance of place for painting and the importance of the exhibition space for the exhibition.</p><p>How do the working and exhibition space affect the final result? When entering an artist residency, taking over a new place often changes painting the artist's internal landscape to painting the external landscape. For example, in the Villa Karo residence, the different, strong light of Africa in the buildings and the landscape attracted me to paint them, thus making the environment familiar.</p><p>Malmitalo's exhibition space is interesting because of its various surface materials, curved walls and different heights. Öhrnberg found it challenging and exciting to make this space part of the exhibition. For example, he took into account the high space of the gallery with a four-meter plastic painting, and the abstract acrylic painting partially shows the same rhythmicity as in the checkering of the space's window. The exhibition consists of works completed in residencies and various workspaces and photos that tell about work processes.</p><p>The final results of residency work are always affected by very different circumstances. <br>United Arab Emirates, Liwa (2019, 2021), painting took place concretely with feet in the sand in the middle of the dunes. Only a small herd of camels could be seen in the sandy desert from time to time. It was easy to concentrate on working. On the other hand, when Ben was working as a Villa Karo scholarship holder (2022), the workspace had a disco with 200 students at its worst.</p><p>In the Serlachius residence in Mänttä (2023) in the small studio of the wooden house, Öhrnberg's work turned more inward, in contrast to previous Residenzsi experiences, and he made small abstract paintings.</p><p>In Outokumpu's Vanha kaivos residence (2024), the interesting spaces led to ideas for the work. The old door of the crane room inspired me to make a new version of Helene Schjerfbeck's painting The Door. In keeping with the theme of our unsustainable waste society, it is a darkly bleak view of our world, a bleak future. What kind of landscape do we want to be revealed behind the door? On closer inspection, the work is surprising when you see the household waste plastics used as the material of the work.</p><p>Despite the differences, the works completed in the residencies can be seen not only as a play between colors, but also between light and dark. In a way, they are also a competition for eye direction and attention. Light guides vision, the direction of light and gaze are in constant motion.</p><p><b>Background:</b><br>Katja Öhrnberg has been committed to art and developed it for thirty years after graduating from art school. There have been exhibitions both in Finland and abroad (22 solo exhibitions and 99 group exhibitions), and he has also organized joint exhibitions. He has always wanted to emphasize the independence of his artistic vision and, when working, to create new perspectives and attract the viewer to the visual world, whether he was working with painting, sculpture or community art.</p><p>Welcome to the gallery opening on Wednesday 27.11. from 17:00 to 19:00.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64579/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64196", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151707, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-12T13:13:35.433597Z", "last_modified_time": "2024-07-12T13:13:35.433610Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751740.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151707/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-12T13:13:35.416922Z", "last_modified_time": "2024-12-20T01:14:14.053911Z", "date_published": null, "start_time": "2024-11-27T16:00:00Z", "end_time": "2024-11-27T18:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?", "sv": "Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?", "en": "Would you like to learn Finnish by singing in Finnish? If so, please join us!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/B41C760B5ED8B5CB26CA968A4BFDA17B/Stoan_kuoro", "sv": "http://www.stoa.fi/sv/evenemang/event/B41C760B5ED8B5CB26CA968A4BFDA17B/Stoas_kor_", "en": "http://www.stoa.fi/en/events/event/B41C760B5ED8B5CB26CA968A4BFDA17B/Stoa_Choir_" }, "name": { "fi": "Stoan kuoro", "sv": "Stoas kör", "en": "Stoa Choir" }, "description": { "fi": "<p>Haluatko opetella laulamaan suomeksi, suomalaisia ja kansainvälisiä lauluja yhdessä muiden kanssa?</p><p>Tervetuloa mukaan kansainväliseen Stoan kuoroon, jossa voit laulaa ja oppia suomen kieltä, ääntämistä, uusia sanoja ja puhekielen sanontoja. Samalla voit nauttia musiikista, ilmaisusta ja liikkumisesta musiikin mukana. Tule, vaikka osaisit vain vähän suomea!</p><p>Ryhmää johtaa MuM, kuoronjohtaja-musiikinopettaja Johanna Lehtinen-Schnabel.</p><p>Kuoro harjoittelee Stoan musiikkisalissa keskiviikkoisin klo 18–19.30.</p><p>Lämpimästi tervetuloa!</p><p>Syksyn kuorokerrat: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Lisätiedot ja ilmoittautuminen: sanna.nuutinen@hel.fi</p>", "sv": "<p>Vill du lära dig sjunga finländska och internationella sånger på finska tillsammans med andra?</p><p>Välkommen med i Stoas internationella kör, där du kan lära dig sjunga och uttala finska, samt lära dig nya ord och uttryck. Kom med, även om du inte kan så mycket finska ännu! Gruppen leds av MuM, körledare-musiklärare Johanna Lehtinen-Schnabel.</p><p>Varmt välkommen!</p><p>På onsdagar kl. 18–19.30.</p><p>Datum: <br>11.9.<br>18.9.<br>25.9.<br>2.10.<br>9.10.<br>30.10.<br>6.11.<br>13.11.<br>27.11.</p><p>Fråga mer och registrera: sanna.nuutinen@hel.fi</p>", "en": "<p>Would you like to learn Finnish by singing in Finnish? If so, please join us!</p><p>We are a friendly group of Finnish-learners who sing together to improve our Finnish language skills. We are led by accomplished Finnish musician, singer, and choir leader, Johanna Lehtinen-Schnabel.</p><p>Rehearsals on Wednesdays 6–7.30pm at Stoa music hall.</p><p>Spring season: <br>Sept 11.9.<br>Sept 18.9.<br>Sept 25.9.<br>Oct 2.10.<br>Oct 9.10.<br>Oct 30.10.<br>Nov 6.11.<br>Nov 13.11.<br>Nov 27.11.</p><p>More info and registration: sanna.nuutinen@hel.fi</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64196/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64060", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:613/?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:p25966/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151794, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-22T15:13:31.886353Z", "last_modified_time": "2024-07-22T15:13:31.886371Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755411.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151794/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-22T15:13:31.867697Z", "last_modified_time": "2024-12-20T01:14:13.863157Z", "date_published": null, "start_time": "2024-11-27T15:00:00Z", "end_time": "2024-11-27T17:30:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!", "sv": "Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!", "en": "Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/006576E7E1958F2EC1FFB60AD6C8F967/Iltateella_Stoassa", "sv": "http://www.stoa.fi/sv/evenemang/event/006576E7E1958F2EC1FFB60AD6C8F967/Kvallste_pa_Stoa", "en": "http://www.stoa.fi/en/events/event/006576E7E1958F2EC1FFB60AD6C8F967/Evening_Tea_at_Stoa" }, "name": { "fi": "Iltateellä Stoassa – Taidetauko-työpajat", "sv": "Kvällste på Stoa – Konstpaus-workshoppar", "en": "Evening Tea at Stoa – Art break workshops" }, "description": { "fi": "<p>Tee arkeen luova tauko, ja istahda hetkeksi iltateelle Stoan ravintolaan!</p><p>Taidetauko-pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Ravintola Box Stoassa on osallistujille tarjolla iltateetä tai mehua.</p><p>Syksyn teemat:<br>Ke 25.9. – Huovutettu saippua <br>Ke 30.10. – Juhlivat värit <br>Ke 27.11. – Talven liekki</p><p>Ke 25.9. klo 17–19 Huovutettu saippua<br>Villan huovuttamisessa käytössä ovat kaikki aistit. Huovutettu saippua toimii pehmeänä pesusienenä.<br> <br>Ke 30.10. klo 17–19 Juhlivat värit <br>Stoan synttäreiden kunniaksi koristellaan kangaskasseja ja pieniä t-paitoja ruiskuemulsiolla. Tekniikka on värikäs ja hauska! Halutessasi voit tuoda oman paidan tai kankaan koristeltavaksesi.</p><p>Ke 27.11. klo 17–19.30 Talven liekki<br>Sydäntalvella tarvitaan valoa ja lämpöä. Työpajassa valetaan oma kynttilä. Pajaan mahtuu kerrallaan noin 15 henkilöä. Alle 10-vuotiaat aikuisten kanssa. Yksi kynttilä per osallistuja.<br> <br>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Ravintola Box Stoa<br>Kesto: 120 min per kerta, 27.11. 150 min<br>Pajojen ohjauskieli: suomi, ranska ja englanti <br>Vapaa pääsy. Ei ennakkoilmoittautumista. <br>Stoa tarjoaa osallistujille iltateetä.</p>", "sv": "<p>Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!</p><p>I Konstpaus-workshopparna berikas din vardag med lugnt konsthantverk som är lätt att lära sig. Restaurang Box Stoa bjuder deltagarna på kvällste eller saft.</p><p>Höstens teman:<br>Ons 25.9. – Filtad tvål <br>Ons 30.10. – Festliga färger <br>Ons 27.11. – Vinterns flamma</p><p>Ons 25.9. kl. 17–19 Filtad tvål<br>Att tova ull involverar alla sinnen. Den tovade tvålen fungerar som en mjuk tvättsvamp.<br> <br>Ons 30.10. kl. 17–19 Festliga färger <br>För att fira Stoas födelsedag dekorerar vi tygkassar och små t-skjortor med sprayemulsioner. Tekniken är färgglad och rolig! Om du vill kan du ta med dig en egen skjorta eller ett eget tyg att dekorera.</p><p>Ons 27.11. kl. 17–19.30 Vinterns flamma<br>Under midvintern behöver vi ljus och värme. I workshoppen stöper vi ett eget ljus. Cirka 15 personer kan delta samtidigt i workshoppen. Under 10-åringar i sällskap av en vuxen. Ett ljus per deltagare.<br> <br>Handledare: Chloé Mahy-Hulkko <br>Plats: Restaurang Box Stoa<br>Längd: 120 min per gång, 27.11. 150 min.<br>Workshopparna handleds på finska, franska och engelska <br>Fritt inträde. Ingen förhandsanmälan. <br>Stoa bjuder deltagarna på kvällste.</p>", "en": "<p>Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!</p><p>In art break workshops, you get to enrich your daily life with easy-to-acquire, unhurried craftsmanship. Restaurant Box Stoa provides participants evening tea or juice.</p><p>Autumn themes:<br>Wed 25 Sept – Felted Soap <br>Wed 30 Oct – Celebratory Colours <br>Wed 27 Nov – Winter Flame</p><p>Wed 25 Sept 5–7 pm Felted Soap<br>All the senses are used when creating wool felt. Felted soap works as a soft sponge.<br> <br>Wed 30 Oct 5–9 pm Celebratory Colours <br>We decorate fabric bags and small t-shirts with spray emulsion to celebrate Stoa’s birthday. It’s a colourful and fun technique! Bring your own shirt or fabric that you want to decorate.</p><p>Wed 27 Nov 5–7:30 pm Winter Flame<br>In midwinter, you need light and warmth. This workshop is for moulding your own candles. The workshop can accommodate about 15 participants at a time. Children under 10 years old must be accompanied by an adult. One candle per participant.<br> <br>Instructor: Chloé Mahy-Hulkko <br>Location: Restaurant Box Stoa<br>Duration: 120 min per session, 27 November session is 150 min<br>Workshop instruction language: Finnish, French and English <br>Admission is free. No advance registration. <br>Stoa provides evening tea for participants.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64060/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64310", "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:31/?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: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/kulke:751/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p14004/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p15875/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151947, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-29T13:13:49.747705Z", "last_modified_time": "2024-07-29T13:13:49.747718Z", "name": "", "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753053.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151947/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-29T13:13:49.732438Z", "last_modified_time": "2024-12-20T01:14:13.717041Z", "date_published": null, "start_time": "2024-11-27T13:00:00Z", "end_time": "2024-11-27T14:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tutkimme musiikkifestivaalien keskeistä roolia ja ajatusmaailmaa niiden järjestämisen taustalla. Mitkä ovat ne arvot ja tärkeät pointit, joita yleisölle tarjotaan?", "sv": "Vi utforskar musikfestivalernas avgörande roll och tankesätten bakom arrangerandet av dem. Vilka värderingar och viktiga punkter erbjuds publiken?", "en": "We will explore the crucial role of music festivals, and the way of thinking behind setting them up. What are the values and the important points offered to the audience?" }, "info_url": { "fi": "http://www.caisa.fi/fi/tapahtumat/event/4F7CB4E6950EC4407CE5EF2B989FC283/HOW_radio_Global_Club_Nights", "sv": "http://www.caisa.fi/sv/evenemang/event/4F7CB4E6950EC4407CE5EF2B989FC283/HOW_radio_Global_Club_Nights", "en": "http://www.caisa.fi/en/events/event/4F7CB4E6950EC4407CE5EF2B989FC283/HOW_radio_Global_Club_Nights" }, "name": { "fi": "HOW radio: Global Club Nights – Maailma kylässä -festivaali", "sv": "HOW radio: Global Club Nights – World Village Festival", "en": "HOW radio: Global Club Nights – World Village Festival" }, "description": { "fi": "<p>Tutkimme musiikkifestivaalien keskeistä roolia ja ajatusmaailmaa niiden järjestämisen taustalla. Mitkä ovat ne arvot ja tärkeät pointit, joita yleisölle tarjotaan?</p><p>Mitä musiikkialan ammattilaisten tulisi tiedostaa ollessaan yhteydessä festivaalien järjestäjiin? Tutustutaan yhdessä Maailma Kylässä -festivaalin järjestäjien pitkään ja arvokkaaseen työhön sekä kuunnellaan heidän kokemuksiaan ja asiantuntemustaan.</p><p>Maailma Kylässä -festivaali on Suomen johtava globaalia toimintaa esiin tuova tapahtuma koko perheelle, maksuton kulttuurifestivaali, ruokakarnevaali ja kestävän kehityksen messut. Festivaali nostaa esiin maailmanlaajuisia haasteita ja ratkaisuja, lisää ihmisten ymmärrystä ja tarjoaa konkreettisia keinoja toimia muutoksen puolesta. Maailma Kylässä tuo ihmisiä yhteen, sillä vain yhdessä voimme muuttaa maailmaa. Festivaalin keskeisiä arvoja ovat moninaisuus, inspiraatio, tasa-arvo, vastuullisuus ja yhteisöllisyys.</p><p>Maailma Kylässä -festivaalia on järjestetty vuodesta 1995 lähtien, ja se kokoaa vuosittain noin 50 000 ihmistä. Pääjärjestäjänä toimii Fingo, joka on noin 270 kehitysyhteistyöjärjestön kattojärjestö.</p><p><b>HOW-radio</b><br>Helsinki Open Waves -radio, Caisa ja Sibelius-Akatemian Global Music -koulutusohjelma järjestävät yhdessä radiokeskustelujen sarjan otsikolla ”HOW-radio: Global Club Nights”. Siinä käsitellään suomalaista musiikkiteollisuutta kulttuurienvälisen yhteistyön näkökulmasta.</p><p>Keskusteluissa huomioidaan sekä muusikoiden että yritysten näkökulma ja käsitellään monimuotoisuutta neutraalissa ja turvallisessa tilassa.</p><p>Keskustelut käydään englanniksi.</p><p>Global Club Nights -liveklubitapahtumia järjestetään Caisassa kerran kuukaudessa! Lue lisää Caisan tapahtumakalenterista.</p><p>Helsinki Open Waves (HOW) on monikielinen, voittoa tavoittelematon ja yhteisölähtöinen foorumi, jonka tarkoituksena on harjoittaa ylipaikallista radio- ja äänilähetystoimintaa. Lue lisää: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "sv": "<p>Vi utforskar musikfestivalernas avgörande roll och tankesätten bakom arrangerandet av dem. Vilka värderingar och viktiga punkter erbjuds publiken?</p><p>Vad borde professionella musiker vara medvetna om i kontakten med festivalarrangörer? Tillsammans utforskar vi det långa och värdefulla arbetet som arrangörerna bakom World Village Festival i Finland gör och lyssnar till deras erfarenheter och expertis.</p><p>World Village Festival är Finlands ledande evenemang för globala åtgärder för hela familjen – en avgiftsfri kulturfestival, matkavalkad och handelsmässa för hållbar utveckling. World Village lyfter fram globala utmaningar och lösningar, ökar människors medvetenhet och tillhandahåller konkreta åtgärder för att skapa förändring. World Village förenar människor, eftersom vi endast kan förändra världen tillsammans. Festivalens kärnvärden är mångfald, inspiration, jämställdhet, ansvar och gemenskap.</p><p>World Village Festival har arrangerats sedan 1995 och samlar kring 50 000 besökare varje år. Huvudarrangör är Finländska utvecklingsföreningar rf Fingo, som är en paraplyorganisation för cirka 270 utvecklingsorganisationer.<br>Helsinki Open Waves är en ny plattform (radio) öppen för alla språk i Helsingfors. Du kan skicka ditt eget förslag med Open call stil.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa och Sibelius-Akademins fakultet för världsmusik presenterar HOW radio: Global Club Nights, en serie diskussioner i radio med fokus på musikindustrin i Finland sett ur perspektivet interkulturella samarbeten.</p><p>Diskussionerna tar hänsyn till både musikerns roll och den företagsmässiga sidan, och fokuserar på mångfald i ett neutralt, säkert utrymme.</p><p>Diskussionerna hålls på engelska.</p><p>Klubbkvällarna Global Club Nights ordnas på Caisa varje månad! Läs mer i Caisas evenemangskalender.</p><p>Helsinki Open Waves (HOW) är en flerspråkig, frivillig community-driven plattform som för samman ett nätverk av translokal radio- och ljudverksamhet. Läs mer på <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>", "en": "<p>We will explore the crucial role of music festivals, and the way of thinking behind setting them up. What are the values and the important points offered to the audience?</p><p>What should music professionals be aware of when being in contact with Festival organizers? Lets explore together the long and valuable work of the organizers of the World Village Festival in Finland and listen to their experience and expertise.</p><p>World Village Festival is Finland’s leading event for global action for the whole family, an admission free cultural festival, a food carnival and a trade fair for sustainable development. World Village raises global challenges and solutions, increases people’s understanding and provides concrete ways to take action to create change. World Village brings people together, because only together we can change the world. Festival’s core values are diversity, inspiration, equality, responsibility and communality.</p><p>World Village Festival has been organized since 1995 and gathers around 50 000 people yearly. The main organizer is Finnish Development NGOs Fingo, which is an umbrella organization for approximately 270 development organizations.</p><p><b>HOW radio</b><br>Helsinki Open Waves radio, Caisa and the Global Music Department of Sibelius Academy present HOW radio: Global Club Nights, a radio discussion series focusing on the music industry in Finland from the perspective on intercultural collaboration.</p><p>The discussions take into consideration both the part of the musician and the business side, focusing on diversity in a neutral, safe space.</p><p>The language of discussion is English.</p><p>Global Club Nights live club events are held in Caisa monthly! Read more on Caisa’s event calendar.</p><p>Helsinki Open Waves (HOW) is a translingual, non-profit, community-driven platform that encapsulates a network of trans-local radio and audio practices. Read more here: <u><a href=\"https://www.helsinkiopenwaves.com/\">www.helsinkiopenwaves.com</a></u></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64310/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64524", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:205/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:29/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152307, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-05T11:14:01.430193Z", "last_modified_time": "2024-09-05T11:14:01.430211Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749845.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152307/?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": "2024-09-05T11:14:01.414982Z", "last_modified_time": "2024-12-20T01:14:13.625147Z", "date_published": null, "start_time": "2024-11-27T08:00:00Z", "end_time": "2024-11-27T10:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.", "sv": "Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.", "en": "Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9047CD370CFCFED035DD98435BDE3E13/Naperokino", "sv": "http://www.annantalo.fi/sv/evenemang/event/9047CD370CFCFED035DD98435BDE3E13/Knattebion", "en": "http://www.annantalo.fi/en/events/event/9047CD370CFCFED035DD98435BDE3E13/Toddler_cinema" }, "name": { "fi": "Naperokino", "sv": "Knattebion", "en": "Toddler cinema" }, "description": { "fi": "<p>Naperokino on 0–3-vuotiaiden oma elokuvateatteri! Naperokino esittää kotimaisia ja ulkomaisia lasten animaatioita, joita voi tulla katsomaan vaikka vain hetkeksi kerrallaan.</p><p>Rento, mukava esityspaikka ja -tilanne mahdollistavat ruuan lämmittämisen, syöttämisen/imettämisen sekä lapsentahtisen tutustumisen elokuvissa käymiseen. Vaipanvaihtopiste ja wc-tilat löytyvät aivan nurkan takaa.</p><p>Naperokinossa esitetään lapsille laadukkaita elokuvia ja totutellaan heitä vähitellen katsomaan elokuvateattereissa esitettäviä pitkiä lastenelokuvia. Kahden tunnin näytöksen ensimmäinen puolikas koostuu sanattomista animaatioista, ja toisella tunnilla mukaan tulee puhuttuja suosikkeja. Elokuvien ohessa Naperokino toimii kohtaamispaikkana pienille lapsille ja heidän aikuisilleen.</p><p>Naperokino on suunnattu kotiäideille ja -isille, isovanhemmille ja perhepäivähoitajille. Päiväkoteja emme valitettavasti voi ottaa mukaan tilojen pienen koon takia.</p><p>Ovella lapsia on tervehtimässä Pikku-Myyrä. Isoa Myyrää pääsee tapaamaan syyslomaviikolla ke 16.10. ja Lapsen oikeuksien päivänä ke 20.11.</p><p>Naperokinon näytöksillä on joka viikko vaihtuva teema.</p><p>Ikäsuositus: 0–3-vuotiaille vanhempiensa kanssa<br>Kieli: suomi<br>Maksuton</p><p>Naperokinon teemat syksyllä 2024:</p><p>Ke 4.9.2024 Naperokino: Luonto ja eläimet<br>Ke 11.9.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 18.9.2024 Naperokino: seikkailu ja matka<br>Ke 25.9.2024 Naperokino: huolenpito ja rakkaus</p><p>Ke 2.10.2024 Naperokino: rohkeus ja auttaminen<br>Ke 9.10.2024 Naperokino: ystävät ja perhe<br>Ke 16.10.2024 Naperokino: luovuus ja taiteet<br>Ke 23.10.2024 Naperokino: luonto ja eläimet<br>Ke 30.10.2024 Naperokino: mielikuvitus</p><p>Ke 6.11.2024 Naperokino: yhteiskunta ja kaupunki<br>Ke 13.11.2024 Naperokino: seikkailu ja matka<br>Ke 20.11.2024 Naperokino: huolenpito ja rakkaus<br>Ke 27.11.2024 Naperokino: rohkeus ja auttaminen</p><p>Ke 4.12.2024 Naperokino: ystävät ja perhe<br>Ke 11.12.2024 Naperokino: luovuus ja taiteet<br>Ke 18.12.2024 Naperokino: luonto ja eläimet</p>", "sv": "<p>Knattebion är en biograf för 0–3-åringar! Knattebion visar inhemska och utländska animerade filmer för barn, som man kan komma och se på även för en liten stund i taget.</p><p>Den avslappnade, bekväma lokalen och situationen gör det möjligt att värma mat, mata/amma och introducera barnen till biografen i deras egen takt. Blöjbytesstation och toaletter finns precis runt hörnet.</p><p>Knattebion visar barnen filmer av hög kvalitet och vänjer dem gradvis vid att titta på långa barnfilmer på biografer. Den första halvan av visningen som varar två timmar består av animerade filmer utan tal och den andra halvan av favoritfilmer med tal. Vid sidan av filmerna är Knattebion en mötesplats för små barn och deras vuxna.</p><p>Knattebion är avsedd för hemmamammor och -pappor, far- och morföräldrar och familjedagvårdare. Vi kan tyvärr inte ta med daghemsgrupper på grund av de små utrymmena.</p><p>Barnen hälsas välkomna vid dörren av Lilla Mullvaden. Du kan träffa Stora Mullvaden under höstlovsveckan ons 16.10. och på Barnrättsdagen ons 20.11.</p><p>Temat för Knattebions föreställningar varierar varje vecka.</p><p>Åldersrekommendation: 0–3-åringar i sällskap med sina föräldrar<br>Språk: finska<br>Fritt inträde</p><p>Teman för Knattebion hösten 2024:</p><p>Ons 4.9.2024 Knattebion: Natur och djur<br>Ons 11.9.2024 Knattebion: samhälle och stad<br>Ons 18.9.2024 Knattebion: äventyr och resor<br>Ons 25.9.2024 Knattebion: omsorg och kärlek</p><p>Ons 2.10.2024 Knattebion: mod och att hjälpa andra<br>Ons 9.10.2024 Knattebion: vänner och familj<br>Ons 16.10.2024 Knattebion: kreativitet och konst<br>Ons 23.10.2024 Knattebion: natur och djur<br>Ons 30.10.2024 Knattebion: fantasi</p><p>Ons 6.11.2024 Knattebion: samhälle och stad<br>Ons 13.11.2024 Knattebion: äventyr och resor<br>Ons 20.11.2024 Knattebion: omsorg och kärlek<br>Ons 27.11.2024 Knattebion: mod och att hjälpa andra</p><p>Ons 4.12.2024 Knattebion: vänner och familj<br>Ons 11.12.2024 Knattebion: kreativitet och konst<br>Ons 18.12.2024 Knattebion: natur och djur</p>", "en": "<p>Toddler cinema is for 0-3 year olds! Toddler cinema presents Finnish and international children’s animations. You can come watch on your schedule, even if only for a little while.</p><p>A relaxed, comfortable venue and setting allows you to heat up food, feed or breastfeed, and introduce your child to cinema at their own pace. A diaper change station and toilet facilities can be found just around the corner.</p><p>Toddler cinema presents high-quality films for children and gradually get them used to watching feature-length children’s films in cinemas. The first half of the two-hour screening will focus on non-verbal animations, and the second hour will feature favourites with spoken dialogue. Alongside the films, the Toddler Cinema serves as a meeting place for small children and their adults.</p><p>Toddler Cinema is aimed at stay-at-home parents, grandparents and childminders. Unfortunately, we cannot accommodate day-care centres due to the small size of our premises.</p><p>Little Mole will greet the children at the door. Big Mole will be available to meet on Wednesday, 16 October during the autumn holiday week as well as on Children's Day, Wednesday, 20 November.</p><p>The Toddler Cinema screenings have a different theme each week.</p><p>Age recommendation: For 0–3-year-olds with parents<br>Language: Finnish<br>Free of charge</p><p>Toddler Cinema themes for autumn 2024:</p><p>Wed 04 Sept 2024 Toddler Cinema: Nature and Animals<br>Wed 11 Sept 2024 Toddler Cinema: Society and the City<br>Wed 18 Sept 2024 Toddler Cinema: Adventure and Travel<br>Wed 25 Sept 2024 Toddler Cinema: Care and Love</p><p>Wed 2 Oct 2024 Toddler Cinema: Courage and Helping Others<br>Wed 9 Oct 2024 Toddler Cinema: Friends and Family<br>Wed 16 Oct 2024 Toddler Cinema: Creativity and the Arts<br>Wed 23 Oct 2024 Toddler Cinema: Nature and Animals<br>Wed 30 Oct 2024 Toddler Cinema: The Imagination</p><p>Wed 06 Nov 2024 Toddler Cinema: Society and the City<br>Wed 13 Nov 2024 Toddler Cinema: Adventure and Travel<br>Wed 20 Nov 2024 Toddler Cinema: Care and Love<br>Wed 27 Nov 2024 Toddler Cinema: Courage and Helping Others</p><p>Wed 04 Dec 2024 Toddler Cinema: Friends and Family<br>Wed 11 Dec 2024 Toddler Cinema: Creativity and the Arts<br>Wed 18 Dec 2024 Toddler Cinema: Nature and Animals</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64524/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64295", "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: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: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:p1235/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16919/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151896, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-25T18:15:12.281422Z", "last_modified_time": "2024-07-25T18:15:12.281436Z", "name": "", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745844.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151896/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-25T18:15:12.251136Z", "last_modified_time": "2024-12-20T01:14:13.430116Z", "date_published": null, "start_time": "2024-11-26T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Elokuva johdattaa näkemään 1900-luvun alkuvuosikymmenten suomalaisten nationalistisen kasvatuksen ja lapsiin asetetut roolimallit, joita valtiovalta ja auktoriteetit ohjailivat.", "sv": "Filmen ger en inblick i finländarnas nationalistiska uppfostran under 1900-talets första decennier och de rollmodeller som staten och myndigheterna pådyvlade barnen.", "en": "This film leads the viewers to see the nationalist upbringing of Finns in the early decades of the 20th century and the role models placed on children, which were guided by the state and authorities." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/133E122A26E46000B444AB80A58F0ECF/Doc_Helios_Sodan_ja_rauhan_lapset_7_", "sv": "http://www.malmitalo.fi/sv/evenemang/event/133E122A26E46000B444AB80A58F0ECF/Doc_Helios_Sodan_ja_rauhan_lapset_Krigets_och_fredens_barn_7_", "en": "http://www.malmitalo.fi/en/events/event/133E122A26E46000B444AB80A58F0ECF/Doc_Helios_Sodan_ja_rauhan_lapset_Children_of_War_and_Peace_7_" }, "name": { "fi": "Doc Helios: Sodan ja rauhan lapset (7) – Kino Helios", "sv": "Doc Helios: Sodan ja rauhan lapset (Krigets och fredens barn) (7) – Kino Helios", "en": "Doc Helios: Sodan ja rauhan lapset (Children of War and Peace, 7) – Kino Helios" }, "description": { "fi": "<p>Elokuva johdattaa näkemään 1900-luvun alkuvuosikymmenten suomalaisten nationalistisen kasvatuksen ja lapsiin asetetut roolimallit, joita valtiovalta ja auktoriteetit ohjailivat.</p><p>Sodan ja rauhan lapset rakentuu arkistomateriaalille, elokuvien, valokuvien, radio-ohjelmien, kirjojen, lehtien ja musiikin propagandistiselle aineistolle sekä lasten ja nuorten omille päiväkirjamerkinnöille.</p><p>Isänmaan tarpeita korostavia puheita esittävät mm. presidentti Risto Ryti, kansanedustaja, pastori Elias Simojoki, kansanrunouden tutkija Elsa Enäjärvi-Haavio sekä tietysti marsalkka Mannerheim.</p><p>Kasvatus, koulutus, vapaa-ajan järjestötoiminta, urheiluseurat, partio, poika- ja tyttötoiminta tähtäsivät kaikki sotilaalliseen toimintakykyyn, kun sen aika tulee. Lapsilta ja nuorilta odotettiin kuuliaisuutta, uskollisuutta ja rehellisyyttä. Omat tarpeet ja tunteet tuli sivuuttaa, kovienkaan koettelemusten edessä ei purskahdettu itkuun.</p><p>Kesto: 65 min<br>Ikäraja: 7<br>Vapaa pääsy!<br>Ensi-ilta 22.3.2024</p><p>Doc Helios on Kino Helioksen uusi ilmaisnäytössarja, jossa nähdään tuoreimpia ja ajankohtaisimpia dokumentteja eri aiheista.</p>", "sv": "<p>Filmen ger en inblick i finländarnas nationalistiska uppfostran under 1900-talets första decennier och de rollmodeller som staten och myndigheterna pådyvlade barnen.</p><p>Sodan ja rauhan lapset bygger på arkivmaterial, propagandistiskt material från filmer, fotografier, radioprogram, böcker, tidningar och musik samt barns och ungdomars egna dagboksanteckningar.</p><p>Tal som lyfter fram fosterlandets behov hålls av bland annat president Risto Ryti, riksdagsledamot och pastor Elias Simojoki, folkdiktsforskaren Elsa Enäjärvi-Haavio och naturligtvis marskalk Mannerheim.</p><p>Fostran, utbildning, fritidens organisationsaktiviteter, idrottsföreningar, scouterna, pojk- och flickverksamheten syftade på att alla skulle ha militär förmåga när tiden var inne. Barnen och de unga förväntades vara lydiga, lojala och ärliga. De egna behoven och känslorna skulle sättas åt sidan, och inte ens när det var svårt brast man ut i gråt.</p>", "en": "<p>This film leads the viewers to see the nationalist upbringing of Finns in the early decades of the 20th century and the role models placed on children, which were guided by the state and authorities.</p><p>The Sodan ja rauhan lapset is built from archive material, propaganda material from films, photographs, radio programmes, books, magazines and music, as well as the diary entries of children and young people.</p><p>Speeches emphasising the needs of the fatherland are given by, for example, president Risto Ryti, MP and pastor Elias Simojoki, folk poetry researcher Elsa Enäjärvi-Haavio and, of course, Marshal Mannerheim.</p><p>Education, training, leisure association activities, sports clubs, scouts, boy and girl activities – all aimed at military capability when the time would eventually come. Children and young people were expected to be obedient, loyal and honest. They had to put aside their own needs and feelings, not crying even in the face of difficult trials.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64295/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64622", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152609, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-09-25T10:15:39.722950Z", "last_modified_time": "2024-09-25T10:15:39.722966Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_758435.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152609/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-09-25T10:15:39.697852Z", "last_modified_time": "2024-12-20T01:14:13.250778Z", "date_published": null, "start_time": "2024-11-25T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/79D1126BBA5D6F522186C81C30A88A8B/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/79D1126BBA5D6F522186C81C30A88A8B/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/79D1126BBA5D6F522186C81C30A88A8B/Musical_Art_Adventure" }, "name": { "fi": "Musiikillinen taideseikkailu – 1–2-vuotiaille", "sv": "Musikaliskt konstäventyr – för 1–2-åringar", "en": "Musical Art Adventure – for 1–2-year-olds" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Tärkeänä toiminnan keskiössä ovat leikki ja taiteen kokeminen: musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Ikäryhmä: 1–2-vuotiaat <br>Kieli: suomi<br>Ryhmässä on noin 12 osallistujaa kerralla, 8 lasta ja 8 aikuista. Tuokion pituus noin 30 min.</p><p>Varaa yksi paikka per lapsi+aikuinen.</p><p>Ma 30.9.klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari1 <br>Ma 14.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari2 <br>Ma 28.10. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari3<br>Ma 11.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari4<br>Ma 25.11. klo 11, ilmoittaudu tästä https://link.webropol.com/ep/muskari5</p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 1–2-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 8 barn och 8 vuxna.</p><p>Anmälningslänkar:<br>Må 30.9, anmäl dig här: https://link.webropol.com/ep/muskari1 <br>Må 14.10, anmäl dig här: https://link.webropol.com/ep/muskari2 <br>Må 28.10, anmäl dig här: https://link.webropol.com/ep/muskari3<br>Må 11.11, anmäl dig här: https://link.webropol.com/ep/muskari4<br>Må 25.11, anmäl dig här: https://link.webropol.com/ep/muskari5</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Session length approx. 30 min <br>Age group: Ages 1–2<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p>Registration links:<br>Mon 30.9. https://link.webropol.com/ep/muskari1</p><p>Mon 14.10. https://link.webropol.com/ep/muskari2</p><p>Mon 28.10. https://link.webropol.com/ep/muskari3</p><p>Mon 11.11. https://link.webropol.com/ep/muskari4</p><p>Mon 25.11. https://link.webropol.com/ep/muskari5</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64622/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63435", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151573, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T15:13:45.521832Z", "last_modified_time": "2024-06-27T15:13:45.521847Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749901.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151573/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T15:13:45.497360Z", "last_modified_time": "2024-12-20T01:14:13.166049Z", "date_published": null, "start_time": "2024-11-25T08:15:00Z", "end_time": "2024-11-25T08:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/6E140A01C056D9653C76485B0D6FE23F/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/6E140A01C056D9653C76485B0D6FE23F/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/6E140A01C056D9653C76485B0D6FE23F/Musical_Art_Adventure" }, "name": { "fi": "Musiikillinen taideseikkailu – vauvoille", "sv": "Musikaliskt konstäventyr – för bebisar", "en": "Musical Art Adventure – for babies" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta. Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 30 min <br>Ikäryhmä: 3–12 kk<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä on noin 12 osallistujaa, 6 lasta ja 6 aikuista.</p><p>Varaa yksi paikka per lapsi + aikuinen.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama. Konstäventyren ordnas två måndagar i månaden.</p><p>Sessionens längd är ca 30 min <br>Åldersgrupp: 3–12 mån.<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har ca 12 deltagare, 6 barn och 6 vuxna.<br>Boka en plats per barn + vuxen.</p><p><b>Anmälningslänkar:</b></p><p><b>Mån 2 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">anmäl dig här</u></a></p><p><b>Mån 19 september 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">anmäl dig här</u></a></p><p><b>Mån 30 september 2024 kl 10.15–10.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">anmäl dig här</u></a></p><p><b>Mån 14 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">anmäl dig här</u></a></p><p><b>Mån 28 oktober 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">anmäl dig här</u></a></p><p><b>Mån 11 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">anmäl dig här</u></a></p><p><b>Mån 25 november 2024 kl 10.15–10.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">anmäl dig här</u></a></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: https://link.webropol.com/s/Taideseikkailunjono</p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 30 min <br>Age group: 3–12 months<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p>Mon 2 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/35C37AA880DA7CDE<br>\">Register here</u></a></p><p>Mon 16 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/90E5F1E9090E8513\">Register here</u></a></p><p>Mon 30 September at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B21532D4E52831E0\">Register here</u></a></p><p>Mon 14 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/B24D7C03E5372B53<br>\">Register here</u></a></p><p>Mon 28 October at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/4A058F13AB1237A0<br> \">Register here</u></a></p><p>Mon 11 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/D9C86698E3D648E2\">Register here</u></a></p><p>Mon 25 November at 10:15 am to 10:45 am<br><u><a href=\"https://link.webropolsurveys.com/EP/1202B0C4CA650569<br>\">Register her</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63435/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63428", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke: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:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151565, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-27T14:13:42.955159Z", "last_modified_time": "2024-06-27T14:13:42.955175Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749887.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151565/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-27T14:13:42.929256Z", "last_modified_time": "2024-12-20T01:14:13.077723Z", "date_published": null, "start_time": "2024-11-25T07:00:00Z", "end_time": "2024-11-25T07:45:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.", "sv": "Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.", "en": "We explore and interpret the world through imagination, music and other arts." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/4C3FA90A4D9BB6064A538B3F3FB9D235/Musiikillinen_taideseikkailu", "sv": "http://www.annantalo.fi/sv/evenemang/event/4C3FA90A4D9BB6064A538B3F3FB9D235/Musikaliskt_konstaventyr", "en": "http://www.annantalo.fi/en/events/event/4C3FA90A4D9BB6064A538B3F3FB9D235/Musical_Art_Adventure" }, "name": { "fi": "Musiikillinen taideseikkailu – 3–5-vuotiaille", "sv": "Musikaliskt konstäventyr – för 3–5-åringar", "en": "Musical Art Adventure – for 3–5-year-olds" }, "description": { "fi": "<p>Tutustumme ja tutkimme maailmaa mielikuvituksen, musiikin ja muiden taideaineiden keinoin.</p><p>Lapsi osallistuu tuokioihin vanhemman tai muun tutun aikuisen kanssa. Toiminnan keskiössä ovat leikki ja taiteen kokeminen musiikin, tanssin ja draaman kautta.</p><p>Taideseikkailut järjestetään kahtena maanantaina kuussa.</p><p>Tuokion pituus noin 45 min <br>Ikäryhmä: 3–5-vuotiaat<br>Kieli: suomi<br>Maksuton</p><p>Ryhmässä noin 12 osallistujaa kerralla, 6 lasta ja 6 aikuista.</p><p><b>Ilmoittautumislinkit:</b></p><p><b>ma 2.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 16.9.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 30.9.2024 klo 9–9.45 </b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 14.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 28.10.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 11.11.2024 klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">ilmoittaudu tästä mukaan</u></a></p><p><b>ma 25.11. klo 9–9.45</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">ilmoittaudu tästä mukaan</u></a></p><p>Jos musiikillisen taideseikkailun ilmoittautuminen on täynnä, voit ilmoittautua jonoon.</p><p><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">Ilmoittaudu jonoon</u></a></p>", "sv": "<p>Vi utforskar och undersöker världen med hjälp av fantasi, musik och andra konstarter.</p><p>Barnet deltar tillsammans med en förälder eller annan bekant vuxen. Verksamhetens fokus är lek och att uppleva konst genom musik, dans och drama.</p><p>Konstäventyren ordnas två måndagar i månaden.<br>Sessionens längd är ca 45 min <br>Åldersgrupp: 3–5-åringar<br>Språk: finska<br>Fritt inträde</p><p>Gruppen har cirka 12 deltagare i taget, 6 barn och 6 vuxna.</p><p><b>Anmälningslänkar:</b><br>Mån 2 september, anmäl dig här: <u>https://link.webropol.com/ep/Musiikillinentaideseikkailu1</u><br>Mån 19 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/698DC8FF0E0DF334</u><br>Mån 30 september, anmäl dig här: <u>https://link.webropolsurveys.com/EP/391AFEC18D9C9840</u><br>Mån 14 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/0170408FEA72C33A</u><br>Mån 28 oktober, anmäl dig här: <u>https://link.webropolsurveys.com/EP/F00843A72BA8396A</u><br>Mån 11 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/D2F49BEB81810254</u><br>Mån 25 november, anmäl dig här: <u>https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE</u></p><p>Om det musikaliska konstäventyret är fullt kan du anmäla dig till kön via denna länk: <u>https://link.webropol.com/s/Taideseikkailunjono</u></p>", "en": "<p>We explore and interpret the world through imagination, music and other arts.</p><p>Children attend the sessions with their parent or other close adult. The focus of the activities is on playing and experiencing art through music, dance and drama.</p><p>Art adventures take place on two Mondays per month.<br>Session length approx. 45 min <br>Age group: Ages 3–5<br>Language: Finnish<br>Free of charge</p><p>12 participants per group: 6 children and 6 adults.</p><p><b>Registration links:</b></p><p><b>Mon 2 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropol.com/ep/Musiikillinentaideseikkailu1\">Register here</u></a></p><p><b>Mon 16 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/698DC8FF0E0DF334\">Register here </u></a></p><p><b>Mon 30 September at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/391AFEC18D9C9840\">Register here</u></a></p><p><b>Mon 14 October at 9 am to 9:45 am</b> <br><u><a href=\"https://link.webropolsurveys.com/EP/0170408FEA72C33A\">Register here</u></a></p><p><b>Mon 28 October at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/F00843A72BA8396A\">Register here</u></a></p><p><b>Mon 11 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/D2F49BEB81810254\">Register here</u></a></p><p><b>Mon 25 November at 9 am to 9:45 am</b><br><u><a href=\"https://link.webropolsurveys.com/EP/BE55FA479E5EA8FE\">Register here</u></a></p><p>If the registration for a Musical Art Adventure is full, <br><u><a href=\"https://link.webropol.com/s/Taideseikkailunjono\">You can enter a queque via this link</u></a></p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63428/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64897", "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:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?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:p39924/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 152952, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-11-05T13:14:02.750014Z", "last_modified_time": "2024-11-05T13:14:02.750032Z", "name": "", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761439.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152952/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-11-05T13:14:02.719351Z", "last_modified_time": "2024-12-20T01:14:11.960524Z", "date_published": null, "start_time": "2024-11-23T12:00:00Z", "end_time": "2024-11-23T15:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "ru": "Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!" }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/618D96D8625D38B0004E99425F10DA10/Venajankielinen_korutyopaja", "en": "http://www.stoa.fi/en/events/event/618D96D8625D38B0004E99425F10DA10/Russian-language_jewelry_workshop" }, "name": { "fi": "Venäjänkielinen korutyöpaja", "en": "Russian-language jewelry workshop" }, "description": { "fi": "<p>Tervetuloa luovaan koruvalmistusworkshopiin Stoan kulttuurikeskukseen!<br> <br>Kutsumme sinut oppimaan tekemään yksinkertaisen mutta ainutlaatuisen choker-kaulakorun käyttäen luonnonkiviä, erilaisia helmiä ja korunosia. Yhdessä luomme korun, joka heijastaa persoonallisuuttasi ja tyyliäsi. Tämä on upea tilaisuus kehittää luovuutta, rentoutua ja tavata uusia ihmisiä! Työpaja on venäjänkielinen.<br> <br>Työpajaa järjestetään kolmena eri päivänä. Voit ilmoittautua yhdelle seuraavista päivistä:<br>Su 10.11, klo 12:00–15:00<br>Ti 12.11, klo 12:00–15:00<br>La 23.11, klo 14:00–17:00<br>Työpaja on maksuton, ja osallistujamäärä on rajoitettu 10 henkilöön per työpaja.<br> <br>Ilmoittautuminen sähköpostitse – ilmoitathan samalla, mihin päivään haluat osallistua: maria.bolshedonova@gmail.com.<br> <br>Työpajan vetäjästä:<br>Maria Bolshedonova on helsinkiläinen suunnittelija, jolla on laaja kokemus tekstiili- ja korusuunnittelusta. Hän järjestää luovia työpajoja ja kehittää omaa brändiään, Wild Fern Design.</p>", "ru": "<p>Добро пожаловать на творческий мастер-класс по созданию украшений в культурном центре Stoa!</p><p>Приглашаем вас на трехчасовой мастер-класс, где вы научитесь создавать простой, но уникальный чокер, используя натуральные камни, различные бусины и фурнитуру. Вместе мы создадим украшение, которое отразит вашу индивидуальность и стиль. Это прекрасная возможность проявить творческий потенциал, расслабиться и найти новые знакомства!<br> <br>Мастер-класс проводится в три разных дня. Вы можете записаться на один из следующих дней:<br>Вс, 10.11, с 12:00 до 15:00<br>Вт, 12.11, с 12:00 до 15:00<br>Сб, 23.11, с 14:00 до 17:00<br> <br>Участие в мастер-классе бесплатно, количество мест ограничено — максимум 10 участников на каждую сессию.<br> <br>Для регистрации, пожалуйста, отправьте письмо на электронную почту и укажите дату, на которую хотите записаться: maria.bolshedonova@gmail.com<br> <br>О ведущей:<br>Мария Большедонова — дизайнер из Хельсинки с большим опытом в области текстильного и ювелирного дизайна. Она проводит творческие мастер-классы и развивает свой бренд Wild Fern Design.</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64897/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64333", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:596/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151998, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-30T16:16:02.409345Z", "last_modified_time": "2024-07-30T16:16:02.409363Z", "name": "", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751349.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151998/?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": "2024-07-30T16:16:02.378968Z", "last_modified_time": "2024-12-20T01:14:11.507176Z", "date_published": null, "start_time": "2024-11-23T10:00:00Z", "end_time": "2024-11-23T13:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Lapsen oikeuksien juhlaviikon kunniaksi Annantalolla järjestetään neljättä kertaa lasten toiveiden pohjalta rakennettu työpajapäivä. Kaikki tapahtuman ohjelmat perustuvat viime vuoden Lasten päivässä kuultuihin toiveisiin.", "sv": "För att fira festveckan för barnets rättigheter ordnas en verkstadsdag på Annegården för fjärde gången. Verkstadsdagens program baserar sig på barnens önskemål. Hela programmet på evenemanget baserar sig på de önskemål vi fick under Barnens dag i fjol.", "en": "In honour of the Children’s Rights Week, a workshop day based on the wishes of children will be arranged at Annantalo for the fourth time. The event programme is fully based on wishes expressed by children during last year’s World Children’s Day." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/5B632BFD827FCC81EC3D2AF6C6B01ACB/Lasten_paiva", "sv": "http://www.annantalo.fi/sv/evenemang/event/5B632BFD827FCC81EC3D2AF6C6B01ACB/Barnens_dag", "en": "http://www.annantalo.fi/en/events/event/5B632BFD827FCC81EC3D2AF6C6B01ACB/Children_s_Day" }, "name": { "fi": "Lasten päivä – Lapsen oikeuksien viikko", "sv": "Barnens dag – Barnrättsveckan", "en": "Children's Day – Children's Rights Week" }, "description": { "fi": "<p>Lapsen oikeuksien juhlaviikon kunniaksi Annantalolla järjestetään neljättä kertaa lasten toiveiden pohjalta rakennettu työpajapäivä. Kaikki tapahtuman ohjelmat perustuvat viime vuoden Lasten päivässä kuultuihin toiveisiin.</p><p>Kolmevuotiaan Toven ideasta inspiroituneena Annantalo muuntuu tapahtuman ajaksi Erikoisleikkipaikaksi. Luvassa on sohvilla hyppimistä, majoihin sukeltelua, pahviautoilla kaahailua sekä iloista tanssimista. Tarjolla on lasten toiveesta myös karkkipusseja!</p><p>Kaikki Lasten päivän ohjelma on maksutonta eikä ennakkoilmoittautumista tarvita. Tapahtuma on suunniteltu koko perheelle.</p><p>Ohjelmassa:</p><p><b>Tanssin taikaa -työpajat</b><br>Klo 13 ja 14<br>Toivoneet Hugo 4 v ja Lahja 6 v<br>Tule kokemaan tanssin riemu ja liikunnan ilo perinteisen burkinafasolaisen tanssin parissa! Tanssija-koreografi Sibiry Konate johdattaa sinut energiseen ja rytmikkääseen maailmaan. Lapset ja vanhemmat ovat kaikki tervetulleita tanssimaan yhdessä! <br>Työpajoihin otetaan sisään niin monta tanssijaa kuin juhlasaliin mahtuu. Ovet suljetaan työpajan ajaksi, joten ole ajoissa juhlasalin ovien tuntumassa.</p><p><b>Avoimet nonstop-työpajat - piipahda hetken ajan tai viivy pidempään:</b></p><p><b>Sohvahyppely- ja sirkustemppurata (klo 12–15)</b><br>Toivonut Benkku 5 v<br>On aika palauttaa lasten oikeus sohvilla pomppimiseen! Osallistu Sirkus Magentan ohjaamalle sohvahyppely- ja sirkustemppuradalle! Hauskalla radalla pääsee luvan kanssa hyppimään sohvilla sekä kokeilemaan erilaisia sirkuslajeja sirkusohjaajien opastuksella. <br>Sohvat hyppelyyn tarjoaa huonekalujen kierrätyspalvelu Sohvakeskus.</p><p><b>Lennätysjuttu (klo 12–15)</b><br>Toivonut tuntematon toivoja<br>Nonstop-pajassa rakennellaan paperista ja muista materiaaleista erilaisia lentäviä otuksia ja aluksia. Pajassa on kolme eri tehtävää – voit valita, teetkö niistä yhden vai kaikki. Halukkaat rakentelijat voivat osallistua lennätysjuttuineen 2. kerroksen yhteisiin lentonäytöksiin klo 13.30 ja 14.30.</p><p><b>Autoilua erikoisleikkipaikalla (klo 12–15)</b><br>Toivonut Tove 3 v<br>Autot odottavat varikolla. Autorata kutsuu sinua autoilemaan. Astu siis pahviautoon ja aja radalle. Mekaanikko huoltaa auton ja liikenteenohjaaja näyttää turvalliset ajosuunnat. Viritä jalkasi huimaan vauhtiin, käynnistä lihasmoottorisi ja starttaa!</p><p><b>Toiveiden tähtitaivas (klo 12–15)</b><br>Toivonut tuntematon toivoja<br>Mitä toivot? Miltä toivomuksesi voisi näyttää tähtitaivaalle ripustettuna tähtenä? <br>Askartelemme sekatekniikalla pieniä toivomustähtiä ja etsimme niille paikan yhteiseltä tähtitaivaalta teatteriluokasta. Tilan siniseen maisemaan voi halutessaan jäädä rentoutumaan pilvityynyjen päälle duduk-soittimen pehmeitä sointuja kuunnellen.</p><p><b>Majoja ja kirjoja (klo 12–15)</b><br>Toivoneet Daniel ja Saku 6 v<br>Tervetuloa sukeltamaan pop-up-kirjaston tunnelmallisiin lukumajoihin, joissa mukaansatempaavat kirjat odottavat lukijaansa! Voit myös halutessasi lainata kirjoja kotiin. Tilassa järjestetään Lasten oikeuksien viikon kunniaksi Kamishibai-esityksiä klo 12.45 ja 13.45. Kirjaston Lasten päivän toteuttaa Helsingin kaupungin kirjasto.</p><p><b>Kettutanssi</b><br>Klo 15.05 Annantalon etupihalla<br>Toivonut Oliver 5 v<br>Päätämme tapahtumapäivän ulkona liittymällä mukaan kettujen ohjaamaan Lapsella on oikeus -tanssiin!</p><p>--<br>Huom! Viimeiset osallistujat otetaan sisään pajoihin klo 14.45.</p><p>Nähdään unelmien erikoisleikkipaikalla!</p>", "sv": "<p>För att fira festveckan för barnets rättigheter ordnas en verkstadsdag på Annegården för fjärde gången. Verkstadsdagens program baserar sig på barnens önskemål. Hela programmet på evenemanget baserar sig på de önskemål vi fick under Barnens dag i fjol.</p><p>Inspirerat av den treåriga Toves idé omvandlas Annegården till Speciallekplats under evenemanget. På programmet står hoppande i soffan, dykande in i kojor, kappkörning med kartongbilar samt glada danser. Vi serverar också godispåsar på barnens önskemål!</p><p>Hela programmet på Barnens dag är avgiftsfritt och ingen förhandsanmälan krävs. Evenemanget är avsett för hela familjen.</p><p><b>På programmet:</b></p><p><b>Verkstaden Dansens magi<br>Kl. 13 och 14</b><br>Önskad av Hugo 4 år och Lahja 6 år<br>Upplev dansens och motionens glädje med traditionell dans från Burkina Faso! Dansare-koreograf Sibiry Konate introducerar dig i en energisk och rytmisk värld. Barn och föräldrar är alla välkomna att dansa tillsammans!<br>Vi tar in så många dansare till verkstaden som det ryms i festsalen. Dörrarna är stängda under verkstaden, så kom i god tid och vänta nära festsalens dörrar.</p><p><b>Öppna nonstop-verkstäder – kom in för en stund eller stanna längre:</p><p>Soffhoppnings- och cirkuskonstbana (kl. 12–15)</b><br>Önskad av Benkku 5 år<br>Det är dags att återställa barnens rätt att hoppa i soffan! Delta i soffhoppnings- och cirkuskonstbanan under ledning av Cirkus Magenta! På den roliga banan har man tillstånd att hoppa i soffan samt man kan prova på olika cirkusgrenar under ledning av cirkusinstruktörer.<br>Sofforna för soffhoppningen kommer från återvinningstjänsten för möbler Sohvakeskus.</p><p><b>Flygningsverkstad (kl. 12–15) </b><br>Önskad av okänd<br>I nonstop-verkstaden bygger man olika flygande varelser och fartyg av papper och andra material. Det finns tre olika uppgifter i verkstaden – du kan välja om du gör en av dem eller alla. De byggare som vill kan delta med sina flygningsgrejer i gemensamma flyguppvisningar på 2:a våningen kl. 13.30 och 14.30.</p><p><b>Bilkörning på speciallekplatsen (kl. 12–15)</b><br>Önskad av Tove 3 år<br>Bilarna väntar i depån. Körbanan bjuder in dig att köra bil. Så stig in i kartongbilen och kör till banan. Mekanikern servar din bil och trafikdirigenten visar dig säkra körriktningar. Sätt fart på fötterna, starta muskelmotorn och kör!</p><p><b>Önskningarnas stjärnhimmel (kl. 12–15)</b><br>Önskad av okänd<br>Vad önskar du? Hur skulle din önskan se ut om den var en stjärna som hänger på stjärnhimmeln?<br>Vi pysslar små önskestjärnor med blandteknik och hittar en plats för dem på den gemensamma stjärnhimmeln i teaterklassrummet. I det blå landskapet i rummet får du koppla av på molnkuddar och lyssna på mjuka toner från duduk-instrumentet om du vill.</p><p><b>Kojor och böcker (kl. 12–15)</b><br>Önskad av Daniel och Saku 6 år<br>Välkommen att dyka in i popup-bibliotekets stämningsfulla läskojor där fängslande böcker väntar på dig! Om du vill kan du också låna böcker hem. Barnrättsveckan till ära ordnas Kamishibai-föreställningar i rummet kl. 12.45 och 13.45. Bibliotekets Barnens dag ordnas av Helsingfors stads bibliotek.</p><p><b>Rävdans<br>Kl. 15.05 på Annegårdens främre gård</b><br>Önskad av Oliver 5 år<br>Vi avslutar evenemangsdagen utomhus och dansar dansen Barnet har rätt under handledning av rävar!</p><p>--<br>Obs! De sista deltagarna i verkstäderna tas in kl. 14.45.</p><p>Vi ses på drömmarnas speciallekplats!</p>", "en": "<p>In honour of the Children’s Rights Week, a workshop day based on the wishes of children will be arranged at Annantalo for the fourth time. The event programme is fully based on wishes expressed by children during last year’s World Children’s Day.</p><p>Inspired by the idea of three-year-old Tove, Annantalo will be transformed into a special playground for the duration of the event. There will be jumping on sofas, diving into huts, speeding on cardboard box cars and happy dancing. At the request of the children, bags of sweets will also be available!</p><p>All the programme for World Children’s Day is offered free of charge, and no advance registration is required. The event is designed for the whole family.</p><p><b>Programme:</p><p>Dance magic workshops<br>at 13:00 and 14:00</b><br>Based on the wishes of Hugo, aged 4, and Lahja, aged 6<br>Come and experience the joy of dance and movement with traditional Burkina Faso dances! Dancer-choreographer Sibiry Konate will introduce you to the energetic and rhythmic dances. Children and parents are all welcome to dance together!<br>As many dancers as the assembly hall can accommodate will be admitted to each workshop. The doors will be closed for the duration of the workshop, so please be near the assembly hall doors on time.</p><p><b>Open nonstop workshops – stay for a moment or longer:</b></p><p><b>Sofa jumping and circus trick track (12:00–15:00)</b><br>Based on the wish of Benkku, aged 5<br>It’s time to restore children’s right to bounce on sofas! Come and join Sirkus Magenta on a sofa jumping and circus trick track! On the fun track, you will have the permission to bounce on sofas and try out different circus tricks with the guidance of circus instructors.<br>Sofas for jumping will be provided by furniture recycling service Sohvakeskus.</p><p><b>Flying things (12:00–15:00)</b><br>Based on the wish of an unknown contributor<br>In the nonstop workshop, you can build flying creatures and ships from paper and other materials. There will be three different tasks available – you can choose to do one or all of them. All willing builders can participate with their flying things in joint air shows on the second floor at 13:30 and 14:30.</p><p><b>Motoring at a special playground (12:00–15:00)</b><br>Based on the wish of Tove, aged 3<br>Cars will be waiting for you in the depot, with a car track simply inviting you to drive. So get in a cardboard box car and enter the track! There will be a mechanic to service your car and a traffic marshal to indicate the safe direction of travel. Tune in your feet for a dizzying pace, start your muscle motor and get going!</p><p><b>Starry sky of wishes (12:00–15:00)</b><br>Based on the wish of an unknown contributor<br>What do you wish for? What could your wish look like as a star hung in the starry sky?<br>We will use mixed techniques to craft little wish stars and find a place for them in a shared starry sky in the theatre classroom. You can also choose to relax on cloud pillows in the blue space, listening to the soft tones of a duduk.</p><p><b>Huts and books (12:00–15:00)</b><br>Based on the wishes of Daniel and Saku, aged 6<br>Welcome to dive into atmospheric reading huts in a pop-up library, where immersive books await their readers! You can also borrow books to take home with you. Kamishibai shows to celebrate Children’s Rights Week will take place in this space at 12:45 and 13:45. The library’s World Children’s Day is arranged by the Helsinki City Library.</p><p><b>Fox dance</b><br>15:05 in the front yard of Annantalo<br>Based on the wish of Oliver, aged 5<br>We will end the day outdoors by joining foxes in a Children Have Rights dance!</p><p>--<br>Note! The last workshop participants will be admitted at 14:45.</p><p>See you at the special playground of your dreams!</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64333/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63835", "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:52/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:668/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39492/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "description": null, "price": null, "info_url": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151923, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-26T09:15:35.386197Z", "last_modified_time": "2024-07-26T09:15:35.386221Z", "name": "", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753166.jpg", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151923/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-07-26T09:15:35.351281Z", "last_modified_time": "2024-12-20T01:14:11.415001Z", "date_published": null, "start_time": "2024-11-23T08:30:00Z", "end_time": "2024-11-23T12:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "provider_contact_info": null, "short_description": { "fi": "Kannelmäen Martat & Kannelmäen Eläkkeensaajat järjestävät yhteiset joulumyyjäiset Kanneltalossa. Perinteisten leivonnaisten lisäksi myynnissä on mm. käsitöitä.", "sv": "Gamlas Martor ordnar en julmarknad i Gamlasgården. Förutom Martornas traditionella bakverk finns även bland annat hantverk till salu.", "en": "The Kannelmäki section of the Martha Association is holding a Christmas Market in Kanneltalo. In addition to their traditional, home-made pastries, they will be selling handicrafts, among other things." }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/CE6FE8E831D3D06B28E5C5DC24F512D1/Kannelmaen_Marttojen_Kannelmaen_Elakkeensaajien_joulumyyjaiset", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/CE6FE8E831D3D06B28E5C5DC24F512D1/Kannelmaen_Martat_julmarknad", "en": "http://www.kanneltalo.fi/en/events/event/CE6FE8E831D3D06B28E5C5DC24F512D1/Martha_Association_Christmas_Market_at_Kannelmaki" }, "name": { "fi": "Kannelmäen Marttojen & Kannelmäen Eläkkeensaajien joulumyyjäiset", "sv": "Kannelmäen Martat – julmarknad", "en": "Martha Association Christmas Market at Kannelmäki" }, "description": { "fi": "<p>Kannelmäen Martat & Kannelmäen Eläkkeensaajat järjestävät yhteiset joulumyyjäiset Kanneltalossa. Perinteisten leivonnaisten lisäksi myynnissä on mm. käsitöitä.</p><p>Luvassa on myös arpajaiset paikan päällä.</p><p>Marttaliitto on 1899 perustettu, kotitalousneuvontaa antava kansalaisjärjestö, jonka tehtävänä on edistää kotien ja perheiden toimivaa ja kestävää arkea. Järjestö on puoluepoliittisesti sekä uskonnollisesti sitoutumaton. Marttailu on arjentaitojen edistämistä, verkostoitumista ja yhteisöllisyyttä. Hyvä arki kuuluu kaikille.</p><p>Kannelmäen Martat ry on toiminut jo yli viidenkymmenen vuoden ajan. Jäsenet tulevat lähinnä Kannelmäen ja Kaarelan alueelta. Martta-iltoihin kokoonnutaan erilaisten luentojen, kotitalouskurssien ja kädentaitojen merkeissä. Martat järjestävät myös teatteriretkiä ja vierailuilla näyttelyissä ja museoissa. Yhdistyksen ohjelmat suunnitellaan jäsenten toiveiden mukaan.</p><p>Tavoitat meidät lähettämällä sähköpostia osoitteeseen: kannelmaenmartat.ry@gmail.com</p><p>Kannelmäen Eläkkeensaajat ry</p><p>Yhdistyksemme täyttää kunniakkaat 45 vuotta tammikuussa 2025.<br>Kokoonnumme maanantaisin Kaarelantie 86 C-rapun viereisessä kerhohuoneessa klo 11-13 mukavan yhdessäolon merkeissä.<br>Joka toinen maanantai kutsumme ulkopuolisia asiantuntijoita ja joka toinen viikko tapaamme vapaamuotoisemmin, seurustelun, visailun, bingon ja kevyen venyttelyjumpan merkeissä. <br>Käymme vuoden aikana myös teatterissa, konsertissa, risteilyllä ja retkillä.</p><p>Tarkempi toimintaamme koskeva ohjelma löytyy kotisivuiltamme: kannelmaki.elakkeensaajat.fi</p>", "sv": "<p>Gamlas Martor ordnar en julmarknad i Gamlasgården. Förutom Martornas traditionella bakverk finns även bland annat hantverk till salu.</p><p>Även ett lotteri utlovas på plats.</p><p>Martaförbundet är en medborgarorganisation som grundades 1899 för att ge råd i hushållsfrågor och främja en fungerande och hållbar vardag för hem och familjer. Organisationen är politiskt och religiöst obunden. Martaverksamheten främjar vardagskunskaper, nätverkande och gemenskap. Ett bra vardagsliv tillhör alla.</p><p>Kannelmäen Martat ry har varit verksam i mer än femtio år. Medlemmarna kommer främst från området kring Gamlas och Kårböle. På Martakvällarna samlas man för olika föreläsningar, hushållskurser och hantverk. Martorna anordnar också teaterresor och besök till utställningar och museer. Föreningens program planeras enligt medlemmarnas önskemål.</p><p>Du når per e-post på: kannelmaenmartat.ry@gmail.com</p>", "en": "<p>The Kannelmäki section of the Martha Association is holding a Christmas Market in Kanneltalo. In addition to their traditional, home-made pastries, they will be selling handicrafts, among other things.</p><p>There will also be a raffle.</p><p>The Martha Association is a non-governmental organisation founded in 1899 that educates the public about home economics. Its mission is to promote a functional and sustainable everyday life for homes and families. The association is apolitical and non-religious. Their work is the promotion of everyday skills, networking and a sense of community. Everybody deserves a good everyday life.</p><p>Kannelmäen Martat ry has been in operation for more than fifty years. The members are mainly from the Kannelmäki and Kaarela area. They hold meetings in the evenings, which feature various lectures, household courses and handicrafts. Martha Associations also organise theatre tours and visits to exhibitions and museums. The association's programme is planned according to the members' wishes.</p><p>You can reach them by sending an email to: kannelmaenmartat.ry@gmail.com</p>" }, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63835/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }{ "meta": { "count": 24655, "next": "