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

22049 Courses

Foundation Ladies Cutting & Styling

By Alan d Hairdressing Education

Take your first step into the world of hairdressing with this Beginners Hairdressing Course. You will learn the 9 Alan d Foundation haircuts along with classes on shampooing, blow-drying, cutting, styling, client care and salon protocol.

Foundation Ladies Cutting & Styling
Delivered In-PersonFlexible Dates
£600 to £3,000

M.D.D ECLECTIC INTEGRATIVE THERAPY PACKAGE (SELF IMPROVEMENT)

4.9(27)

By Miss Date Doctor Dating Coach London, Couples Therapy

Introducing the Eclectic/Integrative Therapy Package: Personalized Healing for a Holistic Transformation Are you looking for a therapy approach that is tailored to your unique needs and draws upon various therapeutic techniques? Miss Date Doctor’s Eclectic/Integrative Therapy Package offers you a comprehensive and personalized healing journey that combines the best elements from different therapeutic modalities. Eclectic/Integrative Therapy is a flexible and adaptive approach that recognizes that each individual is unique and may respond differently to various therapeutic interventions. Our experienced therapists will work collaboratively with you to create a treatment plan that addresses your specific challenges and goals. Here’s how the Eclectic/Integrative Therapy Package can support you: Personalized Treatment Plan: Our therapists will conduct a thorough assessment to understand your needs, history, and preferences. Based on this assessment, a personalized treatment plan will be crafted, drawing from a diverse range of therapeutic techniques. Tailored Approach: Eclectic/Integrative Therapy allows for flexibility, ensuring that the therapy approach is continually adjusted to meet your evolving needs. Your therapy sessions will be dynamic and adaptable, providing you with the most effective support throughout your healing journey. Holistic Healing: This approach considers your physical, emotional, and mental well-being as interconnected aspects of your overall health. As a result, the therapy will address multiple dimensions of your life to promote holistic healing and growth. Combined Techniques: Our therapists may integrate techniques from various modalities, such as Cognitive Behavioral Therapy (CBT), Psychodynamic Therapy, Mindfulness-Based Therapy, and more. This combination allows for a comprehensive and well-rounded therapeutic experience. Targeted Intervention: Eclectic/Integrative Therapy allows us to target specific issues and challenges effectively. Whether it’s addressing anxiety, relationship difficulties, or self-esteem issues, the therapy is adapted to suit your unique needs. Emphasis on Client Empowerment: The Eclectic/Integrative Therapy Package empowers you to take an active role in your healing process. You’ll be encouraged to collaborate with your therapist, setting goals and actively participating in decision-making. Flexible Duration: Unlike strict adherence to one therapeutic model, the duration of the Eclectic/Integrative Therapy Package is tailored to your progress and needs. Your therapist will regularly reassess your growth and make adjustments to the treatment plan accordingly. At Miss Date Doctor, we believe that healing is a deeply personal journey. The Eclectic/Integrative Therapy Package honours your individuality, empowering you to take charge of your healing process. Our therapists are committed to providing you with the support and guidance needed for a transformative and meaningful therapeutic experience. Experience the power of personalized healing with the Eclectic/Integrative Therapy Package. Embrace the diversity of therapeutic techniques and unlock your potential for growth, self-awareness, and lasting positive change. Take the first step towards a holistic transformation today. 3 X 1 hour sessions https://relationshipsmdd.com/product/eclectic-integrative-therapy-package/

M.D.D ECLECTIC INTEGRATIVE THERAPY PACKAGE (SELF IMPROVEMENT)
Delivered in London or UK Wide or OnlineFlexible Dates
£650

An Understanding of Physiological Observations

By Guardian Angels Training

Enhance patient care with our "Understanding Physiological Observations" course. Gain comprehensive knowledge and skills to accurately assess and interpret vital signs and other measurements.

An Understanding of Physiological Observations
Delivered In-Person in InternationallyFlexible Dates
£1,175

inGenius Memory

By inGeniusly

If you have the desire to memorise anything incredibly quickly, and retain it for as long as you need, this course is for you! In a fun, dynamic way, where we purposefully combine different teaching approaches to get you to a level of mastery in the shortest possible time, we will teach you the ins and outs of memory. You will be amazed by how powerful your own brain can be!

inGenius Memory
Delivered Online & In-PersonFlexible Dates
£1,500

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

Cognicert ISO 7101 Healthcare Quality Lead Auditor Course

5.0(1)

By Cognicert Limited

ISO 7101 Healthcare Quality Management System Lead Auditor Course provides participants with the knowledge and skills necessary to lead audits of quality management systems within healthcare organizations. This comprehensive training program covers the principles, processes, and practices of auditing healthcare quality management systems, focusing on key standards and regulations applicable to the healthcare industry.

Cognicert ISO 7101 Healthcare Quality Lead Auditor Course
Delivered OnlineFlexible Dates
£500 to £900

Strategic Thinking (In-Person)

By IIL Europe Ltd

Strategic Thinking (In-Person) The goal of this course is to provide you with the building blocks and the motivation to develop the critical skill of strategic thinking. The participants will consider a four-part model that distinguishes strategic thinking from strategic planning and managing. With that understanding, you will investigate the critical components of strategic thinking and how to apply it effectively. What You Will Learn You will learn how to: Define strategic thinking and distinguish it from strategic planning and management Explain a high-level approach to gaining strategic thinking skills Integrate other interpersonal skills, such as self-awareness, systems thinking, leadership, constructive conflict, and collaboration, into the fabric of strategic thinking skills Select appropriate techniques to apply strategic thinking in specific situations Recognize and emulate effective strategic thinking behaviors Getting Started Introductions Course structure Course goals and objectives Foundation Concepts Interactive event: Define Strategic Thinking (ST) Interactive event: Discuss relationship of ST with Strategic Planning, Management and Decision Making Strategic Level Framework - Tying it all together Strategic thinking attributes Strategic Thinking Critical Success Factors Strategic Thinking Critical Success Factors - 5-part model Strategic Thinking and the Organization Critical Success Factors Model applied to an organization Tools Introduction (5): Environmental, 5 Forces, SWOT, Value Proposition, Integral Theory of Worldview Video: Fog of War Strategic Thinking and the Individual Critical Success Factors Model applied to an individual Tools Introduction (5): Thinking Styles, Six Thinking Hats, Reverse Thinking, Systems Thinking, Integral Theory of Worldview Strategic Thinking at the Interpersonal and Team Levels Emotional Intelligence - Self Awareness and Working With Others Team Leadership and Trust Constructive Conflict as the Gateway to Collaboration Interactive event: Testing the Models - Challenge Perspective; What's Missing Applying the critical skill of Strategic Thinking Worldview: Team versus client Trusted Advisor Interactive event: Doing what is asked (Case study, wherein participants review the default case scenario prepared for this workshop and add specific details to make the scenario more relevant to their experiences / needs. Teams develop an action plan for applying ST concepts and techniques they have learned here to the situation, then compare and contrast results.)

Strategic Thinking (In-Person)
Delivered In-Person in LondonFlexible Dates
£1,295

Effective Project Management Techniques

4.9(27)

By Apex Learning

Give a compliment to your career and take it to the next level. This Project Management: Project Manager bundle will provide you with the essential knowledge to shine in your professional career. Whether you want to develop Project Management : Project Manager skills for your next job or elevate your skills for your next promotion, this Project Manager bundle will help you stay ahead of the pack. Throughout the Project Manager programme, it stresses how to improve your competency as a person in your chosen field while also outlining essential career insights in the relevant job sector. Along with this Project Management: Project Manager course, you will get 19 premium courses, an original hardcopy, 20 PDF certificates (Main Course + Additional Courses) Student ID card as gifts. This Project Management : Project Manager Bundle Consists of the following Premium courses: Course 01: Project Management Course 02: Project Manager Training Course Course 03: Operations Management Course 04: Business Law Course 05: Strategic Business Management Course 06: People Management Skills Level 3 Course 07: Construction Project Management Level 4 Course 08: Construction Cost Estimation Diploma Course 09: Business Intelligence Analyst Course Course 10: Capital Budgeting & Investment Decision Rules Course 11: Level 3 Tax Accounting Course 12: Corporate Risk And Crisis Management Course 13: Financial Modeling Using Excel Course 14: Risk Management Course 15: Office Skills and Administration Management Diploma Course 16: Business Performance Management Course 17: Crisis Management Course Course 18: Raise Money and Valuation for Business Course 19: Excel Must know Formulas and Functions Course 20: Workplace Health and Safety Diploma Enrol now in Project Management: Project Manager to advance your career and use the premium study materials from Apex Learning. The Project Management: Project Manager bundle incorporates basic to advanced level skills to shed some light on your way and boost your career. Hence, you can strengthen your Project Management: Project Manager expertise and essential knowledge, which will assist you in reaching your goal. Moreover, you can learn Project Management: Project Manager from any place in your own time without travelling for classes. Certificate: PDF Certificate: Free (Previously it was £6*11 = £66) Hard Copy Certificate: Free (For The Project Management: Previously it was £10) CPD 205 CPD hours / points Accredited by CPD Quality Standards Who is this course for? Anyone from any background can enrol in this Project Management: Project Manager bundle. Requirements This Project Management: Project Manager course has been designed to be fully compatible with tablets and smartphones. Career path Having this expertise will increase the value of your CV and open you up to multiple job sectors. Certificates Certificate of completion Digital certificate - Included Certificate of completion Hard copy certificate - Included You will get the Hard Copy certificate for the title course Project Management absolutely Free! Other Hard Copy certificates are available for £10 each. Please Note: The delivery charge inside the UK is £3.99, and the international students must pay a £9.99 shipping cost.

Effective Project Management Techniques
Delivered Online On Demand
£100

Administering Microsoft SQL Server

5.0(3)

By Systems & Network Training

Administering Microsoft SQL Server course description This course provides students with the knowledge and skills to maintain a Microsoft SQL Server database. The course focuses on how to use SQL Server 2016 product features and tools related to maintaining a database. Note: This course is designed for customers who are interested in learning SQL Server 2014 or SQL Server 2016. It covers the new features in SQL Server 2016, but also the important capabilities across the SQL Server data platform. What will you learn Describe core database administration tasks and tools. Configure SQL Server databases and storage. Import and export data. Monitor SQL Server. Trace SQL Server activity. Manage SQL Server security. Audit data access and encrypt data. Administering Microsoft SQL Server course details Who will benefit: Individuals who work with SQL Server databases. Individuals who develop applications that deliver content from SQL Server databases. Prerequisites: Introduction to data communications & networking. Duration 3 days Administering Microsoft SQL Server course contents Introduction to SQL Server administration Database administration, SQL Server platform, database management tools and techniques. Hands on SQL Server Management Studio, sqlcmd Windows PowerShell with SQL Server. Working with databases and storage Data storage with SQL Server, managing storage for system databases, managing storage for user databases, moving database files, configuring the buffer pool extension. Hands on Configuring tempdb storage, creating databases, attaching a database. Importing and exporting data Transferring data, importing and exporting table data, copying or moving a database. Hands on import and export wizard, bcp utility, BULK INSERT statement, OPENROWSET function. Monitoring SQL Server 2014 Monitoring SQL Server, dynamic management views and functions, performance monitor. Hands on Baseline metrics, monitoring a workload. Tracing SQL Server activity Tracing workload activity, using traces. Hands on Capturing a trace in SQL Server profiler, generating tuning recommendations. Managing SQL Server security SQL Server security, server-level security, database-level principals, database permissions. Hands on SQL Server security. Testing access.

Administering Microsoft SQL Server
Delivered in Internationally or OnlineFlexible Dates
£2,367

Manual Handling Awareness (On-Site)

4.9(182)

By You Can Do It .Training

This course will make delegates aware of the regulations regarding the moving and handling of...

Manual Handling Awareness (On-Site)
Delivered In-Person in Stoke on Trent or UK WideFlexible Dates
£532