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

3998 Courses delivered Online

Aromatherapy, Holistic & Massage Therapy Course

5.0(1)

By Course Gate

Welcome to Aromatherapy, Holistic & Massage Therapy Course. It is not a secret anymore that Aromatherapy helps people to defeat physiological issues. Aromatherapy treatments primarily incorporate massage, topical applications, and inhalation. The course introduces you with the benefits of Aromatherapy, Holistic & Massage Therapy that use essential oils and other aromatic plant composites. You will learn the skills for massaging, including different kinds of massage techniques and grasp the art of massage therapy. Furthermore, understand how aromatherapy can practice as the treatment to relieve or heal various shambles. Additionally, the course mentions a range of essential oils that have been used to relief from pain or for relaxation.  Who is the course for? Professionals and Trainers who want to become an expert therapist Anyone who wants to know the art of massaging and different massaging techniques Entry Requirement: This course is available to all learners, of all academic backgrounds. Learners should be aged 16 or over to undertake the qualification. Good understanding of English language, numeracy and ICT are required to attend this course. CPD Certificate from Course Gate At the successful completion of the course, you can obtain your CPD certificate from us. You can order the PDF certificate for £9 and the hard copy for £15. Also, you can order both PDF and hardcopy certificates for £22. Career path This course opens a new door for you to enter the relevant job market and also gives you the opportunity to acquire extensive knowledge along with required skills to become successful. You will be able to add our qualification to your CV/resume which will help you to stand out in the competitive job industry. Course Curriculum Massage Therapy Introduction to Massage Therapy 00:05:00 Massage History 00:15:00 The Role of A Massage Therapist 00:30:00 Tissues, Organs, & Neuromuscular systems 00:15:00 General Benefits of Massage 00:15:00 Indian Head Massage 00:15:00 Facial Massage 00:30:00 Neck Massage 00:30:00 Back Massage 00:30:00 Full Body Massage 00:10:00 Swedish Massage 00:15:00 Sports Massage 00:30:00 LomiLomi Massage 00:15:00 Anti-Cellulite Massage 00:15:00 Hot Stone Massage 00:30:00 Thai Foot Massage 00:15:00 Prenatal Massage 00:15:00 Medical Massage 01:00:00 Baby Massage 01:00:00 Trigger Point Therapy 01:00:00 Thai Massage 01:00:00 Reflexology 01:00:00 Conclusion to Massage 00:15:00 Acupressure Acupressure 00:30:00 How Acupressure Works 00:30:00 Locating A Pressure Point 01:00:00 Acupressure Techniques 00:30:00 How To Apply Pressure 00:30:00 Breathing 00:30:00 Things To Be Careful Of 00:30:00 Acupressure For Specific Problems 00:30:00 If You Feel It's Not Working 00:15:00 Conclusion 00:15:00 Aromatherapy What is Aromatherapy? 00:15:00 History of Aromatherapy 00:15:00 The Definition of Aromatherapy 00:15:00 What are Essential Oils? 00:15:00 Essential Oil Safety Information 00:15:00 Administration of Essential Oils 00:30:00 The Art of Blending 00:15:00 Blending Basics 00:15:00 Harmonising Your Blend 00:30:00 Aromatherapy Baths 00:15:00 Aromatherapy for Stress 00:15:00 Aromatherapy for Children 00:14:00 Application of Essential Oils 00:15:00 Table of the Basic Methods of Use of Essential Oils 00:15:00 The Holistic Approach 00:30:00 Understanding Disease / Pathology 00:30:00 The Benefits of a Holistic Aromatherapy Treatment 00:15:00 Holistic Therapy General Holistic Health Tips 01:00:00 Vitamins and Herbs 01:00:00 Natural Food Choices 01:00:00 Skin Remedies 01:00:00 Certificate and Transcript Order Your Certificates or Transcripts 00:00:00

Aromatherapy, Holistic & Massage Therapy Course
Delivered Online On Demand24 hours
£11.99

Introduction Perl Programming Essentials (TT4925)

By Nexus Human

Duration 4 Days 24 CPD hours This course is intended for This course is appropriate for anyone who wants to create applications or modules to automate and simplify common tasks with Perl. Overview Working within in an engaging, hands-on learning environment, guided by our expert web development, PHP practitioner, students will learn to: Create a working script that gets input from the command line, the keyboard, or a file Use arrays to store and process data from files Create formatted reports Use regular expressions Use the appropriate types of variables and data structures Refactor duplicate code into subroutines and modules What is available in the standard library Use shortcuts and defaults, and what they replace Introduction to Perl Programming Essentials is an Introductory-level practical, hands-on Perl scripting training course that guides the students from the basics of writing and running Perl scripts to using more advanced features such as file operations, report writing, the use of regular expressions, working with binary data files, and using the extensive functionality of the standard Perl library. Students will immediately be able to use Perl to complete tasks in the real world. Session: An Overview of Perl What is Perl? Perl is compiled and interpreted Perl Advantages and Disadvantages Downloading and Installing Perl Which version of Perl Getting Help Session: Creating and running Perl Programs Structure of a Perl program Running a Perl script Checking syntax and warnings Execution of scripts under Unix and Windows Session: Basic Data and I/O Numeric and Text literals Math operators and expressions Scalar variables Default values Writing to standard output Command line arguments Reading from the standard input Session: Logic and Loops About flow control The if statement and Boolean values Using unless and elsif Statement modifiers warn() and die() The conditional construct Using while loop and its variants Using the for loop Exiting from loops Session: Lists and Arrays The list data type Accessing array elements Creating arrays List interpolation Arrays and memory Counting elements Iterating through an array List evaluation Slices and ranges Session: Reading and writing text files File I/O Overview Opening a file Reading text files Writing to a text file Arrays and file I/O Using the <> operator Session: List functions Growing and shrinking arrays The split() function Splitting on whitespace Assigning to literal lists The join() function The sort() function Alternate sort keys Reversing an array Session: Formatting output Using sprintf() and printf() Report formatting overview Defining report formats The write() function Advanced filehandle magic Session: Hashes Hash overview Creating hashes Hash attributes Traversing a hash Testing for existence of elements Deleting hash elements Session: References What is a reference? The two ways to create references References to existing data References to anonymous data Dereferencing scalar, array, and ash references Dereferencing elements of arrays and hashes Multidimensional arrays and other data structures Session: Text and Regular Expressions String length The substr() function The index() and rindex() functions String replication Pattern matching and substitution Regular expressions Session: Raw file and data access Opening and closing raw (binary) files Reading raw data Using seek() and tell() Writing raw data Raw data manipulation with pack() and unpack() Session: Subroutines and variable scope Understanding packages Package and Lexical variables Localizing builtin variables Declaring and calling subroutines Calling subroutines Passing parameters and returning values Session: Working with the operating system Determining current OS Environment variables Running external programs User identification Trapping signals File test operators Working with files Time of day Session: Shortcuts and defaults Understanding $_ shift() with no array specified Text file processing Using grep() and Using map() Command-line options for file processing Session: Data wrangling Quoting in Perl Evaluating arrays Understanding qw( ) Getting more out of the <> operator Read ranges of lines Using m//g in scalar context The /o modifier Working with embedded newlines Making REs more readable Perl data conversion Session: Using the Perl Library The Perl library Old-style library files Perl modules Modules bundled with Perl A selection of modules Getting modules from ActiveState Getting modules from CPAN Using Getopt::Long Session: Some Useful Tools Sending and receiving files with Net::FTP Using File::Find to search for files and directories Grabbing a Web page Some good places to find scripts Perl man pages for more information Zipping and unzipping files

Introduction Perl Programming Essentials (TT4925)
Delivered OnlineFlexible Dates
Price on Enquiry

Electrical Machines Online Course for Electrical Engineers - Bundle

By Study Plex

Highlights of the Course Course Type: Online Learning Duration: 1 to 2 hours Tutor Support: Tutor support is included Customer Support: 24/7 customer support is available Quality Training: The course is designed by an industry expert Recognised Credential: Recognised and Valuable Certification Completion Certificate: Free Course Completion Certificate Included Instalment: 3 Installment Plan on checkout What you will learn from this course? Gain comprehensive knowledge about electrical machines Understand the core competencies and principles of electrical machines Explore the various areas of electrical machines Know how to apply the skills you acquired from this course in a real-life context Become a confident and expert electrical engineer Electrical Machines Online Course for Electrical Engineers - Bundle Course Master the skills you need to propel your career forward in electrical machines. This course will equip you with the essential knowledge and skillset that will make you a confident electrical engineer and take your career to the next level. This comprehensive electrical machines course is designed to help you surpass your professional goals. The skills and knowledge that you will gain through studying this electrical machines course will help you get one step closer to your professional aspirations and develop your skills for a rewarding career. This comprehensive course will teach you the theory of effective electrical machines practice and equip you with the essential skills, confidence and competence to assist you in the electrical machines industry. You'll gain a solid understanding of the core competencies required to drive a successful career in electrical machines. This course is designed by industry experts, so you'll gain knowledge and skills based on the latest expertise and best practices. This extensive course is designed for electrical engineer or for people who are aspiring to specialise in electrical machines. Enrol in this electrical machines course today and take the next step towards your personal and professional goals. Earn industry-recognised credentials to demonstrate your new skills and add extra value to your CV that will help you outshine other candidates. Who is this Course for? This comprehensive electrical machines course is ideal for anyone wishing to boost their career profile or advance their career in this field by gaining a thorough understanding of the subject. Anyone willing to gain extensive knowledge on this electrical machines can also take this course. Whether you are a complete beginner or an aspiring professional, this course will provide you with the necessary skills and professional competence, and open your doors to a wide number of professions within your chosen sector. Entry Requirements This electrical machines course has no academic prerequisites and is open to students from all academic disciplines. You will, however, need a laptop, desktop, tablet, or smartphone, as well as a reliable internet connection. Assessment This electrical machines course assesses learners through multiple-choice questions (MCQs). Upon successful completion of the modules, learners must answer MCQs to complete the assessment procedure. Through the MCQs, it is measured how much a learner could grasp from each section. In the assessment pass mark is 60%. Advance Your Career This electrical machines course will provide you with a fresh opportunity to enter the relevant job market and choose your desired career path. Additionally, you will be able to advance your career, increase your level of competition in your chosen field, and highlight these skills on your resume. Recognised Accreditation This course is accredited by continuing professional development (CPD). CPD UK is globally recognised by employers, professional organisations, and academic institutions, thus a certificate from CPD Certification Service creates value towards your professional goal and achievement. Course Curriculum Course Content Introduction to Electric Machines 00:03:00 Types of Electric Machines and Principle of Electricity Generation 00:09:00 DC Machines Importance and Construction of DC Machines 00:26:00 Armature Winding and EMF Equation 00:39:00 Solved Example 1 00:04:00 Solved Example 2 00:03:00 Solved Example 3 00:07:00 Solved Example 4 00:06:00 Separately Excited DC Machine 00:20:00 Shunt and Series DC Machines 00:25:00 Solved Example 1 on Separately Excited DC Machine 00:07:00 Solved Example 2 on Separately Excited DC Machine 00:07:00 Solved Example 3 on Shunt Generator 00:04:00 Solved Example 4 on Shunt Generator 00:06:00 Solved Example 5 on Series DC Generator 00:06:00 Types and Applications of Compound DC Motors 00:07:00 Torque-Speed Characteristics and Speed Control of Separately Excited DC Motor 00:33:00 Torque-Speed Characteristics of Series DC Motor 00:08:00 Solved Example 1 on Speed Control 00:08:00 Solved Example 2 on Speed Control 00:05:00 Starting of DC Machine 00:13:00 Armature Reaction in DC Machines 00:10:00 Losses in DC Machines 00:03:00 Construction of Transformer What is The Construction of Transformer, Importance and Iron Core 00:02:00 Magnetic Circuit Inside Transformer 00:04:00 Windings of Transformer 00:03:00 Why are Windings Made of Copper 00:01:00 Classification of Windings 00:04:00 Insulating Material and Transformer Oil 00:02:00 Conservator of Transformer 00:02:00 Breather of Transformer 00:03:00 Bushings of Transformer 00:04:00 Tap Changer of Transformer 00:03:00 Cooling Tubes of Transformer 00:01:00 Buchholz Relay of Transformer 00:02:00 Explosion Vent In Transformer 00:02:00 Methods of Cooling In Transformer 00:02:00 Types of Transformers 00:02:00 Power Transformer and Distribution Transformer 00:05:00 Single Phase Core Type Transformer 00:04:00 Single Phase Shell Type Transformer 00:04:00 Three Phase Core Type Transformer 00:01:00 Three Phase Shell Type Transformer 00:01:00 Comparison between Shell and Core CSA 00:01:00 Comparison between Shell and Core Type 00:01:00 Notes 00:03:00 Video Explaining The Components in 3D and Real Life 00:04:00 Fundamentals of Magnetic Circuits for Electrical Engineering Introduction to Magnetic Circuits 00:02:00 Induced Emf and Current 00:04:00 Ampere Right Hand Rule 00:04:00 Magnetic Circuit and Important Definitions 00:06:00 Linear and Non Linear Materials 00:02:00 Flux Linkage and Reluctance 00:03:00 Analogy between Electric and Magnetic Circuits 00:05:00 Fringing Effect 00:01:00 Example 1 Magnetic Circuits 00:06:00 Example 2 00:02:00 Example 3 00:05:00 Application on Magnetic Circuit - Transformers 00:03:00 Theoretical Part on Transformers Introduction to Transformers 00:02:00 Construction of Transformer 00:01:00 Theory of Operation 00:04:00 Ideal Transformer 00:04:00 Non Ideal Transformer 00:02:00 Effect of Loading on Transformer 00:03:00 Transformer Regulation 00:02:00 Transformer Losses 00:03:00 Transformer Efficiency 00:04:00 Transformer Rating 00:01:00 Question 1 00:01:00 Question 2 00:01:00 Question 3 00:01:00 Example 1 00:01:00 Voltage Relation of Transformer 00:04:00 Transformer Exact Equivalent Circuit 00:06:00 Concept of Refereeing 00:04:00 Approximate Equivalent Circuit 00:02:00 Synchronous Machines Construction and Principle of Operation of Synchronous Generator 00:29:00 Principle of Operation of Synchronous Motor 00:24:00 Equivalent Circuit and Phasor Diagram of Non Salient Synchronous Machine 00:29:00 Solved Example 1 on Non Salient Machine 00:04:00 Solved Example 2 on Non Salient Machine 00:10:00 Solved Example 3 on Non Salient Machine 00:07:00 Solved Example 4 on Non Salient Machine 00:04:00 Solved Example 5 on Non Salient Machine 00:07:00 Solved Example 6 on Non Salient Machine 00:03:00 Equivalent Circuit and Phasor Diagram of Salient Synchronous Machine 00:38:00 Solved Example 1 on Salient Machine 00:09:00 Solved Example 2 on Salient Machine 00:05:00 Solved Example 3 on Salient Machine 00:09:00 Parallel Operation of Two Generators 00:17:00 Synchronization of Machine with Grid 00:10:00 Induction Machines Construction and Theory of Operation of Induction Machines 00:27:00 Equivalent Circuit and Power Flow in Induction Motor 00:23:00 Torque-Speed Characteristics of Induction Motor 00:19:00 Solved Example 1 on Induction Motor 00:07:00 Solved Example 2 on Induction Motor 00:06:00 Solved Example 3 on Induction Motor 00:06:00 Solved Example 4 on Induction Motor 00:18:00 Solved Example 5 on Induction Motor 00:13:00 Methods of Speed Control of Induction Motor 00:27:00 Methods of Starting of Induction Motor 00:21:00 Solved Example on Motor Starter 00:14:00 Principle of Operation of Doubly Fed Induction Generator 00:11:00 Self Excited Induction Generator 00:08:00 Obtain Your Certificate Order Your Certificate of Achievement 00:00:00 Get Your Insurance Now Get Your Insurance Now 00:00:00 Feedback Feedback 00:00:00

Electrical Machines Online Course for Electrical Engineers - Bundle
Delivered Online On Demand
£19

Diploma in Art Therapy - CPD Certified

By Wise Campus

Art Therapy: Diploma in Art Therapy Do you want to enhance mental and emotional well-being by combining psychotherapy with visual arts? Our course on art therapy offers a thorough introduction to the ideas and methods of art therapy. Our art therapy course examines how artistic expression may facilitate emotional expression, the resolution of internal conflicts, and the development of self-awareness. In our art therapy course, students learn the use of art as a diagnostic tool, the therapeutic interaction, and a variety of art forms. Moreover, this art therapy course addresses art therapy's theoretical underpinnings, real-world applications, and ethical issues. So, join our art therapy course to learn through practical exercises, case studies, and discussions! Learning outcome of Art Therapy: Diploma in Art Therapy Course With our art therapy course, you will learn: The overview of art therapy, its techniques, and art therapy's psychological approaches. Also, our art therapy explains cultural and ethical aspects. You will learn how to provide art therapy for different individuals in various settings. Art therapy's creative methods and digital art therapy are parts of this art therapy course. Moreover, art therapy on the autism spectrum and developmental disabilities are also included in our art therapy training. Special Offers of this Art Therapy: Diploma in Art Therapy Course This Art Therapy: Diploma in Art Therapy Course includes a FREE PDF Certificate. Lifetime access to this Art Therapy: Diploma in Art Therapy Course Instant access to this Art Therapy: Diploma in Art Therapy Course Get FREE Tutor Support to this Art Therapy: Diploma in Art Therapy Course Art Therapy: Diploma in Art Therapy Unlock the healing power of creativity with our Art Therapy: Art Therapy course, designed to enhance mental and emotional well-being through the fusion of psychotherapy and visual arts. This Art Therapy: Art Therapy course offers a comprehensive introduction to key concepts and techniques, guiding you in using artistic expression to facilitate emotional release, resolve internal conflicts, and develop self-awareness. You’ll explore the use of art as a diagnostic tool, the therapeutic interaction, and various art forms in our Art Therapy: Art Therapy course. Additionally, this Art Therapy: Art Therapy course delves into theoretical foundations, real-world applications, and ethical considerations, equipping you with essential skills for impactful practice. Who is this course for? Art Therapy: Diploma in Art Therapy Anyone can take our Art Therapy: Diploma in Art Therapy course. Requirements Art Therapy: Diploma in Art Therapy To enrol in this Art Therapy: Diploma in Art Therapy Course, students must fulfil the following requirements. To join in our Art Therapy: Diploma in Art Therapy Course, you must have a strong command of the English language. To successfully complete our Art Therapy: Diploma in Art Therapy Course, you must be vivacious and self driven. To complete our Art Therapy: Diploma in Art Therapy Course, you must have a basic understanding of computers. A minimum age limit of 15 is required to enrol in this Art Therapy: Diploma in Art Therapy Course. Career path Art Therapy: Diploma in Art Therapy If you have experience with Art Therapy: Diploma in Art Therapy training, your resume will be more valuable, and you will be considered for more opportunities.

Diploma in Art Therapy - CPD Certified
Delivered Online On Demand2 hours 6 minutes
£12

Grant Writing for Non-Profits

5.0(1)

By Course Gate

Learn essential grant writing skills to secure funding for your non-profit. Master proposal writing, budgeting, and funder alignment in our flexible online course.

Grant Writing for Non-Profits
Delivered Online On Demand1 hour 29 minutes
£11.99

Hands-on Linux - Self-Hosted WordPress for Linux Beginners

By Packt

Master the art of self-hosting WordPress on Linux with our comprehensive video course, designed to empower technical professionals to fully control their web presence.

Hands-on Linux - Self-Hosted WordPress for Linux Beginners
Delivered Online On Demand8 hours 32 minutes
£74.99

Sports Nutrition Diploma

By Training Tale

Sports Nutrition Diploma is important in maximising the benefits of physical exercise, whether you're a bodybuilder, a professional athlete in training, or working out to enhance your mental and physical health. Making smart nutrition and hydration decisions can result in greater performance, injury avoidance, and faster recovery. But it can be tough to know where to begin with so much contradicting information readily available. That's where a skilled sports nutritionist can help you make better decisions and eventually enhance your performance. Sports nutrition is the study and use of a diet/plan to improve athletic performance. To maximise energy and help in sports recovery, the proper amount of food type (protein, carbs, fats, fibre, etc.), fluids, and nutrients are provided. It is most commonly seen in endurance and strength sports. Athletes require different nutritional levels than non-athletes, hence sports nutrition differs from conventional nutrition. Our Sports Nutrition Diploma course is designed to introduce you to nutrition, as well as the role and importance of nutrition in leading a healthy lifestyle. It will also expand your knowledge so that you are able to build diet plans based on the demands of your clients. The only goal of the Sports Nutrition course is to teach a person about the fundamental as well as advanced mechanisms of nutrition as a whole that will assist an athlete perform at his or her best. This Sports Nutrition Diploma course will teach you about nutrition and its role and importance in leading a healthy lifestyle. It will also expand your knowledge so that you are well prepared to design diet plans based on your clients' needs. The sole purpose of our Sports Nutrition Diploma course is to teach an individual about the fundamental and advanced mechanisms of nutrition as a whole that will help an athlete perform at his or her best. Learning Outcomes By the end of Sports Nutrition Diploma course, you will be able to: Describe the basics of sports nutrition and its classification, including macro and micronutrients especially designed for athletes. Get insight into the digestive system. Explain nutritional requirements according to various age groups and professions. Demonstrate planning healthy eating habits for athletic clients. Understand the framework for energy requirements. Carry out weight control and weight loss management. Explain how to design nutrients plans for specific sports competitions and to replace them afterwards. Why Choose Sports Nutrition Diploma Course from Us Self-paced course, access available from anywhere. Easy to understand, high-quality study materials. Course developed by industry experts. MCQ quiz after each module to assess your learning. Automated and instant assessment results. 24/7 support via live chat, phone call or email. Free PDF certificate as soon as completing the course. ****6 Course Bundle**** Course 01: Sports Nutrition Diploma Course 02: Sports First Aid Course 03: Martial Arts First Aid Course 04: Level 5 Diploma in Nutrition Course Course 05: Childcare and Nutrition Course 06: Level 1 Diet and Nutrition Course ***Other Benefits Include*** Free 6 PDF Certificate Access to Content - Lifetime Exam Fee - Totally Free Free Retake Exam [ Note: Free PDF certificate as soon as completing the Sports Nutrition Diplomacourse] We will discuss all concerns and more in this Sports Nutrition course to help you learn how to properly sustain your way through training. This course will teach you how to improve your nutritional knowledge, enhance your energy levels, and maximise your performance, all while being more knowledgeable about your health and well-being. This course will be more helpful for fitness professionals, athletes, and non-athletes and will cover macronutrients, micronutrients, energy systems, nutritional timing, developing a nutrition plan, and fueling for competition. With this Sports Nutrition Diploma, you will find it much easier to achieve success and monetise your skills. This course is destined for both part-time and full-time students and can be completed at your own pace. Enrol in the Sports Nutrition Diploma to increase your knowledge of sports and nutrition and help athletes, sportspeople, and fitness enthusiasts to achieve their goals. Whether you plan to take this course for personal or professional reasons, it will benefit you at every stage of your life cycle; after all, health is wealth. In short, knowing what foods are good for your body is extremely important for leading a healthy lifestyle. Course Curriculum of *** Sports Nutrition Diploma *** Module 1: A Quick Overview of Sports Nutrition What is Sports-Nutrition? Why Study Sports Nutrition? What are the Basic Nutrients? How does the Body Produce Energy? What are the Dietary Reference Intakes? What are Enriched and Fortified Foods? What are the Factors to Consider When Developing an Individualized Sports Nutrition Plan for Athletes? Module 2: Diet and Nutrition: Dietary Guidelines Current Dietary Patterns in the UK Dietary Reference Values (DRVs) and Food-based Dietary Guidelines Diet Trends and Health Module 3: Nutrition and Athlete Health Introduction The Training Diet Special Issues Competition Eating Sports Foods and Supplements A Rational Approach to Supplement Module 4: Diet Planning Food for Energy CarbohydratesProteinHealthy FatsFruit and VegetablesFluids Exercise Routine How Much Exercise is Enough? Module 5: Healthy Dieting Balanced Diet Health and Fitness Using Basic Food Groups for Planning Balanced Diets Module 6: The Digestive System Introduction Enzymes and Digestion Key Components of the Digestive System Processes in the Digestive System Module 7: Water Water and its Functions The Importance of Water in the Body The Significance of Water to the Diet Module 8: Weight Control and Weight Loss Management Introduction Weight - Control Behavior in Athletes Achieving a Healthy and Competitive Body Weight Energy Restriction Approaches Timing of Food Consumption During Training and Throughout the Day Diet Plan for Weight Loss Consumption of Energy Dense Beverage Protein Intake, Quality, and Timing Module 9: The Role of the Vegetarian/Vegan in Sports Nutrition Introduction Types of Vegetarian Diets Vegetarian Diets and Athletic Performance Disadvantages of the Vegetarian Diets Practical Applications Module 10: Myth and Misinformation Various Myths Relating to Sports Nutrition Module 11: Performance Boosters Introduction Definition of a Dietary Supplement Sports Foods Performance Supplements Disadvantages of Sports Foods and Dietary Supplements -------------------- ***Course 02: Sports First Aid*** Course Curriculum Module 01: An Overview of Sports First Aid Module 02: Preliminary Analysis Module 03: Importance of Life-Saving Priorities Module 04: First Aid for Frequent Injuries Module 05: First Aid for Severe Injuries Module 06: Injuries Caused by the Environment Module 07: Understanding Medical Emergencies Module 08: Points to Remember ----------------- ***Course 03: Martial Arts First Aid Course Curriculum Module 01: An Overview of Martial Airs First Aid Module 02: Primary Assessment Module 03: CPR & Recovery Position Module 04: Dealing with Frequent Injuries Module 05: Dealing with Serious Injuries Module 06: Dealing with Medical Emergencies Module 07: The Way of Preventing Injuries Module 08: Things to Remember ----------------- ***Course 04: Level 5 Diploma in Nutrition Course Course Curriculum Module 1: Introduction to Nutrition Module 2: Diet and Nutrition: Dietary Guidelines Module 3: Nutrition and the Human Body Module 4: Nutrition Important for Metabolism and Blood Function Module 5: Macronutrients in the Diet: Protein Module 6: Macronutrients in the Diet: Lipids Module 7: Nutrition throughout the Life Cycle Module 8: Nutrition and Society: Food Politics and Views --------------- ***Course 05: Childcare and Nutrition Course Curriculum Module 01: Childcare and Nutrition Module 02: Children Growth and Development Module 03: Health and Safety of Children Module 04: Hygiene for Child Caring Module 05: The Use of Macronutrients Module 06: The Use of Micronutrients Module 07: Nutritional Requirements of Child Module 08: Child Nutritional Problem and Physical Development Module 09: Caring for Special Needs Children Module 10: Child Abuse and Neglect Module 11: Nutrition Education and Activities ---------------- ***Course 06: Level 1 Diet and Nutrition Course Course Curriculum Module 01: Introduction to Diet and Nutrition Module 02: Dietary Nutrition Module 03: Food Composition Module 04: Principles of Healthy Eating Assessment Method After completing each module of Sports Nutrition Diploma Course, you will find automated MCQ quizzes. To unlock the next module, you need to complete the quiz task and get at least 60% marks. Once you complete all the modules in this manner, you will be qualified to request your certification. Certification After completing the MCQ/Assignment assessment for Sports Nutrition Diploma course, you will be entitled to a Certificate of Completion from Training Tale. It will act as proof of your extensive professional development. The certificate is in PDF format, which is completely free to download. A printed version is also available upon request. It will also be sent to you through a courier for £13.99. Who is this course for? The Sports Nutrition Diploma course is ideal for highly motivated individuals who want to improve their professional skills and train for the job of their dreams! In addition, this Course is also suitable for those who want to gain in-depth knowledge on the subject and stay up to date with the latest information. Requirements There are no specific requirements for Sports Nutrition Diploma course because it does not require any advanced knowledge or skills. Students who intend to enrol in this course must meet the following requirements: Good command of the English language Must be vivacious and self-driven Basic computer knowledge A minimum of 16 years of age is required Career path A career in Sports Nutrition Diploma can be challenging, rewarding, and frustrating at times, but it is never boring. Although there are significant challenges in many sectors, such as funding availability and commercial sustainability, this will require managers of high caliber and with a diverse set of specialties, and it provides great opportunity for innovation. Certificates Certificate of completion Digital certificate - Included

Sports Nutrition Diploma
Delivered Online On Demand22 hours
£12

VMware vRealize Automation: Install, Configure, Manage [v8.3]

By Nexus Human

Duration 5 Days 30 CPD hours This course is intended for Experienced system administrators and system integrators responsible for designing and implementing vRealize Automation Overview By the end of the course, you should be able to meet the following objectives: Describe the vRealize Automation architecture and use cases in cloud environments Manage vRealize Automation entities on VMware and third-party virtual and cloud infrastructures Configure and manage Cloud Accounts, Projects, Flavor Mappings, Image Mappings, Network Profiles, Storage Profiles, Volumes, Tags, and Services Create, modify, manage, and deploy Cloud Templates Connect to a Kubernetes Cluster and manage namespaces Customize services and virtual machines with cloudConfig Configure and manage the Service Broker Configure and manage ABX actions, custom properties, event broker subscriptions, and vRealize Orchestrator workflows Integrate with vRealize Orchestrator Install vRealize Automation with Lifecycle Configuration Manager Describe Cloud Automation Services (Cloud Assembly and Code Stream). Integrate Cloud Assembly with Terraform and SaltStack Use logs and CLI commands to monitor and troubleshoot vRealize Automation During this five-day course, you focus on installing, configuring, and managing VMware vRealize© Automation?. You learn about how vRealize Automation can be used to automate the delivery of virtual machines, applications, and personalized IT services across different data centers and hybrid cloud environments. The course covers how to manage both on-premise systems and cloud services. The course covers how vRealize Automation Service Broker can aggregate content in native formats from multiple clouds and platforms into a common catalog. This course also covers interfacing vRealize Automation with other systems using VMware vRealize© Orchestrator? and how to use vRealize Automation to manage Kubernetes systems and leverage other systems. The course also covers integrating with Terraform and using SaltStack as a configuration management tool. Course Introduction Introductions and course logistics Course objectives vRealize Automation Overview and Architecture Describe the purpose and functionality of vRealize Automation Describe the vRealize Automation architecture Describe the use of VMware Workspace ONE© AccessTM Describe the relationship between Kubernetes clusters, containers, and vRealize Automation services Describe CLI commands for vRealize Automation 8 cluster management Describe Cloud Assembly Describe Service Broker Describe Code Stream Installing vRealize Automation List the different vRealize Automation deployment types Describe the purpose of vRealize easy installer Describe the vRealize Automation installation process Authentication and Authorization Identity the steps involved in integrating Workspace One with Active Directory Describe features of Workspace One Describe the user roles available in vRealize Automation Identify the key tasks performed by each user role Define custom roles Configure branding and multitenancy Basic Initial Configuration Quickly create a basic configuration with a cloud account, cloud zone, project, flavor mapping, and image mapping. VMware Cloud Templates Configure and deploy a basic cloud template Create cloud templates that can run on any cloud Use cloudConfig to run commands, install software, and create users Use YAML for inputs, variables, and conditional deployments Tags and Storage Configuration Configure tags Describe different types of tags Manage tags Configure storage profiles Use tags and storage profiles Integrating NSX-T Data Center List the capabilities and use cases of NSX-T Data Center Describe the NSX-T Data Center architecture and components Integrate NSX-T Data Center with vRealize Automation List the supported network profiles in vRealize Automation Use NSX-T Data Center components to design a multitier application Cloud Template Identify the network and security options available in design canvas Create and manage on-demand networks and security groups Configure NSX-T day 2 actions Integrating with Public Clouds Configure and use VMware Cloud Foundation accounts Configure and use an AWS cloud account Configure and use an Azure cloud account Configure and use a Google Cloud Platform cloud account Using Service Broker for Catalog Management Release a VMware Cloud Template? Define content source and content sharing Define Service Broker policy enforcement Use custom forms for catalog items vRealize Automation Extensibility Describe Extensibility Use event topics Create a subscription Call a vRealize Orchestrator workflow Create ABX actions Using Code Stream Introduction to Code Stream The CI/CD process Integrate GitLab with Code Stream and Cloud Assembly Use Code Stream to install software Using Terraform Integrate Cloud Assembly with Terraform Use Terraform with a VMware Cloud Template Use Terraform with Code Stream Using Kubernetes Clusters Introduction to Kubernetes Connect to an existing Kubernetes Cluster Integrate VMware Tanzu? Grid Integrated Edition Create a Supervisor Namespace as a catalog item Using SaltStack for Configuration Management Introduction SaltStack with vRealize Automation Use SaltStack for software deployment Use SaltStack for configuration management Use SaltStack with event-driven orchestration vRealize Automation Troubleshooting and Integration Location of logs Using Activity Monitoring deployment history Basic troubleshooting CLI commands Collecting logs (VAMI console) Integration with VMware vRealize© Log Insight? Integration with vRealize Operations Migrating vRealize Automation 7.x to 8

VMware vRealize Automation: Install, Configure, Manage [v8.3]
Delivered OnlineFlexible Dates
Price on Enquiry

Administering Team Foundation Server 2017

By Nexus Human

Duration 3 Days 18 CPD hours This course is intended for This course is intended for experienced administrators with a background in either software development or system administration. Team leaders, lead developers, and other accidental Team Foundation Server administrators are also encouraged to take this course. This course will also help a student prepare for the relevant Microsoft certification exam. Overview At course completion, attendees will have had exposure to: - TFS editions and components - Supported topologies and environments - Must-have TFS administration tools - Hardware and software requirements - Required service accounts and permissions - Installing Team Foundation Server - Configuring Team Foundation Server - Managing relevant SQL Server components - Managing relevant SharePoint components - Installing and using Team Explorer - Team project collections and team projects - Using and customizing process templates - TFS licensing and Client Access Licenses - Connecting and using Microsoft Excel & Project - Installing and using Team Explorer Everywhere - Integrating TFS and SharePoint - Using the TFS web portal - Git and TFVC version control systems - Basic and advanced version control workflows - Configuring and using code search - Controlling access to version controlled items - Command-line and third party tools - Configuring automated builds - Deploying and using Visual Studio agents - Configuring agent pools and queues - Creating and queuing automated builds - Configuring Package Management - Configuring Release Management - Creating a release definition - Creating and deploying a release - Strategies for upgrading and migrating to TFS - Integrating TFS with other systems and data - High availability and scalability options - Capacity planning and disaster recovery - Backing up, restoring, and moving TFS data - Managing the data warehouse - Using PowerShell to manage TFS - Customizing Team Foundation Server - Extending Team Foundation Server Provides students with the knowledge and skills to deploy, configure, and manage Microsoft Team Foundation Server 2019 and related software components. Introduction to Team Foundation Server Introduction to Team Foundation Server Editions, components, and configurations Visual Studio Team Services comparison TFS' support of Application Lifecycle Management TFS administrator responsibilities and tasks ?Must-have? tools of a TFS administrator Planning and Deploying TFS Planning the deployment System requirements, software, and accounts Installing and configuring TFS Installing Team Explorer Troubleshooting Configuring TFS Administrator roles and tools Managing team project collections Managing team projects Managing process templates Securing TFS, SharePoint, and SQL Server Renaming and deleting a team project Client Applications TFS Client Access Licenses (CAL) Team Explorer and the web portal Microsoft Excel and Microsoft Project SharePoint project portal Team Explorer Everywhere Command-line and 3rd party tools Version Control Overview of Git and TFVC version control systems Integration with Visual Studio Using TFVC and Git version control Basic and advanced workflows Controlling access to version control Command-line tools and utilities TFS Proxy, MSSCCI Provider, and TFS Sidekicks Building and Releasing Overview of the Visual Studio build system Build agents, agent pools, agent queues Creating and queuing a build Monitoring, and managing a build Securing the build process Running tests as part of the build Overview of Package Management Overview of Release Management Defining, creating, and deploying a release Upgrading, Migrating, and Integrating Upgrading Team Foundation Server In-place vs. migration upgrade Performing post-upgrade tasks Migrating work items Migrating items under version controlled Integrating with Team Foundation Server Custom and 3rd party solutions Advanced Administration Monitoring the health of Team Foundation Server Web-based diagnostic tools Options for scalability and high availability Disaster recovery, backup, and restore Moving Team Foundation Server Managing the data warehouse Using PowerShell to manage TFS Customizing and Extending Customizing vs. extending Customizing a process template Customizing a work item type Creating default work items Creating and using a global list Using Witadmin.exe Using work item templates Creating a custom report Using the REST API to extend Team Foundation Server Additional course details: Nexus Humans Administering Team Foundation Server 2017 training program is a workshop that presents an invigorating mix of sessions, lessons, and masterclasses meticulously crafted to propel your learning expedition forward. This immersive bootcamp-style experience boasts interactive lectures, hands-on labs, and collaborative hackathons, all strategically designed to fortify fundamental concepts. Guided by seasoned coaches, each session offers priceless insights and practical skills crucial for honing your expertise. Whether you're stepping into the realm of professional skills or a seasoned professional, this comprehensive course ensures you're equipped with the knowledge and prowess necessary for success. While we feel this is the best course for the Administering Team Foundation Server 2017 course and one of our Top 10 we encourage you to read the course outline to make sure it is the right content for you. Additionally, private sessions, closed classes or dedicated events are available both live online and at our training centres in Dublin and London, as well as at your offices anywhere in the UK, Ireland or across EMEA.

Administering Team Foundation Server 2017
Delivered OnlineFlexible Dates
Price on Enquiry

Security in Google Cloud

By Nexus Human

Duration 3 Days 18 CPD hours This course is intended for This class is intended for the following job roles: [Cloud] information security analysts, architects, and engineers Information security/cybersecurity specialists Cloud infrastructure architects Additionally, the course is intended for Google and partner field personnel who work with customers in those job roles. The course should also be useful to developers of cloud applications Overview This course teaches participants the following skills: Understanding the Google approach to security Managing administrative identities using Cloud Identity. Implementing least privilege administrative access using Google Cloud Resource Manager, Cloud IAM. Implementing IP traffic controls using VPC firewalls and Cloud Armor Implementing Identity Aware Proxy Analyzing changes to the configuration or metadata of resources with GCP audit logs Scanning for and redact sensitive data with the Data Loss Prevention API Scanning a GCP deployment with Forseti Remediating important types of vulnerabilities, especially in public access to data and VMs This course gives participants broad study of security controls and techniques on Google Cloud Platform. Through lectures, demonstrations, and hands-on labs, participants explore and deploy the components of a secure Google Cloud solution. Participants also learn mitigation techniques for attacks at many points in a Google Cloud-based infrastructure, including Distributed Denial-of-Service attacks, phishing attacks, and threats involving content classification and use. Foundations of GCP Security Google Cloud's approach to security The shared security responsibility model Threats mitigated by Google and by GCP Access Transparency Cloud Identity Cloud Identity Syncing with Microsoft Active Directory Choosing between Google authentication and SAML-based SSO GCP best practices Identity and Access Management GCP Resource Manager: projects, folders, and organizations GCP IAM roles, including custom roles GCP IAM policies, including organization policies GCP IAM best practices Configuring Google Virtual Private Cloud for Isolation and Security Configuring VPC firewalls (both ingress and egress rules) Load balancing and SSL policies Private Google API access SSL proxy use Best practices for structuring VPC networks Best security practices for VPNs Security considerations for interconnect and peering options Available security products from partners Monitoring, Logging, Auditing, and Scanning Stackdriver monitoring and logging VPC flow logs Cloud audit logging Deploying and Using Forseti Securing Compute Engine: techniques and best practices Compute Engine service accounts, default and customer-defined IAM roles for VMs API scopes for VMs Managing SSH keys for Linux VMs Managing RDP logins for Windows VMs Organization policy controls: trusted images, public IP address, disabling serial port Encrypting VM images with customer-managed encryption keys and with customer-supplied encryption keys Finding and remediating public access to VMs VM best practices Encrypting VM disks with customer-supplied encryption keys Securing cloud data: techniques and best practices Cloud Storage and IAM permissions Cloud Storage and ACLs Auditing cloud data, including finding and remediating publicly accessible data Signed Cloud Storage URLs Signed policy documents Encrypting Cloud Storage objects with customer-managed encryption keys and with customer-supplied encryption keys Best practices, including deleting archived versions of objects after key rotation BigQuery authorized views BigQuery IAM roles Best practices, including preferring IAM permissions over ACLs Protecting against Distributed Denial of Service Attacks: techniques and best practices How DDoS attacks work Mitigations: GCLB, Cloud CDN, autoscaling, VPC ingress and egress firewalls, Cloud Armor Types of complementary partner products Application Security: techniques and best practices Types of application security vulnerabilities DoS protections in App Engine and Cloud Functions Cloud Security Scanner Threat: Identity and Oauth phishing Identity Aware Proxy Content-related vulnerabilities: techniques and best practices Threat: Ransomware Mitigations: Backups, IAM, Data Loss Prevention API Threats: Data misuse, privacy violations, sensitive/restricted/unacceptable content Mitigations: Classifying content using Cloud ML APIs; scanning and redacting data using Data Loss Prevention API Additional course details: Nexus Humans Security in Google Cloud training program is a workshop that presents an invigorating mix of sessions, lessons, and masterclasses meticulously crafted to propel your learning expedition forward. This immersive bootcamp-style experience boasts interactive lectures, hands-on labs, and collaborative hackathons, all strategically designed to fortify fundamental concepts. Guided by seasoned coaches, each session offers priceless insights and practical skills crucial for honing your expertise. Whether you're stepping into the realm of professional skills or a seasoned professional, this comprehensive course ensures you're equipped with the knowledge and prowess necessary for success. While we feel this is the best course for the Security in Google Cloud course and one of our Top 10 we encourage you to read the course outline to make sure it is the right content for you. Additionally, private sessions, closed classes or dedicated events are available both live online and at our training centres in Dublin and London, as well as at your offices anywhere in the UK, Ireland or across EMEA.

Security in Google Cloud
Delivered OnlineFlexible Dates
Price on Enquiry