Limited time only (Click to copy)
Intermediate Cupcake Baking 4
(+9 more dates)
What you will learn
- Basic ingredients of cupcake baking
- Basic instruments needed for cupcake baking
- How to make your cupcake look even more delicious
What you will get
- Certificate
- Get to bring home what they bake
What to bring
- Apron
What to wear
Casual
Appropriate for
everyone
Cancellations & Refunds
If the organiser cancels the class:
You are entitled to a transfer or credit note.
If you can't attend the class:
You’re welcome to send someone in your place.
OR
- A transfer can be requested anytime before the class starts. Free of charge.
- A credit note can be requested 10 days before the class starts. Free of charge.
No changes will be allowed after these times.
We recommend the refund upgrade option upon checkout in case you’re not able to attend the class. Learn more about refund upgrade option.
Terms & Conditions
(Anna testing 21-Dec-18) These are my Terms & Conditions.
1 What is Action Cable?
Action Cable seamlessly integrates WebSockets with the rest of your Rails application. It allows for real-time features to be written in Ruby in the same style and form as the rest of your Rails application, while still being performant and scalable. It's a full-stack offering that provides both a client-side JavaScript framework and a server-side Ruby framework. You have access to your entire domain model written with Active Record or your ORM of choice.
2 Terminology
Action Cable uses WebSockets instead of the HTTP request-response protocol. Both Action Cable and WebSockets introduce some less familiar terminology:
2.1 Connections
Connections form the foundation of the client-server relationship. A single Action Cable server can handle multiple connection instances. It has one connection instance per WebSocket connection. A single user may have multiple WebSockets open to your application if they use multiple browser tabs or devices.
2.2 Consumers