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

33410 FA courses

Decision Making and Problem Solving (In-Person)

By IIL Europe Ltd

Decision Making and Problem Solving (In-Person) We may live in an era of fast technology and increasing reliance upon automation, but our human abilities to think critically, make careful decisions, and solve nuanced problems are more important than ever. Our personal lives depend on those things, and so do the lives of our organizations. Since business is now conducted at remarkable speeds, we put our organizations at great risk daily when we have weak competencies with decision-making and problem-solving. Decisions and solutions that are executed impulsively and without structured approaches can create more problems or make existing ones worse! This course aims to help participants improve their skills so they can execute well and add value to the workplace. Learners will experience multiple decision-making and problem-solving models, tools, and techniques meant for the real world. They will learn how to align their growing toolboxes with the right situational contexts so that they can transfer that skill to the workplace. They will also discover how indecision, cognitive bias, and default thought processes can create obstacles to effective decision-making and problem-solving. What you will Learn Recognize the importance of making a sound decision in a timely manner Infer types of cognitive biases and obstacles that impact decision-making Separate facts, requirements, ideas, and perceptions when making a decision or solving problems Apply structured decision-making and problem-solving approaches Conduct cause and effect and Force Field analyses Evaluate alternative solution methods using various techniques Analyze real world situations to determine the best aligned decision-making and problem-solving models, tools, and techniques Implement decision-making and problem-solving models, tools, and techniques Getting Started Foundation Concepts Contextualizing decisiveness and problem-solving Discriminating between decisiveness and problem-solving Understanding Decision-Making Decision-making challenges and impacts Key drivers of good decision-making Thought processes and obstacles Knowledge, skills, and abilities (KSAs) Decision-Making Models and Supporting Tools Decision-making models, tools, and guidelines Tools to evaluate alternatives Translating requirements into action Problem-Solving Defining the problem Problem-solving models Cause and effect analysis Quick hit vs. innovative problem-solving Summary and Next Steps Course summary Personal action plan

Decision Making and Problem Solving (In-Person)
Delivered In-Person in LondonFlexible Dates
£1,295

Decision Making and Problem Solving: In-House Training

By IIL Europe Ltd

Decision Making and Problem Solving: In-House Training We may live in an era of fast technology and increasing reliance upon automation, but our human abilities to think critically, make careful decisions, and solve nuanced problems are more important than ever. Our personal lives depend on those things, and so do the lives of our organizations. Since business is now conducted at remarkable speeds, we put our organizations at great risk daily when we have weak competencies with decision-making and problem-solving. Decisions and solutions that are executed impulsively and without structured approaches can create more problems or make existing ones worse! This course aims to help participants improve their skills so they can execute well and add value to the workplace. Learners will experience multiple decision-making and problem-solving models, tools, and techniques meant for the real world. They will learn how to align their growing toolboxes with the right situational contexts so that they can transfer that skill to the workplace. They will also discover how indecision, cognitive bias, and default thought processes can create obstacles to effective decision-making and problem-solving. What you will Learn Recognize the importance of making a sound decision in a timely manner Infer types of cognitive biases and obstacles that impact decision-making Separate facts, requirements, ideas, and perceptions when making a decision or solving problems Apply structured decision-making and problem-solving approaches Conduct cause and effect and Force Field analyses Evaluate alternative solution methods using various techniques Analyze real world situations to determine the best aligned decision-making and problem-solving models, tools, and techniques Implement decision-making and problem-solving models, tools, and techniques Foundation Concepts Contextualizing decisiveness and problem-solving Discriminating between decisiveness and problem-solving Understanding Decision-Making Decision-making challenges and impacts Key drivers of good decision-making Thought processes and obstacles Knowledge, skills, and abilities (KSAs) Decision-Making Models and Supporting Tools Decision-making models, tools, and guidelines Tools to evaluate alternatives Translating requirements into action Problem-Solving Defining the problem Problem-solving models Cause and effect analysis Quick hit vs. innovative problem-solving Summary and Next Steps Course summary Personal action plan

Decision Making and Problem Solving: In-House Training
Delivered in London or UK Wide or OnlineFlexible Dates
£1,295

Level 7 Diploma in Leadership Coaching and Mentoring

By Harpar Qualifications Ltd

Who are these qualifications for? These qualifications are designed for managers and leaders who have the authority and responsibility for developing and implementing a coaching and mentoring strategy across the organisation. The qualifications require managers and leaders to build on their strategic management and leadership skills and to focus on the requirements of embedding the organisation’s strategy.

Level 7 Diploma in Leadership Coaching and Mentoring
Delivered Online On Demand
£1,999

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

Coaching sessions

By Sinéad Robertson

Simply speaking, Life Coaching is about raising awareness of how we can move from A to B. Sometimes we don't know what place B is, and we can use Coaching to gain clarity on what B looks and feels like. Life Coaching is non-directive, which means as a Coach, I help you to unlock your potential rather than tell you what to do. The experience creates a space for accountability and motivation to take positive action. ​ My role as your Holistic Coach is to provide you with a safe space for you to ground, explore & embrace your emotions, claim your personal power to design & live your dream life.

Coaching sessions
Delivered in Derby + 1 more or OnlineFlexible Dates
FREE to £1,500

ICA Advanced Certificate in Managing Sanctions Risk

By International Compliance Association

ICA Advanced Certificate in Managing Sanctions Risk Sanctions are a key tool in the armoury of the global fight against financial crime. Understanding sanctions remains a complex yet fascinating topic and is crucial for the development of well-rounded strategy in combating financial crime. The ICA Advanced Certificate in Managing Sanctions Risk explores the intricacies and challenges of meeting sanctions obligations. You will learn about the latest sanctions challenges and best practice and you will review case studies so you understand the risks sanctions present to firms and the frameworks used to manage these risks. The course will also investigate key areas of sanctions controls such as sanctions screening, managing alerts and sanctions evasion typologies. This course will enable you to: Understand latest sanctions challenges Learn sanctions best practice Review case studies, so you understand the risks sanctions present to firms and the frameworks used to manage these risks Investigate key areas of sanctions controls such as sanctions screening, managing alerts and sanctions evasion typologies. Benefits of studying with ICA: Flexible learning solutions that are suited to you Our learner-centric approach means that you will gain relevant practical and academic skills and knowledge that can be used in your current role Improve your career options by undertaking a globally recognised qualification that hiring managers look for as part of their hiring criteria Many students have stated that they have received a promotion and/or pay rise as a direct result of gaining their qualification The qualifications ensure that you are enabled to develop strategies to help manage and prevent risk within your firm, thus making you an invaluable asset within the current climate This course is awarded in association with Alliance Manchester Business School, the University of Manchester. Students who successfully complete the assessment criteria for this course will be awarded the ICA Advanced Certificate in Managing Sanctions Risk and will be able to use designation - (Adv.Cert(Sanctions). What will you learn? Global sanctions architecture - Political, Legal and Implementation context The international context Transparency, control and ownership Developing the control framework Sanctions lifting and roll back Identifying higher risk jurisdictions and activities

ICA Advanced Certificate in Managing Sanctions Risk
Delivered Online On Demand6 months
£1,950

CLAB Candle Artist Course

By Noel Candle

CLAB Candle Artist's professional candle certificate course teaches the principles of candle making and covers 29 unique candle items.

CLAB Candle Artist Course
Delivered in St. Helens or OnlineFlexible Dates
Price on Enquiry

AYURVEDA THERAPIES - INTENSIVE BODY

By Renew Therapies Wellbeing Centre & Training Acdemy

This is an intensive 5 day training course covering all of our Ayurveda face and Body therapies. This course is for therapists looking to advance their skills. All the courses can be booked separately (see separate listings) but booking our 5 day intensive back to back course saves you £500+ pounds. In this course we cover; Marma-Point Massage An ancient therapy combining pressure to specific marma (vital) points all over the body and yogic stretches of all joints. The massage manipulates healthy flow of energy through the body’s junctions and nadis (pathways and channels), and delivery is personalised according to your needs. Pinda Sweda Hot Compress Massage Therapeutic Ayurvedic herbal powders are crushed in a traditional pestle and mortar and tied into a muslin cloth which forms the medium for this treatment, known in India as a bolus. After warming, oil is applied to the body using the bolus and an Ayurvedic technique known as pummelling. Extremely nourishing, strengthening and rejuvenating, this treatment is great for sports enthusiasts as it addresses problems relating to weak joints and sore muscles. Ayurveda Body Detox Scrub A treatment that originated in India, this cleansing treatment uses specific ground Ayurvedic herbs which are vigorously rubbed over the body to help draw out impurities and reduce water retention. The natural ingredients also exfoliate, leaving lustre to the skin surface. Padabhyanga Tri-Dosha’s Ayurvedic alternative to reflexology. Combining deeply therapeutic techniques to release energy blockages, improve circulation and restore tired calf muscles, the body is eased and energised. In addition, the soles of the feet are cleansed and nourished. Ideal as a preventative monthly maintenance therapy against the stresses of the modern world. Shiroabhyanga A deeply therapeutic caring treatment designed to nourish the scalp, and wash away tensions associated with migraine, headache and neck stiffness. It involves warm dosha-specific oils poured into the hair, aiding the nourishment of roots. While the indigenous herbs calm and revitalise the spirit, ancient massage techniques allow the body to surrender and enhance overall equilibrium. Shirodhara Hot Oil Scalp Massage Warm blended oil is gently poured in a slow rhythmic movement over the forehead marma (vital) point, also known as the third eye. Profoundly relaxing, this treatment works to switch off a chattering mind and induce deep rest for a renewed energy and calm that borders meditation. A facial or foot and leg treatment precedes the shirodhara.

AYURVEDA THERAPIES - INTENSIVE BODY
Delivered Online & In-PersonFlexible Dates
£600 to £1,500

Advanced Investigation Skills (3 Days)

4.3(10)

By The TCM Group

This three-day investigation and interviewing skills course is an advanced course designed specifically for specialist investigators or those who undertake investigations on a full-time basis.

Advanced Investigation Skills (3 Days)
Delivered In-PersonFlexible Dates
£1,095

Building High-Performance Teams: In-House Training

By IIL Europe Ltd

Building High-Performance Teams: In-House Training This course pulls together the most current and popular theories and writings on this complex topic and presents this amalgamated view in a highly interactive workshop and activity-based approach. Students will understand and have the skills required to build and participate in high-performance project teams and will possess the insight to proactively affect change within their respective organizations by guiding the existing culture to one that promotes high performance. What you will Learn At the end of this program, you will be able to: Define a team and describe the optimum team size for effective performance Describe characteristics and guiding behaviors of high-performance teams Describe the major elements of each development stage in two distinct models Recognize cultural barriers in achieving high performance List the attributes of a high-performing corporate culture Assess your own corporate culture Discuss corporate leadership as a factor in building high-performance project teams Describe the three A's of selecting team members State three leadership responsibilities Describe leadership responsibilities, styles, and roles List and describe the eight components of the team charter model for building high-performance teams Foundation Concepts The Nature of Teams Characteristics of High-Performance Teams Understanding Team Development Stages of Team Development - Model 1 Stages of Team Development - Model 2 Designing a High-Performance Culture Corporate Cultures Corporate Leadership Establishing the Attributes of High Performance Choosing the Right People Team Effectiveness Team Leadership The Team Charter Model

Building High-Performance Teams: In-House Training
Delivered in London or UK Wide or OnlineFlexible Dates
£1,295