Skip to main content

Lip Theater Institute to Delight Young Audiences at Ashtej International Summer Festival

Get ready for a delightful experience! The Lip Theater Institute for Children and Youth Theater is participating in the 2024 Ashtej International Summer Festival with its exciting project ‘Theater for Younger Audiences.’ This special program, designed for infants and toddlers aged 36 months and younger, will run from July 21 to 28.

The Ashtead International Summer Festival is Korea’s premier children’s and youth arts performance festival, showcasing outstanding theater from around the globe. This year’s ‘Theater for Younger Audiences will feature innovative performances by four creative teams: Creative Group Noni, Theater Company Masil, Whole Body, and Collective Degururu.

As part of both the 2024 Ashtead International Summer Festival and the Korea Arts Council for the Disabled’s Inclusive Arts for Children Project, the festival will take place at the Seoul Arts Center and Arco Dream Field Theater. This year’s program goes beyond mere showcases, offering tryout performances, workshops, and sessions sharing the creative process. The audience is expanding to include visually impaired families, pregnant mothers, and other groups who can enjoy infant theater.

One highlight is ‘Bing Bing Bing (Being Being Being),’ which will be performed on July 27 and 28 at the Seoul Arts Center. This participatory performance blends visually impaired and non-visually impaired families in a playful exploration of sensations like wind and sound, featuring drones and giant fabric pieces. It’s a unique, interactive experience for infants and toddlers up to 48 months old.

Additionally, the workshop “Connecting Beyond What You Can See,” based on Jeremy Krauss’s Approach to movement therapy, will offer visually impaired infants and toddlers up to 48 months old and their families a chance to explore sensory integration and self-expression. These 45-minute sessions are free and will be held at the Modo Studio on July 27 and 28.

On July 21, the ARCO Dreamland Theater will host a 120-minute session titled ‘Sharing the Creative Process of Infant and Toddler Theater.’ This event will feature discussions from theater companies Masil and Whole Body, focusing on performances for mothers and babies, and natural settings for infants and toddlers.

Participation in all events is free. For ‘Bing Bing Bing,’ you can take off your shoes, move around, and fully engage with the performance space.

For more information, or to register, visit the Gyeongnam Provincial Museum of Art’s website, or contact them at 055–254–4639.

Popular posts from this blog

Xcode and iOS Version Mismatch: Troubleshooting "Incompatible Build Number" Errors

Have you ever encountered a frustrating error while trying to run your iOS app in Xcode, leaving you scratching your head? A common issue arises when your device's iOS version is too new for the Xcode version you're using. This often manifests as an "incompatible build number" error, and looks like this: DVTDeviceOperation: Encountered a build number "" that is incompatible with DVTBuildVersion. This usually happens when you are testing with beta versions of either iOS or Xcode, and can prevent Xcode from properly compiling your storyboards. Let's explore why this occurs and what you can do to resolve it. Why This Error Occurs The core problem lies in the mismatch between the iOS version on your test device and the Software Development Kit (SDK) supported by your Xcode installation. Xcode uses the SDK to understand how to build and run apps for specific iOS versions. When your device runs a newer iOS version than Xcode anticipates, Xcode mi...

How to Fix the “Invariant Violation: TurboModuleRegistry.getEnforcing(…): ‘RNCWebView’ Could Not Be Found” Error in React Native

When working with React Native, especially when integrating additional libraries like react-native-signature-canvas , encountering errors can be frustrating. One such error is: Invariant Violation: TurboModuleRegistry. getEnforcing (...): 'RNCWebView' could not be found This error often occurs when the necessary dependencies for a module are not properly linked or when the environment you’re using doesn’t support the required native modules. Here’s a breakdown of how I encountered and resolved this issue. The Problem I was working on a React Native project where I needed to add the react-native-signature-canvas library to capture user signatures. The installation process seemed straightforward: Installed the package: npm install react-native-signature- canvas 2. Since react-native-signature-canvas depends on react-native-webview , I also installed the WebView package: npm install react- native -webview 3. I navigated to the iOS directory and ran: cd ios pod install Everythi...

Fixing FirebaseMessagingError: Requested entity was not found.

If you’re working with Firebase Cloud Messaging (FCM) and encounter the error: FirebaseMessagingError: Requested entity was not found. with the error code: messaging/registration-token-not-registered this means that the FCM registration token is invalid, expired, or unregistered . This issue can prevent push notifications from being delivered to users. ๐Ÿ” Possible Causes & Solutions 1️⃣ Invalid or Expired FCM Token FCM tokens are not permanent and may expire over time. If you’re storing tokens in your database, some might be outdated. ✅ Solution: Remove invalid tokens from your database when sending push notifications. Refresh and store the latest FCM token when the app starts. Example: Automatically Refresh Token firebase. messaging (). onTokenRefresh ( ( newToken ) => { // Send newToken to your backend and update the stored token }); 2️⃣ Token Unregistered on Client Device A token might become unregistered if: The app is uninstalled on the user’s device. ...