stimulus based discussion что это
English Speaking Exercises for B1 – Stimulus-based discussion
1. Complete the words with a, e, i, o and u. Then match them with the diagrams (A-L).
1 k__rt__ng
2 k__y__k__ng
3 __bs__ __l__ng
4 cl__mb__ng
5 sn__wb__ __rd__ng
6 s__rf__ng
7 b__ng__ __ j__mp__ng
8 b__dyb__ __rd__ng
9 p__rk__ __r
10 h__ng-gl__d__ng
11 h__k__ng
12 m__ __nt__ __n b__k__ng
Answer
1 karting, G 2 kayaking, H 3 abseiling, A 4 climbing, D
5 snowboarding, K 6 surfing, L 7 bungee jumpping, C
8 bodyboarding, B 9 parkour, J
10 hang-gliding, E 11 hiking, F 12 mountain biking, I
2. Write four sentences using the phrases below and activities from exercise 1.
I like the idea of … I think … would be (fun).
I’m quite keen on … I quite fancy …
You are planning a day out with friends on your birthday. Discuss with your friend what you are going to do. Give reasons for your opinions. Agree on an activity.
Answer
3. Read the task above. Then listen to two students doing the task. Answer the questions.
1 Why does the girl want to go bodyboarding?
2 Why doesn’t the boy want to go bodyboarding?
3 Why does the girl prefer parkour to abseiling?
4 In the end, they agree to ……………………………………………
Answer
1 She’s never done it before and she’d really like to try it.
2 Some of his friends don’t have bodyboards.
3 You don’t need any equipment.
4 go climbing.
Transcript
Speaking Strategy
When you have to reach an agreement, be sure to use a range of phrases for expressing preferences, raising objections and coming to an agreement.
4. Read the Speaking Strategy. Complete the sentences. Then listen again and check.
1 I’m …………………….. …………………….. on bodyboarding.
2 Sorry, but I don’t …………………….. that’s a very …………………….. ……………………..
3 I …………………….. …………………….. trying that.
4 I think parkour is a …………………….. …………………….. than abseiling.
5 Yes, I ……………………..
6 …………………….. …………………….. …………………….. on climbing, then?
Answer
1 quite keen 2 think, good idea 3 quite fancy
4 better option 5 agree 6 can we agree
Transcript
A It’s my birthday on Saturday. I’d like to go out for the day with you and a group of our friends. What do you think we should do?
B Well, I’m quite keen on body boarding. I’ve never done it before and I’d really like to try it.
A Sorry, but I don’t think that’s a very good idea. Some of my friends don’t have body boards. What about abseiling? I quite fancy trying that.
B I think parkour is a better option than abseiling because you don’t need any equipment.
A Oh, no. I really don’t want to do parkour. It doesn’t appeal to me at all.
B Well, how about climbing or karting?
A I don’t think karting would be as much fun as climbing. And there’s a new indoor climbing centre near the school. It would be good to try it.
B Yes, I agree.
A Can we agree on climbing, then?
Stimulus based discussion что это
A collection of composable behaviors for your Stimulus Controllers
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
A collection of composable behaviors for your Stimulus Controllers
This set of mixins is built around the Observer APIs and custom events to enhance your controllers with new behaviors.
A set of mixin to optimize performances.
Mixin | Description |
---|---|
useDebounce | Adds the ability to specify an array «debounces» of functions to debounce. |
useMemo | Memoize expensive getters by mixing in useMemo and adding a static memos array. |
useThrottle | Adds the ability to specify an array «throttles» of functions to throttle. |
A set of mixin and controllers to build animations.
Mixin | Description |
---|---|
useTransition | Mixin or controller to apply classes to various stages of an element’s transition. |
Mixin | Description |
---|---|
useApplication, ApplicationController | supercharged controller for your application. |
useDispatch | Adds a dispatch helper function to emit custom events. Useful to communicate between different controllers. |
useMeta | Adds getters to easily access meta values. |
Stimulus-use can be used in two ways: composing with mixins or extending built-in controllers
Composing with mixins
This is the prefered approach as it bring the most flexibility. Simply import a mixin and apply it in the connect or initialize to adds new behaviors to you controller. You can combine several mixins within the same controller.
Extending built-in controllers
You can create your Stimulus controller from a pre-built Stimulus-use controller which offers the new behavior you’re looking for. This method works perfectly when you only need a single behavior for your controller.
Made with ❤️ by @adrienpoly and all these wonderful contributors (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
Continuous integration and cross browser testing is generously provided Sauce Labs.
About
A collection of composable behaviors for your Stimulus Controllers