• Professional Development
  • Medicine & Nursing
  • Arts & Crafts
  • Health & Wellbeing
  • Personal Development

2919 Courses in London

Ultrasound Cavitation Training Course

By Cosmetic College

Cavitation, also known as Ultrasound Cavitation, is a treatment that has been around for a number of years now, as a non-surgical alternative to liposuction for the reduction of Fat. Cavitation uses ultrasound waves to break down the excess fat. We call it the 'non-surgical liposuction' because there is no need for anesthesia, no pain, no incision and no recovery time. The ultrasound waves are delivered through the surface of the skin via an ultrasound probe. Cavitation can be dangerous if not used correctly due to the depth of penetration of the ultrasound beam but with the correct training and understanding safe practices can be used to ensure great results to remove excess fat without the need for surgery. Cavitation can also be used in the treatment of cellulite, skin tightening and stretch marks. Cavitation is a great treatment on its own but can also be combined with other treatments to increase its effectiveness such as Radio-frequency for skin tightening and Shock-wave therapy for cellulite.  Course prerequisites Minimum 18 years of age Good command of English Be able to learn independently Course structure You are required to complete 20 hours of theory study via our accessible e-learning portal and 5 practical hours onsite. All courses are kept intimate with a maximum of 6 learners in a class. Areas covered within the course: Core knowledge Health and safety and data protection Confidentiality, privacy Hygiene and sterilisation Equipment maintenance and set-up Cellulite and full understanding Body types and fat tissue Fat assessment including BMI Candidates for cavitation Cellulite History of ultrasound and uses Principle of cavitation Objections and how it works Benefits of cavitation Consultation, contra-indications, skin sensitivity, treatment times, safety, risk, side effects, recovery and aftercare Live demo

Ultrasound Cavitation Training Course
Delivered In-PersonFlexible Dates
£450

Autodesk Revit Basic to Advanced Training Course 1-2-1

By Real Animation Works

Virtual Revit face to face training customised and bespoke. One to One Online or Face to Face

Autodesk Revit Basic to Advanced Training Course 1-2-1
Delivered in London or OnlineFlexible Dates
£640

Pedicure course

By Majestic Academy

Our Pedicure course is designed to enable candidates to offer a professional pedicure service to the public. Pedicures have always featured as a popular service in salons. Pedicures are a very popular and relaxing treatment to do; you will learn how to adapt this treatment from a basic pedicure to a luxury treatment including exfoliation, masks, heated booties and paraffin wax. THE REQUIREMENTS No experience is necessary to attend this course. Salon attire must be worn during the course. Student must have clean nail without enhancements. To ensure maximum practice students will be required to work on each other throughout the day. Student need to bring own model for the day 3. COURSE CONTENT Theoretical part: Day 1 / time 10am – 17pm Health, safety, and hygiene Related Anatomy and physiology Pedicure Tools & Equipment Client consultation & record keeping Assessment of the Foot & Nails- Treatment planning Contra - indications and contra- actions Treatable and Non-Treatable nail conditions. Nail & Skin Conditions Product knowledge Pedicure Products – Preparation Practical step by step Pedicure Procedure demonstration Ways of removing hard skin, SPA Ritual, Leg and Foot Massage demonstration Risk assessment of paraffin wax equipment & Pedicure Paraffin Wax Treatment Diabetes People in a Beauty Salon- Rules for treatments- Skin care products and advice for diabetic customers People with Rheumatoid Arthritis in a Beauty Salon Pedicure home care advice Practical Part Day 2 /time 10am – 18pm Pedicure Procedures step by step Nail Treatment, Spa Ritual, Paraffin wax, warm oil Foot Massage, Nail Painting Professional advice and Tips on fixing mistakes Common Problem Student Work Exam Day 3 - Students need to come with own model. Practical exam duration is 2 hours. Certificates will be issued after the completion of the exam. Price included kit for work. Upon successful completion an course certificate will be awarded

Pedicure course
Delivered In-Person in LondonFlexible Dates
£300

Objective-C programming

5.0(3)

By Systems & Network Training

Objective-C programming training course description A hands on introduction that will allow you to master Objective-C and start using it to write powerful native applications for even the newest Macs and iOS devices! Using The step-by-step approach, will let you get comfortable with Objective-C's unique capabilities and Apple's Xcode 5 development environment. Make the most of Objective-C objects and messaging. Work effectively with design patterns, collections, blocks, foundation classes, threading, Git and a whole lot more. Every session builds on what you've already learned, giving a rock-solid foundation for real-world success! What will you learn Use Xcode 5. Declare classes, instance variables, properties, methods, and actions. Use arrays, dictionaries, and sets. Expand and extend classes with protocols, delegates, categories, and extensions. Use Apple's powerful classes and frameworks. Objective-C programming training course details Who will benefit: Developers wanting to learn Objective-C. Prerequisites: Software development fundamentals. Duration 5 days Objective-C programming training course contents PART 1: GETTING STARTED WITH OBJECTIVE-C The Developer Program: Objective-C, enrolling as an Apple Developer, setting up the development environment, Xcode. Your first project. OO programming with Objective-C: OO projects, Frameworks, classes and instances, encapsulation, accessors, Inheritance. OO features in Objective-C: Messages, methods, working with id, nesting messages, method signatures and parameters. allocating and initializing objects. Using Xcode: Xcode, source code control, git and Xcode, Using a Remote Repository. Compiler Directives: Projects, Compiler Directives, Prefix headers, main.m, .h files. PART 2: OBJECTIVE-C BASICS Messaging in a Testbed App: Setting Up the Testbed Apps, Adding a Text Field and Connecting It to Your Code, Sending a Message to the Text Field, Reviewing the Message Syntax. Declaring a Class in an Interface File: Context, Creating an Instance Variable with id, What Happens When Execution Stops, dynamic binding, Creating an Instance Variable for with the Class Name and with a Superclass Name, instance variable visibility. Properties in an Interface File: Interface Variables vs Properties, Declared Properties, Using Attributes. Implementing Properties. @synthesize, @dynamic. Methods in an Interface File: Methods in a Class, class and instance methods, Method declaration, returning complex data structures from Methods. Actions in an Interface File: Actions, Actions in OS X and iOS, disconnecting actions. Routing messages with selectors: Receiver and selector objects in messages, Objective-C Runtime, SEL and @selector (), performSelector, NSInvocation, testing whether an Instance can respond to a selector. Building on the Foundation: The Foundation Framework, Foundation Classes, Foundation Paradigms and Policies; Mutability, class clusters, notifications. Defining a Class in Implementation Files: Projects, dynamic typing, creating a new App, implementing a method, expanding Classses with init Methods. Organizing Data with Collections: Collecting Objects, Property Lists, Runtime, comparing the Collection Classes, Creating a Collection, Objective-C Literal Syntax, Enumerating collections, Testing Membership in a Collection, Accessing an Object in a Collection. Managing Memory and Runtime Objects: Managing objects in memory, managing reference counts manually and with ARC, variable qualifiers, variable autorelease. PART 3: EXPANDING AND EXTENDING CLASSES Protocols and Delegates: Subclassing, Protocols, Delegates, Looking Deeper Inside Protocols. Categories and Extensions: Comparing categories and protocols, categories vs subclasses, working with categories, class extensions, informal protocols. Associative References and Fast Enumeration: Objective-C 2.0 Time-Saving Features, Extending Classes by Adding Instance Variables (Sort of), Using Fast Enumeration. Blocks: Revisiting Blocks, Callbacks, Blocks, Exploring Blocks in Cocoa, Cocoa Blocks and Memory. PART 4: BEYOND THE BASICS Handling Exceptions and Errors: Exception and Error classes: NSException, NSError, Identifying exceptions, throwing exceptions, catching exceptions. Queues and Threading: Getting Started with Concurrency, Introducing Queues, Dispatch Sources, Using Dispatch Queues. Working with the Debugger: Logging Information, Console Logs, NSLog, Smart Breakpoints, enhancing breakpoints with messages. Using Xcode Debug Gauges for Analysis: Debug Gauges, Monitoing CPU and memory utilization, monitoring energy, Using Instruments. PART 5: OPTIONAL TOPICS C Syntax Summary: Data Types, Control Structures. Apps, Packages, and Bundles: Project Bundles, lproj Files, Asset Catalogs, plist Files, Precompiled Header Files (.pch). Archiving and Packaging Apps for Development and Testing: Archiving.

Objective-C programming
Delivered in Internationally or OnlineFlexible Dates
£4,997

CPD Accredited Botox & Dermal Filler Training

By The Angel Academy Of Teaching & Training

FOUR DAY ATTENDENCE AND TRAINING GUIDELINE: DAY ONE AND TWO - INTRODUCTION TO DERMAL FILLERS Day one Arrive and coffees (10.00) Registration, introduction and expectations (10.00-10.15) Structure of the training (10.15-10.30) Break (10.30-11.00) Lectures and interactive workshops / simulation (11.00 - 1230pm) Health and safety in the workplace Sharps injury and disposal The consultation process and prescriptions LUNCH (1300-1730) with a coffee break Basic life support Anaphylaxis - recognition and management Emergency kits - what it should contain and how to buy one Your doctors on call - how to contact our on call doctors for emergency advice How to use Hyalase safely - when to use it / recognise mechanism of action, how prescription in an emergency works and how to give the hyalase Practical and to include demonstration of Hyalase injection Our added benefits services for safety and convenience Day two Arrive and coffees (10.00) introduction and expectations (10.00-10.30) Structure of the training (10.30-11.00) Formal written examination covering key areas of THEORY for Dermal Filler injections: Anatomy, Physiology, Products and Complications. This will highlight early on if any important areas need to be covered in more detail for the students (11.00 - 1200) - Break for lunch - Practical session commences - (12.30 - 1800) - and in total on average we have scope for one model per 30 minutes on both of the Dermal filler days, so that’s a potential for 10 in total for a class size of maximum 4, which will give good hands on experience, as the way we train is to allow several people the opportunity to be involved with each patient - e.g. splitting into the phases of treatment, which allows the trainees to understand the concept of the treatment process. That would be - consultation, consent, marking up, readying equipment, performing the injection, providing advice and aftercare. DAY THREE AND FOUR BOTOX FOUNDATION COURSE Day three Arrive and coffees (10.00) introduction and expectations (10.00 – 10.30) Structure of the training (10.30 – 11.00) Formal written examination covering key areas of THEORY for Botox Application: Anatomy, Physiology, Products and Complications. This will highlight early on if any important areas need to be covered in more detail for the students (11.00 - 1200) - Break for lunch - Practical session commences - (12.30 - 1800) - and in total on average we have one model per 30 minutes on both the botox and days, so that’s a potential of 10 in total for a class size of 4, which will give good hands on experience, as the way we train is to allow several people the opportunity to be involved with each patient - e.g. splitting into the phases of treatment, which allows the trainees to understand the concept of the treatment process. That would be - consultation, consent, marking up, readying equipment, performing the injection, providing advice and aftercare. Day four Observed Treatment Process Examination The participants will be tested on the following key facets of safe practical care: Consultation process - rapport and understanding what the client wants Safe consent Marking and photographs Technical skill of injection Atercare provision and safety netting (eg if this happens do this / call me) 1 model will be provided for Botulinum (3 area) treatment and 1 - 2 clients for filler to ensure that each of the key anatomical areas covered are observed. Morning = Botulinum (0900 - 1230) Afternoon = Botulinum and Option Dermal fillers (1330 - 1630) Conclusion Candidates given session and refreshments and discussion regarding Case Studies and further support. (1700 - 1800)

CPD Accredited Botox & Dermal Filler Training
Delivered In-PersonFlexible Dates
£4,500

Object Oriented Analysis & Design

5.0(3)

By Systems & Network Training

OOAD training course description A workshop course providing thorough practical knowledge of object oriented analysis and design methods. What will you learn Perform Systems Analysis with Object Oriented methods. Identify key classes and objects. Expand and refine OO problem domain models. Design Class hierarchies using inheritance and polymorphism. Design programs with Object Oriented methods. OOAD training course details Who will benefit: System analysts, designers, programmers and project managers. Prerequisites: It is desirable that delegates have experience of programming in C++/Java or some other OOP language. Duration 5 days OOAD training course contents What is OO? Classes, objects, messages, encapsulation, associations, inheritance, polymorphism, reusability. What is Systems Analysis and design? Data flow diagrams, structure diagrams. The OO approach. OOA The problem domain and object modelling. Identifying classes and objects. Generalisation and inheritance. Defining attributes and methods. OOD Refining the OOA results. Designing the User Interface. Designing the algorithms and data structures using objects. Designing the methods. OOP Prototyping. Implementing OOD with OOPs and OOPLs.

Object Oriented Analysis & Design
Delivered in Internationally or OnlineFlexible Dates
£4,637

Fast Track To Aesthetics - Dermal filler training

By Cosmetic College

Are you looking to start a career in aesthetics but need the prerequisites for a traditional course? Look no further! Cosmetic College offers a fast-track pathway to becoming an accredited and insurable cosmetic injector. Our five day course is designed specifically for non-medics who want to pursue a career in aesthetics but need to meet the standard course prerequisites. Expert practitioners and educators deliver our course with years of industry experience. We prioritise safety and ensure that all learners will leave the system with the competency and knowledge necessary to perform injectables and aesthetic procedures with confidence. Before starting the course, you'll complete online pre-study and virtual lectures to give you a solid foundation in anatomy and physiology, health and safety, contraindications, complications, first aid, and infection control. Then, you'll spend 6-8 days of practical training, depending on your chosen course path, to hone your skills and get hands-on experience. Our fast-track pathway to injectables covers various topics, including microneedling, B12 dermaplaning, foundation lip dermal fillers, and more. To enrol in our fast-track course, you must be at least 21 years of age and have a good command of English. You should also be able to learn independently and have a strong desire to build a career in aesthetics. Invest in your future with Cosmetic College's fast-track pathway to injectables. With our comprehensive curriculum, expert instructors, and hands-on training, you'll be ready to start your aesthetic career. Take advantage of this opportunity to fast-track your aesthetic career. Enrol in our fast-track pathway to injectables today! Course Entry Requirements: Minimum age of 21 years Good command of English Be able to learn independently A strong desire to build a career in Aesthetics Course Pre-Study/Practical & Length: Online study and virtual lectures A series of online assessments Five days of practical training Course Agenda: Microneedling B12 Dermaplaning Foundation Lip Dermal Fillers Anatomy and Physiology Anaphylaxis Awareness Infection control Sharps and hazardous waste Complication management First aid Course Benefits Student Benefits Comprehensive Education: Our training program provides a comprehensive education on dermal fillers, equipping you with the knowledge and skills necessary to excel in the field of aesthetics. You will gain a deep understanding of facial anatomy, product selection, injection techniques, safety protocols, and patient assessment. Practical Hands-on Experience: We emphasise practical training, giving you ample opportunities to practice your skills under the guidance of experienced trainers. Working with live models will enhance your confidence and proficiency in performing dermal filler treatments. Industry-Standard Techniques: You will learn industry-standard techniques for administering dermal fillers, ensuring that you provide safe and effective treatments to your clients. This knowledge will enable you to achieve natural-looking results and meet the expectations of your clients. Personalised Guidance and Mentorship: Our trainers are highly experienced professionals who will provide personalised guidance and mentorship throughout the training. They will address your questions, offer constructive feedback, and help you refine your techniques, ensuring your continuous growth and improvement. Business and Marketing Support: In addition to the technical skills, we provide guidance on the business aspects of aesthetics. You will learn strategies for building and marketing your aesthetics practice, attracting clients, and maximizing your earning potential. This knowledge will empower you to establish a successful career in aesthetics. Client Benefits Expertise and Safety: Clients will have confidence knowing that you have received comprehensive training in dermal fillers. Your expertise will enable you to provide safe and high-quality treatments, minimising the risks and complications associated with the procedures. Natural and Desired Results: Through your training, you will be able to deliver natural and desired results to your clients. Your understanding of facial anatomy, product selection, and injection techniques will allow you to enhance their features, rejuvenate their appearance, and boost their self-confidence. Professionalism and Trust: By enrolling in our training program, you demonstrate your commitment to professionalism and continuous learning. Clients will trust in your skills and knowledge, knowing that you have received proper training from a reputable institution. Earning Potential Earning potential in the aesthetics industry can be significant. As a trained professional in dermal fillers, you can offer sought-after services to clients. The increasing demand for aesthetic treatments, combined with your expertise and ability to deliver exceptional results, can lead to a thriving client base and increased earning potential. The Fast Track To Aesthetics - Dermal Filler Training provides you with the foundation and skills necessary to capitalise on these opportunities and maximise your earning potential in the aesthetics field. Frequently Asked Questions Is this training suitable for beginners with no prior experience in aesthetics? Absolutely! Our Fast Track To Aesthetics program is designed to cater to beginners who are new to the field of aesthetics. We provide comprehensive training that covers the fundamentals of dermal fillers, ensuring that you gain the necessary knowledge and skills to start your journey in aesthetics. What topics are covered in the training program? Our training program covers a wide range of topics including facial anatomy, patient assessment, product selection, injection techniques, safety protocols, and client management. You will also receive hands-on training with live models to practice your skills under the guidance of experienced trainers. Are the trainers experienced in the field of aesthetics? Yes, our trainers are highly experienced professionals with extensive knowledge and practical experience in the field of aesthetics. They are dedicated to providing you with the guidance and support you need to excel in your training.

Fast Track To Aesthetics - Dermal filler training
Delivered In-PersonFlexible Dates
£3,999

Spinal and Peripheral Manipulation (Grade 5 Mobilisation) Course November 2025

By CPD Today

Spinal and Peripheral Manipulation Grade 5 Mobilisation Course Covering junctional areas and upper and lower extremities. Osteopathy Physiotherapy Chiropractic

Spinal and Peripheral Manipulation (Grade 5 Mobilisation) Course November 2025
Delivered In-Person in London
£50 to £300

Lean Six Sigma Green Belt Certification Program: In-House Training

By IIL Europe Ltd

Lean Six Sigma Green Belt Certification Program: In-House Training This learning series is designed to enable participants to fulfill the important role of a Lean Six Sigma Green Belt and to incorporate the Lean Six Sigma mindset into their leadership skills. Green Belt is not just a role, it is also a competency required for leadership positions at many top companies. This learning series is designed to enable participants to fulfill the important role of a Lean Six Sigma Green Belt and to incorporate the Lean Six Sigma mindset into their leadership skills. With a real-world project focus, the series will teach the fundamental methodology, tools, and techniques of the Define, Measure, Analyze, Improve and Control Process Improvement Methodology. This course is delivered through sixteen 3-hour online sessions. What you Will Learn At the end of this program, you will be able to: Identify strategies for effectively leading high performing process improvement teams Analyze whether projects align with business strategy Apply process improvement methodologies to DMAIC steps, based on real world scenarios Explain ways to appropriately respond to process variation Distinguish among best practice problem solving methodologies Evaluate and effectively communicate data-driven decisions, based on real world scenarios Introduction Lean Six Sigma & quality The vision The methodologies The metric Project Selection Why Projects Random idea generation Targeted idea generation CTQs (Critical to Quality) & projects Project screening criteria Quick improvements Introduction to Define Project Planning Developing the core charter Developing a project charter Facilitation Process Management Business process management Top-down process mapping Voice of the Customer Voice of Customer Stakeholder analysis Communication planning Kicking off the project Define Summary Introduction to Measure Data Collection Fact-based decision making Data sampling Operations definitions Data collection plan Measurement system analysis Graphical Statistics for Continuous Data Meet Six SigmaXL Graphical & statistical tools Data stratification Graphical Statistics for Discrete Data Pareto analysis Dot plots Plotting data over time: Looking for patterns Variation Concepts Variation is reality Special Cause and Common Cause variation Example of standard business reporting Individuals Control Chart Process Capability Genesis of process capability Calculating the metrics of Six Sigma Yield metrics: Measuring process efficiency Cost of Poor Quality The Cost of Poor Quality (COPQ) Cost of Quality categories Calculating the Cost of Poor Quality Measure Summary Introduction to Analyze Process Analysis Introduction to process analysis Value-added analysis Cycle time analysis WIP & pull systems Analyzing bottlenecks and constraints Cause & Effect Analysis Fishbone/Ishikawa diagram 5-Whys analysis Graphical & statistical tools Advanced Analysis Why use hypothesis rests? Hypothesis tests Correlation and regression analysis Analyze Summary Introduction to Improve Solutions Creativity techniques Generating alternative solutions Solution selection techniques Introduction to Design of Experiments Introduction to DOE DOE activity Error Proofing Failure mode & effect analysis Poka-Yoke Project Management Fundamentals Successful teams Project roles Conflict management Standardization Standardization The Visual Workplace 5S Piloting & Verifying Results What is a pilot? Evaluating results Improve Summary Introduction to Control Statistical Process Control Review of Special & Common Cause variation Review of Individual Control Chart P-Chart for discrete proportion data Transition Planning Control plan Project closure Control Summary Summary and Next Steps

Lean Six Sigma Green Belt Certification Program: In-House Training
Delivered in London or UK Wide or OnlineFlexible Dates
£5,295

Lean Six Sigma Green Belt Certification Program

By IIL Europe Ltd

Lean Six Sigma Green Belt Certification Program This learning series is designed to enable participants to fulfill the important role of a Lean Six Sigma Green Belt and to incorporate the Lean Six Sigma mindset into their leadership skills. Green Belt is not just a role, it is also a competency required for leadership positions at many top companies. This learning series is designed to enable participants to fulfill the important role of a Lean Six Sigma Green Belt and to incorporate the Lean Six Sigma mindset into their leadership skills. With a real-world project focus, the series will teach the fundamental methodology, tools, and techniques of the Define, Measure, Analyze, Improve and Control Process Improvement Methodology. This course is delivered through sixteen 3-hour online sessions. What you Will Learn At the end of this program, you will be able to: Identify strategies for effectively leading high performing process improvement teams Analyze whether projects align with business strategy Apply process improvement methodologies to DMAIC steps, based on real world scenarios Explain ways to appropriately respond to process variation Distinguish among best practice problem solving methodologies Evaluate and effectively communicate data-driven decisions, based on real world scenarios Introduction Lean Six Sigma & quality The vision The methodologies The metric Project Selection Why Projects Random idea generation Targeted idea generation CTQs (Critical to Quality) & projects Project screening criteria Quick improvements Introduction to Define Project Planning Developing the core charter Developing a project charter Facilitation Process Management Business process management Top-down process mapping Voice of the Customer Voice of Customer Stakeholder analysis Communication planning Kicking off the project Define Summary Introduction to Measure Data Collection Fact-based decision making Data sampling Operations definitions Data collection plan Measurement system analysis Graphical Statistics for Continuous Data Meet Six SigmaXL Graphical & statistical tools Data stratification Graphical Statistics for Discrete Data Pareto analysis Dot plots Plotting data over time: Looking for patterns Variation Concepts Variation is reality Special Cause and Common Cause variation Example of standard business reporting Individuals Control Chart Process Capability Genesis of process capability Calculating the metrics of Six Sigma Yield metrics: Measuring process efficiency Cost of Poor Quality The Cost of Poor Quality (COPQ) Cost of Quality categories Calculating the Cost of Poor Quality Measure Summary Introduction to Analyze Process Analysis Introduction to process analysis Value-added analysis Cycle time analysis WIP & pull systems Analyzing bottlenecks and constraints Cause & Effect Analysis Fishbone/Ishikawa diagram 5-Whys analysis Graphical & statistical tools Advanced Analysis Why use hypothesis rests? Hypothesis tests Correlation and regression analysis Analyze Summary Introduction to Improve Solutions Creativity techniques Generating alternative solutions Solution selection techniques Introduction to Design of Experiments Introduction to DOE DOE activity Error Proofing Failure mode & effect analysis Poka-Yoke Project Management Fundamentals Successful teams Project roles Conflict management Standardization Standardization The Visual Workplace 5S Piloting & Verifying Results What is a pilot? Evaluating results Improve Summary Introduction to Control Statistical Process Control Review of Special & Common Cause variation Review of Individual Control Chart P-Chart for discrete proportion data Transition Planning Control plan Project closure Control Summary Summary and Next Steps

Lean Six Sigma Green Belt Certification Program
Delivered In-Person in LondonFlexible Dates
£5,295