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

947 Improv courses in London

M.D.D HOW TO SET BOUNDARIES PACKAGE (DATING/RELATIONSHIP COURSES)

4.9(27)

By Miss Date Doctor Dating Coach London, Couples Therapy

Do you struggle to stand up for yourself? Do you always tolerate people treating you badly in relationships? Do you find yourself in bad relationships constantly? Do you always hang on to people for fear of being on your own? This course is to help those who always end up being bullied and mistreated in relationships and struggle to set boundaries, exercise principles and self-value. This course will teach you how to: Correct unhealthy dating patterns Improve self-esteem Have more confidence Not be afraid to walk away from negative relationships Enforce boundaries when disrespected Build respect in relationships Enhance understanding and self-communication Recognise personal needs Pinpoint areas that are causing present issues https://relationshipsmdd.com/product/how-to-set-boundaries-package/

M.D.D HOW TO SET BOUNDARIES PACKAGE (DATING/RELATIONSHIP COURSES)
Delivered in London or UK Wide or OnlineFlexible Dates
£750

DevOps demystified

5.0(3)

By Systems & Network Training

DevOps demystified training course description This course is an introduction to DevOps. The course emphasizes communication, collaboration , integration, and automation to improve the workflow between developers and IT operations professionals. Improved workflows lead to more opportunities to design software and services in a more agile fashion. This course is a basis for discovering the most important DevOps concepts and to understand the principles and methods behind this. The course will leave you with the inspiration to be the advocate of change. What will you learn Explain DevOps principles. Describe the relationship between Agile , Lean and IT Service Management ( ITSM). Describe methods for automation and technology factors. Describe considerations when changing. Describe challenges, risks and critical success factors. DevOps demystifieds training course details Who will benefit: Non-technical staff involved with DevOps. Prerequisites: None. Duration 1 day DevOps demystified training course contents Why DevOps? From a business perspective From an IT perspective Stereotypes of Dev and Ops: perception and reality What is DevOps? Introduction DevOps Goals DevOps Added value of DevOps Proven Results DevOps for businesses DevOps principles (The Three Ways) DevOps and other frameworks DevOps and Agile DevOps and Lean DevOps and IT Service Management DevOps culture Characteristics of a DevOps culture Organizational Considerations DevOps DevOps stakeholders DevOps roles DevOps teams DevOps organizational structures DevOps methods Continuous Integration Continuous delivery Continuous deployment Value stream mapping Kanban Theory of Constraints Improvement Kata Deming's quality circle ITSM processes DevOps and Automation Methods for DevOps automation Longevity and tools categories DevOps applications Transitioning to a DevOps culture Implementation Challenges, risks and critical success factors Measuring DevOps successes

DevOps demystified
Delivered in Internationally or OnlineFlexible Dates
£967

Assessing the Water-Steam Chemistry Cycle in Thermal Power Plants

By EnergyEdge - Training for a Sustainable Energy Future

About this Virtual Instructor Led Training (VILT)  This 2-half-day Virtual Instructor Led Training (VILT) course will discuss the chemical aspects of the water-steam cycle in a power plant. The VILT course will examine the different types of chemicals used in boilers, potential issues in a water-steam cycle as well as aspects of monitoring and specifications regarding target values and alarm levels. Participants will also be equipped on what to do or key action steps to take in the event of chemistry-related incidents. This course is delivered in partnership with ENGIE Laborelec. Training Objectives The VILT course will cover the following: Detailed aspects of chemistry in a water steam cycle, including types of chemicals used in boilers depending on the treatment and type of boiler Potential issues in a water-steam cycle such as corrosion and deposition Monitoring & analytical programmes and knowledge of specifications for the water steam cycle (normal values targets - alarm levels) Chemistry aspects during transition periods: start-up, shutdown and preservation Actions to be taken in the event of an alarm Examples of incidents or deviations compared to normal chemistry Target Audience The VILT course is intended for: Power plant chemists Plant operation or maintenance engineers Consultants and technical project managers Boiler engineers Course Level Basic or Foundation Training Methods The VILT course will be delivered online in 2 half-day sessions comprising 4 hours per day, with 2 x 10 minutes break per day, including time for lectures, discussion, quizzes and short classroom exercises. Course Duration: 2 half-day sessions, 4 hours per session (8 hours in total). Trainer Your expert course leader is a chemistry consultant in the energy sector. He works with operators of power plants and industrial facilities. He is active in water-steam cycle chemistry, where he provides support to increase chemistry maturity through audits, trainings or development of key performance indicators. His role also includes operational assistance in the field of chemical cleaning and troubleshooting. More recently, he expanded his field of competence towards electrical storage. In this regard, he specializes in electrochemistry and is in charge of different tests on batteries and their components within the ENGIE Batteries Lab. POST TRAINING COACHING SUPPORT (OPTIONAL) To further optimise your learning experience from our courses, we also offer individualized 'One to One' coaching support for 2 hours post training. We can help improve your competence in your chosen area of interest, based on your learning needs and available hours. This is a great opportunity to improve your capability and confidence in a particular area of expertise. It will be delivered over a secure video conference call by one of our senior trainers. They will work with you to create a tailor-made coaching program that will help you achieve your goals faster. Request for further information about post training coaching support and fees applicable for this. Accreditions And Affliations

Assessing the Water-Steam Chemistry Cycle in Thermal Power Plants
Delivered in Internationally or OnlineFlexible Dates
£1,203 to £1,399

Regular expressions for engineers

5.0(3)

By Systems & Network Training

Regular expressions training course description Regular expressions are an extremely powerful tool for manipulating text and data. They are now standard features in a wide range of languages and popular tools, including Python and MySQL. Regular expressions allow you to code complex and subtle text processing that you never imagined could be automated. Once you've mastered regular expressions, they'll become an invaluable part of your toolkit. You will wonder how you ever got by without them. What will you learn Use Regular Expressions. Troubleshoot Regular Expressions. Compare RE features among different versions. Explain how the regular expression engine works. Optimize REs. Match what you want, not what you don't want. Regular expressions training course details Who will benefit: Anyone looking to use regular expressions. Prerequisites: None. Duration 1 day Regular expressions training course contents Introduction to Regular Expressions Solving real problems, REs as a language, the filename analogy, language analogy, RE frame of mind, searching text files: egrep, egrep metacharacters, start and end of the line, character classes, matching any character with dot, alternation, ignoring differences in capitalization, word boundaries, optional items, other quantifiers: repetition, parentheses and backreferences, the great escape, expanding the foundation, linguistic diversification, the goal of a RE, more examples, RE nomenclature, Improving on the status quo. Extended introductory examples A short introduction to Perl, matching text with regular expressions, toward a more real-world example, side effects of a successful match, Intertwined regular expression, intermission, modifying text with regular expressions, example: form letter, example: prettifying a stock price, automated editing, a small mail utility, adding commas to a number with lookaround, text-to-HTML conversion, that doubled-word thing. Regular expression features and flavours The regex landscape, origins of REs, care and handling of REs, Integrated handling, procedural and object-oriented handling, search-and-replace example. strings character encodings and modes, strings as REs, character-encoding issues, unicode, regex modes and match modes, common metacharacters and features, character representations, character classes and class-like constructs, anchors and other 'zero-width assertions', comments and mode modifiers, grouping capturing conditionals and control. The mechanics of expression processing Two kinds of engines, new standards, regex engine types, from the department of redundancy department, testing the engine type, match basics, about the examples, rule 1: the match that begins earliest wins, engine pieces and parts, rule 2: the standard quantifiers are greedy, regex-directed versus text-directed, NFA engine: regex-directed, DFA engine: text-directed, first thoughts: NFA and DFA in comparison, backtracking, two important points on backtracking, saved states, backtracking and greediness, more about greediness and backtracking, problems of greediness, multi-character 'quotes', lazy quantifiers, greediness and laziness, laziness and backtracking, possessive quantifiers and atomic grouping, possessive quantifiers ?, +, *+, ++ and {m,n}+, the backtracking of lookaround, is alternation greedy? taking advantage of ordered alternation, NFA DFA and posix, the longest-leftmost', posix and the longest-leftmost rule, speed and efficiency. Practical regex techniques Continuation lines, matching an IP address, working with filenames, matching balanced sets of parentheses, watching out for unwanted matches, matching delimited text, knowing your data and making assumptions, stripping leading and trailing whitespace, matching and HTML tag, matching an HTML link, examining an HTTP URL, validating a hostname, plucking a hostname, plucking a URL, parsing CSV files. Crafting an efficient expression Efficiency vs. correctness, localizing greediness, global view of backtracking, more work for POSIX NFA, work required during a non-match, being more specific, alternation can be expensive, benchmarking, know what you re measuring, benchmarking with Python, common optimisations, the mechanics of regex application, pre-application optimizations, optimizations with the transmission, optimization of the regex itself, techniques for faster expressions, common sense techniques, expose literal text, expose anchors, lazy versus greedy: be specific, split into multiple REs, mimic initial-character discrimination, use atomic grouping and possessive quantifiers, lead the engine to a match, unrolling the loop, observations, using atomic grouping and possessive quantifiers, short unrolling examples, unrolling C comments, the free flowing regex, a helping hand to guide the match, a well-guided regex is a fast regex.

Regular expressions for engineers
Delivered in Internationally or OnlineFlexible Dates
£967

Foundations of Positive Behaviour Support

By Guardian Angels Training

Gain a comprehensive understanding of positive behavior support principles, strategies, and techniques with our course. Ideal for educators, caregivers, and professionals working with individuals with developmental disabilities, mental health issues, or behavioral challenges.

Foundations of Positive Behaviour Support
Delivered In-Person in InternationallyFlexible Dates
£1,175

M.D.D I DON’T THINK WOMEN ARE ATTRACTED TO ME PACKAGE (MEN DATING SERVICES)

4.9(27)

By Miss Date Doctor Dating Coach London, Couples Therapy

Dating tips Confidence boosting sessions Daily dating support 30 mins per day twice a week Whatsapp Ascertain cause of self-doubt Improve mindset Self-belief building Establish dating needs Analyse taste in women Dating advice 4 x 1-hour sessions (1 per week) https://relationshipsmdd.com/product/m-d-d-i-dont-think-women-are-attracted-to-me-package/

M.D.D I DON’T THINK WOMEN ARE ATTRACTED TO ME PACKAGE (MEN DATING SERVICES)
Delivered in London or UK Wide or OnlineFlexible Dates
£700

M.D.D RELATIONSHIP COACHING COURSES FOR SINGLES (DATING/RELATIONSHIP COURSES)

4.9(27)

By Miss Date Doctor Dating Coach London, Couples Therapy

Relationship Coaching Dating World Communication skills Emotional intelligence Healthy boundaries Compatible partners Self Improvement Personal growth Self Love Past trauma Mindfulness Self awareness Free support calls as apart of your course to speak to your qualified experienced coach 4 week course https://relationshipsmdd.com/product/relationship-coaching-courses-for-singles/

M.D.D RELATIONSHIP COACHING COURSES FOR SINGLES (DATING/RELATIONSHIP COURSES)
Delivered in London or UK Wide or OnlineFlexible Dates
£700

VTCT Level 3 Swedish Body Massage Fast Track Course

By The Angel Academy Of Teaching & Training

Course Content History of Massage Benefits and effects of treatment Associated Anatomy & Physiology Contra-indications & contra-actions to treatment Client care and communication in beauty related industries Aftercare advice Monitor and maintain health and safety practice in the salon Practical demonstration Professional assessment Record cards and data-protection Duration Four days – 10.00am - 4.00pm

VTCT Level 3 Swedish Body Massage Fast Track Course
Delivered In-PersonFlexible Dates
£899

How to build a system that drives school improvement

By Marell Consulting Limited

If you want to be able to offer a consistently better quality of education for your pupils without the stress that comes with worrying about Ofsted all the time, this workshop is for you.

How to build a system that drives school improvement
Delivered in Birmingham or UK Wide or OnlineFlexible Dates
£497

M.D.D OUR RELATIONSHIP IS AN EMOTIONAL ROLLERCOASTER (COUPLES)

4.9(27)

By Miss Date Doctor Dating Coach London, Couples Therapy

Constantly making up and breaking up Improve communication Self-regulation Improve understanding Address trust and respect issues Healthy relationship course Be a better partner training for both parties Emotional intelligence and relationship disciplines training 6 sessions 1-hour x 6 https://relationshipsmdd.com/product/our-relationship-is-an-emotional-rollercoaster/

M.D.D OUR RELATIONSHIP IS AN EMOTIONAL ROLLERCOASTER (COUPLES)
Delivered in London or UK Wide or OnlineFlexible Dates
£650