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

5881 Software courses

Essential Adobe InDesign Training Course

By ATL Autocad Training London

Who is this for? Essential Adobe InDesign Training Course. Acquire Adobe InDesign basics from certified instructors. Master layout design, typography, and core design concepts. Opt for in-person or live online sessions. Receive a Certificate of Completion and lifelong email assistance. Lean desktop publishing skills and quality layouts.  Click here for more info: Website Duration: 5 hours Approach: Individualized 1-on-1 training with customized content. Schedule: Flexible sessions, available Monday to Saturday from 9 am to 7 pm. Course Outline: Module 1: Introduction to Adobe InDesign (1 hour) Familiarize with workspace and tools Create new documents with appropriate page size and margins Effectively format text and images Customize the interface for efficient workflow Module 2: Text Formatting and Styles (1 hour) Apply consistent character and paragraph styles Manage text flow using frames Organize lists with bullets and numbering Master special characters for precise typography Module 3: Working with Images (1 hour) Import and position images in documents Adjust image size and alignment within frames Create professional layouts with text wrapping around images Enhance visuals with image frames and effects Module 4: Layout Design (1 hour) Create precise grids and guides for alignment Arrange objects for balanced layouts Streamline work with layers Maintain consistency using master pages and templates Module 5: Printing and Exporting (1 hour) Understand color modes and print principles Export to PDF and other formats for diverse outputs Ensure print readiness through preflighting Efficiently archive and manage InDesign files Through practical exercises, solidify your grasp of each module, enabling you to design visually appealing layouts, craft documents for various purposes, and manage InDesign projects adeptly. Adobe InDesign's potential is vast, and this fundamentals course opens doors for you to explore diverse design projects. Seize this opportunity to unleash your creative prowess with InDesign! Upon completing the Adobe InDesign Fundamentals course, participants will be able to: Master InDesign Tools: Demonstrate proficiency in utilizing InDesign's essential tools, workspace, and interface for effective design workflows. Layout Design Skills: Create visually appealing layouts using grids, guides, and balanced object arrangements, ensuring professional-quality design. Text Formatting Mastery: Apply consistent character and paragraph styles, manage text flow, and enhance typography with special characters. Image Manipulation Expertise: Import, position, and enhance images within frames, integrating them seamlessly into layouts. Printing and Exporting Proficiency: Understand color modes, print principles, and export documents to various formats, ensuring print readiness and diverse output options. Efficient Project Management: Utilize layers, master pages, and templates for streamlined project organization and management in InDesign. Book Recommendations: "InDesign CC Classroom in a Book" by Kelly Kordes Anton and John Cruise: This official Adobe guide provides hands-on lessons and practical techniques for mastering InDesign's core features. "InDesign Type: Professional Typography with Adobe InDesign" by Nigel French: Explore advanced typography techniques, layout principles, and typographic finesse specific to Adobe InDesign. "Real World Adobe InDesign CC" by Olav Martin Kvern, David Blatner, and Bob Bringhurst: A comprehensive guide offering practical insights, tips, and real-world techniques for InDesign users of all levels. "The Adobe InDesign CS6 Book for Digital Photographers" by Scott Kelby: Focused on integrating photography with InDesign, this book provides valuable insights into creating visually stunning layouts with images. "InDesign Secrets" by David Blatner and Anne-Marie Concepción: This book is packed with expert tips, tricks, and techniques that can significantly enhance your efficiency and creativity in InDesign. 1-on-1 InDesign Courses: Personalized Learning: Tailored 1-on-1 courses designed to meet your specific learning needs and goals. Expert Instructors: Learn from industry professionals with extensive experience in animation and design. Flexible Scheduling: Schedule sessions at your convenience, allowing you to balance learning with your busy lifestyle. Comprehensive Curriculum: Dive deep into animation techniques, software mastery, and creative skills through our comprehensive courses. Hands-On Training: Get practical, hands-on experience with real-world animation projects, enhancing your skills effectively. Individual Attention: Benefit from personalized attention and detailed feedback from instructors, ensuring your progress and understanding. Professional Development: Acquire skills relevant to the industry, empowering you for career advancement in animation and related fields. Portfolio Enhancement: Develop a strong portfolio with the guidance of experts, showcasing your newfound skills and creativity. Post-Course Support: Enjoy continued support even after the course completion, ensuring you have resources for ongoing learning and growth. Certification: Receive a certificate upon course completion, validating your expertise and enhancing your professional credentials. Course Highlights: Master Adobe InDesign's key features for layout, text, images, and graphics. Learn design principles and typography techniques for visually appealing documents. Efficiently handle multi-page projects like magazines and brochures. Utilize styles, templates, and libraries for streamlined design and consistency. Explore advanced techniques for interactive PDFs and digital publishing. Earn a Certificate of Completion for your Adobe InDesign proficiency. Flexible learning options: in-person or live online sessions. Lifetime email support for ongoing assistance after the course. Adobe InDesign Learn & Support https://helpx.adobe.com â€º support › indesign Get started with Adobe InDesign. Find tutorials, the user guide, answers to common questions, and help from the community forum.

Essential Adobe InDesign Training Course
Delivered in London or OnlineFlexible Dates
£180

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

Full Stack Web Development Mastery Course - Novice to Expert

By Packt

Learn modern frameworks and technologies, including JavaScript ES6, Bootstrap 5, Tailwind CSS, React, MongoDB, Express, and Nodejs. It's a step-by-step guide to building powerful web applications using cutting-edge technologies for your start-up or business. Learn powerful skills that will make you invaluable in the job market with no coding knowledge.

Full Stack Web Development Mastery Course - Novice to Expert
Delivered Online On Demand3 days
£41.99

ICT: Information and Communication Technology

4.5(3)

By Studyhub UK

This course on Information and Communication Technology (ICT) provides a comprehensive understanding of emerging technologies, input and output devices, storage media, networks, databases, and expert systems. It covers various ICT applications and their impact on society and businesses. Learning Outcomes: Understand the impact of emerging technologies on the field of ICT. Identify and describe different types of input and output devices used in computing. Familiarize with various storage devices and media and their applications. Gain knowledge about computer networks and their configurations. Explore the fundamentals of database systems and their importance in data management. Learn about expert systems and their role in decision-making processes. Discover practical ICT applications and their relevance in various domains. Why buy this ICT: Information and Communication Technology? Unlimited access to the course for forever Digital Certificate, Transcript, student ID all included in the price Absolutely no hidden fees Directly receive CPD accredited qualifications after course completion Receive one to one assistance on every weekday from professionals Immediately receive the PDF certificate after passing Receive the original copies of your certificate and transcript on the next working day Easily learn the skills and knowledge from the comfort of your home Certification After studying the course materials of the ICT: Information and Communication Technology there will be a written assignment test which you can take either during or at the end of the course. After successfully passing the test you will be able to claim the pdf certificate for £5.99. Original Hard Copy certificates need to be ordered at an additional cost of £9.60. Who is this course for? This ICT: Information and Communication Technology course is ideal for Students Recent graduates Job Seekers Anyone interested in this topic People already working in the relevant fields and want to polish their knowledge and skill. Prerequisites This ICT: Information and Communication Technology does not require you to have any prior qualifications or experience. You can just enrol and start learning.This ICT: Information and Communication Technology was made by professionals and it is compatible with all PC's, Mac's, tablets and smartphones. You will be able to access the course from anywhere at any time as long as you have a good enough internet connection. Career path As this course comes with multiple courses included as bonus, you will be able to pursue multiple occupations. This ICT: Information and Communication Technology is a great way for you to gain multiple skills from the comfort of your home. Course Curriculum Section 01: Introduction Introduction 00:06:00 What is ICT? 00:05:00 Hardware and Software 00:08:00 Information Processing Cycle 00:05:00 Software Explained 00:06:00 Human-Computer -Interface 00:07:00 Section 02: Impact of Emerging Technologies Introduction-Impact of Emerging Technology 00:01:00 Artificial intelligence 00:03:00 Biometrics 00:03:00 Vision enhancement 00:02:00 Robotics 00:03:00 Quantum cryptography 00:03:00 Computer-assisted translation 00:02:00 3D and holographic imaging 00:03:00 Virtual reality 00:06:00 Section 03: Types of Input Devices Types of Input Devices - Introduction 00:02:00 Manual input 00:07:00 Pointing devices 00:02:00 Inputting Images Devices 00:08:00 Inputting Sound & Music Devices 00:05:00 Direct input systems 00:07:00 Direct Input systems Part-2 00:05:00 Direct Input Systems Part-3 00:06:00 Direct Input Systems devices. Part-4 00:04:00 Sensors 00:05:00 Section 04: Types of Output Devices Types of Input Devices - Introduction 00:02:00 Monitors 00:06:00 Printers 00:08:00 Plotters 00:03:00 3D Printers 00:04:00 Speakers 00:02:00 Control Devices 00:06:00 Section 05: Storage Devices and Media Types of Storage Devices and Media 00:06:00 Magnetic Media 00:06:00 Optical media 00:10:00 Solid-State media 00:04:00 Backups 00:02:00 Section 06: Networks WHAT IS COMPUTER COMMUNICATION? 00:02:00 What is a computer network? 00:07:00 Types of NETWORK- Local Area Network 00:07:00 Wide Area Network 00:07:00 Bluetooth and WI-FI in Networks 00:07:00 Network Hardware 00:03:00 Network Switch 00:05:00 Network Bridge 00:02:00 Networking Hardware Router 00:05:00 Modem 00:04:00 Network Cables 00:03:00 How to set up a small network? 00:07:00 Section 07: Database What is a Database? 00:03:00 Database File 00:04:00 Database Types 00:09:00 Using Database 00:06:00 Data validation and verification 00:10:00 Section 08: Expert Systems What is an expert system? 00:10:00 Section 09: ICT Applications Applications in Banking: ATM, Electronic Fund Transfer 00:04:00 Applications in Banking: Internet Banking Telephone Banking 00:04:00 Applications in Banking: Cheque Clearing 00:05:00 RETAIL INDUSTRY Applications: POS 00:05:00 Retail: Stock Control 00:04:00 Retail: Automatic Reordering of Stock 00:03:00 Assignment Assignment - ICT: Information and Communication Technology 00:00:00

ICT: Information and Communication Technology
Delivered Online On Demand4 hours 59 minutes
£10.99

IT for Recruiters

4.5(3)

By Studyhub UK

Overview Uplift Your Career & Skill Up to Your Dream Job - Learning Simplified From Home! Kickstart your career & boost your employability by helping you discover your skills, talents and interests with our special IT for Recruiters Course. You'll create a pathway to your ideal job as this course is designed to uplift your career in the relevant industry. It provides professional training that employers are looking for in today's workplaces. The IT for Recruiters Course is one of the most prestigious training offered at StudyHub and is highly valued by employers for good reason. This IT for Recruiters Course has been designed by industry experts to provide our learners with the best learning experience possible to increase their understanding of their chosen field. This IT for Recruiters Course, like every one of Study Hub's courses, is meticulously developed and well researched. Every one of the topics is divided into elementary modules, allowing our students to grasp each lesson quickly. At StudyHub, we don't just offer courses; we also provide a valuable teaching process. When you buy a course from StudyHub, you get unlimited Lifetime access with 24/7 dedicated tutor support. Why buy this IT for Recruiters? Unlimited access to the course for forever Digital Certificate, Transcript, student ID all included in the price Absolutely no hidden fees Directly receive CPD accredited qualifications after course completion Receive one to one assistance on every weekday from professionals Immediately receive the PDF certificate after passing Receive the original copies of your certificate and transcript on the next working day Easily learn the skills and knowledge from the comfort of your home Certification After studying the course materials of the IT for Recruiters there will be a written assignment test which you can take either during or at the end of the course. After successfully passing the test you will be able to claim the pdf certificate for £5.99. Original Hard Copy certificates need to be ordered at an additional cost of £9.60. Who is this course for? This IT for Recruiters course is ideal for Students Recent graduates Job Seekers Anyone interested in this topic People already working in the relevant fields and want to polish their knowledge and skill. Prerequisites This IT for Recruiters does not require you to have any prior qualifications or experience. You can just enrol and start learning.This IT for Recruiters was made by professionals and it is compatible with all PC's, Mac's, tablets and smartphones. You will be able to access the course from anywhere at any time as long as you have a good enough internet connection. Career path As this course comes with multiple courses included as bonus, you will be able to pursue multiple occupations. This IT for Recruiters is a great way for you to gain multiple skills from the comfort of your home. Course Curriculum Introduction Introduction 00:02:00 IT Fundamentals What is hardware and software 00:04:00 Server 00:08:00 Project Life cycle 00:06:00 Software Development Life Cycle 00:08:00 IT Terms Basics Methodologies 00:09:00 CMS 00:04:00 API 00:04:00 CI/CD 00:04:00 Stacks 00:03:00 Native and Hybrid Native Apps 00:02:00 IT Positions CTO 00:13:00 IT Architect 00:08:00 Product Owner 00:12:00 Project Manager 00:13:00 Product Manager 00:06:00 PO vs PM vs Product Manager 00:07:00 PO vs Product Manager 00:04:00 Business Analyst 00:09:00 Business Intelligence Specialist 00:06:00 Data Engineer 00:05:00 Data Scientist 00:07:00 Data Engineer vs Data Scientist 00:07:00 Agile Coach 00:14:00 Scrum Master 00:08:00 Agile Coach vs Scrum Master 00:01:00 Frontend Developer 00:06:00 Backend Developer 00:06:00 Fullstack Developer 00:04:00 Frontend vs Backend vs Fullstack Developer 00:02:00 iOS Developer 00:03:00 Android Developer 00:04:00 UX Designer 00:09:00 UI Designer 00:08:00 UX vs UI Designer 00:04:00 QA Engineer_Tester 00:09:00 SysAdmin 00:07:00 DevOps 00:05:00 SEO 00:10:00 IT Technologies. Programming Languages and Frameworks Programming languages and frameworks. Intro 00:01:00 Programming languages and frameworks 00:08:00 Java 00:03:00 JavaScript 00:02:00 Python 00:01:00 C 00:02:00 C++ 00:03:00 C# 00:02:00 HTML 00:02:00 PHP 00:02:00 SWIFT 00:02:00 Objective-C 00:01:00 Ruby 00:02:00 SQL 00:02:00 Go (Golang) 00:01:00 Databases Database 00:05:00 Types of Databases 00:07:00 From Recruiter to Recruiter The day of an IT Recruiter 00:05:00 Key principles 00:03:00 Sourcing Tipps 00:03:00 Good Bye Video Good Bye Video 00:01:00

IT for Recruiters
Delivered Online On Demand5 hours 9 minutes
£10.99

Power BI Masterclass 8 -Python, Finance, and Advanced DAX

By Packt

This comprehensive training program covers many concepts in Microsoft Power BI. From beginner to advanced levels, learn data visualization, advanced DAX expression, Python integration, custom visuals, data preparation, and collaboration in Power BI service. Develop expertise in Power BI and position yourself for a successful career in data analytics.

Power BI Masterclass 8 -Python, Finance, and Advanced DAX
Delivered Online On Demand3 hours 31 minutes
£56.99

3D AutoCAD Basics to Advanced Training Course

By ATL Autocad Training London

Why Choose 3D AutoCAD Basics to Advanced Training Course? Students learn how to create and modify both solid and surface models. This AutoCAD Training course also teaches students how to present their designs in 3D products and designs. Check our Website Duration: 16 hours Approach: 1-on-1, Book your own day and time. We are open Monday to Saturday 9 am to 7 pm.  How to Book this course? Call us on 02077202581 and we will book the dates and times you like. Flexible Schedule: 1-on-1 Face to Face or Live Online. AutoCAD 3D Training: Comprehensive Course Overview Exploration of 3D Modeling and Imaging Generating 3D Drawings Navigating the 3D Modeling Workspace Crafting 3D Shapes using Solid Tools Extruding Polylines into 3D Forms Isolating Coordinates with Point Filters Navigating and Orienting Your Model Achieving Visual Effects Converting 3D Views into 2D AutoCAD Drawings Advanced 3D Techniques Setting Up AutoCAD for 3D Mastering the User Coordinate System Leveraging UCS Options Utilizing Viewports for 3D Drawing Employing Array Tools Crafting Complex 3D Surfaces Constructing Spiral Forms Developing Surface Models Manipulating Objects in 3D Space Rendering and Visualization of 3D Drawings Introduction to Rendering Rapid Rendering Techniques Simulating Sunlight and Shadows Application and Adjustment of Materials Creating Effects with Lights and Materials Texture Mapping and Adjustments Exploration of Rendering Options Enhancing Views with Cameras Printing Rendered Drawings Simulating Natural Lighting Editing and Visualizing 3D Solids Overview of Solid Modeling Creation of Basic and Complex Solids Editing Solid Forms Improving the 2D Drawing Process Visualization and Analysis of Solids Exploration of 3D Mesh and Surface Modeling Introduction to 3D Meshes and Surfaces Creation and Editing of 3D Meshes Crafting Mesh Surfaces Conversion of Meshes to Solids Understanding and Editing 3D Surfaces Customization of Interface and Tools Customization of Workspaces Personalization of the User Interface Creation of Macros in Tools and Menus Working with Expanded Text Boxes Saving and Managing Customizations Exploration of the Diesel Macro Language Designing Custom Linetypes and Hatch Patterns Management and Sharing of Your Drawings Sharing Drawings Online ePublishing Your Work Managing Drawings with DesignCenter and Tool Palettes Exploring the Drawing Library with Content Explorer Establishment of Office Standards Conversion of Layer Settings https://www.autodesk.co.uk  Download a free 30-day trial of AutoCAD Learning outcomes after completing the AutoCAD 3D course. Professional Presentation: Create dynamic walkthroughs and presentations that effectively communicate your 3D models and designs. Certification: Obtain a certification as proof of your proficiency in AutoCAD 3D modeling, validating your skills in the industry. Mastery of 3D Modeling: Possess comprehensive skills, from fundamental concepts to advanced techniques in 3D modeling. Enhanced Career Prospects: Improve your career opportunities and prospects in various design-related fields such as architecture, engineering, and product design. Realistic Rendering: Be able to create highly realistic visualizations that enhance the quality of your designs. Practical Hands-On Experience: Gain practical experience and confidence in 3D modeling through extensive hands-on practice. Personalized Learning: Benefit from one-on-one attention and tailored training to meet your specific learning needs and pace. Lifetime Email Support: Continue to receive assistance and guidance through lifetime email support, ensuring you are supported even after completing the course. 3D AutoCAD Training Courses Gain confidence and proficiency in AutoCAD. Discover the fundamentals of 3D modeling and object creation in this introductory AutoCAD 3D course. Booking Your Training Course: Experience personalized training with our adaptable 1-on-1 sessions. You have the freedom to customize your schedule by reserving a convenient hour at your discretion. Our booking slots are available from Monday to Saturday, spanning from 9 a.m. to 7 p.m. You can also reach us at 02077202581 to make a booking over the phone. Course Duration: 10 hours "You have the flexibility to divide these 10 hours across multiple days to suit your ideal schedule." Training Method: 1-on-1 (In-person face-to-face or Live Online) Expect personalized attention, tailor-made content, a flexible learning pace, and dedicated individual support throughout your training journey. This hands-on course provides ample opportunities to experiment with newly acquired techniques and seek answers to your questions. Key Features: An introductory course tailored to AutoCAD 3D's essential features. Abundant one-on-one guidance and dedicated question time. Friendly expert trainers, small class sizes, and a comfortable learning environment. Comprehensive course materials and additional resources. Ongoing support and assistance with post-course challenges. What Will You Learn? This course will equip you with the foundational knowledge and workflows necessary to create 3D models within AutoCAD 3D. You will delve into the creation and modification of both solid and surface models. Upon completion, you will be able to: Effortlessly fashion intricate shapes by combining simple elements. Precisely extract geometries and dimensions from your creations. Easily customize the view and presentation style of your objects. Is This Course Right for You? No prior experience with AutoCAD 3D is required. This course caters to individuals proficient in working with 2D objects who aspire to construct 3D models of their designs. Gain proficiency in the fundamental tools and functionalities to create precise and professional 2D and 3D drawings, advancing to more complex techniques. Enhanced Efficiency: Discover time-saving strategies, tips, and workflows that will boost your productivity and streamline your design process within AutoCAD 3D. Versatility in Design: Develop the skills needed to undertake a wide range of projects, from architectural plans and engineering drawings to mechanical components and electrical schematics. Industry-Recognized Expertise: Cultivate in-demand skills relevant to architecture, engineering, construction, and manufacturing, paving the way for career advancement and professional development. Accessible Lesson Recordings: Access recorded lessons at your convenience to review and reinforce course material whenever necessary. Continuous Email Support: Benefit from ongoing assistance with lifetime email support, ensuring you have access to guidance, answers, and clarifications even beyond the completion of the course.

3D AutoCAD Basics to Advanced Training Course
Delivered in London or OnlineFlexible Dates
£696

Google Cloud Fundamentals for Azure Professionals

By Nexus Human

Duration 1 Days 6 CPD hours This course is intended for This course is intended for the following participants: Individuals planning to deploy applications and create application environments on Google Cloud Platform Developers, systems operations professionals, and solution architects getting started with Google Cloud Platform Executives and business decision makers evaluating the potential of Google Cloud Platform to address their business needs. Overview This course teaches participants the following skills: Identify Google Cloud counterparts for Azure IaaS, Azure PaaS, Azure SQL, Azure Blob Storage, Azure Application Insights, and Azure Data Lake Configure accounts, billing, projects, networks, subnets, firewalls, VMs, disks, auto scaling, load balancing,storage, databases, IAM, and more Manage and monitor applications Explain feature and pricing model differences This 1-day instructor led course introduces Azure professionals to the core capabilities of Google Cloud in the four technology pillars: networking, compute, storage, and database. It is designed for Azure system administrators, Solution Architects and SysOps Administrators familiar with Azure features and setup; and want to gain experience configuring Google Cloud products immediately. With presentations, demos, and hands-on labs, participants get details of similarities, differences, and initial how-tos quickly. Introducing Google Cloud Explain the advantages of Google Cloud. Define the components of Google's network infrastructure, including: Points of presence, data centers, regions, and zones. Understand the difference between Infrastructure-as-a-Service (IaaS) and Platform-as-a-Service (PaaS). Getting Started with Google Cloud Identify the purpose of projects on Google Cloud. Understand how Azure's resource hierarchy differs from Google Cloud's Understand the purpose of and use cases for Identity and Access Management. Understand how Azure AD differs from Google Cloud IAM. List the methods of interacting with Google Cloud. Launch a solution using Cloud Marketplace. Virtual Machines in the Cloud Identify the purpose and use cases for Google Compute Engine Understand the basics of networking in Google Cloud. Understand how Azure VPC differs from Google VPC. Understand the similarities and differences between Azure VM and Google Compute Engine. Understand how typical approaches to load-balancing in Google Cloud differ from those in Azure. Deploy applications using Google Compute Engine Storage in the Cloud Understand the purpose of and use cases for: Cloud Storage, Cloud SQL, Cloud Bigtable and Cloud Datastore. Understand how Azure Blob compares to Cloud Storage. Compare Google Cloud?s managed database services with Azure SQL. Learn how to choose among the various storage options on Google Cloud. Load data from Cloud Storage into BigQuery Containers in the Cloud Define the concept of a container and identify uses for containers. Identify the purpose of and use cases for Google Container Engine and Kubernetes. Understand how Azure Kubernetes Service differs from from Google Kubernetes Engine. Provision a Kubernetes cluster using Kubernetes Engine. Deploy and manage Docker containers using kubectl Applications in the Cloud Understand the purpose of and use cases for Google App Engine. Contrast the App Engine Standard environment with the App Engine Flexible environment. Understand how App Engine differs from Azure App Service. Understand the purpose of and use cases for Google Cloud Endpoints. Developing, Deploying and Monitoring in the Cloud Understand options for software developers to host their source code. Understand the purpose of template-based creation and management of resources. Understand how Google Cloud Deployment Manager differs from Azure Resource Manager. Understand the purpose of integrated monitoring, alerting, and debugging Understand how Google Monitoring differs from Azure Application Insights and Azure Log Analytics. Create a Deployment Manager deployment. Update a Deployment Manager deployment. View the load on a VM instance using Google Monitoring. Big Data and Machine Learning in the Cloud Understand the purpose of and use cases for the products and services in the Google Cloud big data and machine learning platforms. Understand how Google Cloud BigQuery differs from Azure Data Lake. Understand how Google Cloud Pub/Sub differs from Azure Event Hubs and Service Bus. Understand how Google Cloud?s machine-learning APIs differ from Azure's. Load data into BigQuery from Cloud Storage. Perform queries using BigQuery to gain insight into data Summary and Review Review the products that make up Google Cloud and remember how to choose among them Understand next steps for training and certification Understand, at a high level, the process of migrating from Azure to Google Cloud.

Google Cloud Fundamentals for Azure Professionals
Delivered OnlineFlexible Dates
Price on Enquiry

CWS-250 Citrix DaaS Deployment and Administration

By Nexus Human

Duration 3 Days 18 CPD hours This course is intended for This course is recommended for administrators and engineers. Overview What you'll learn: Understand the differences between Citrix Virtual Apps and Desktops 2203 LTSR on-premises and the Citrix DaaS. Install, configure, and manage Citrix Cloud Connectors. Create Citrix DaaS workloads. Deliver app and desktop resources to users. Migrate existing on-premises Citrix Virtual Apps and Desktops 2203 LTSR infrastructure to Citrix Cloud. In this course you will learn how to create a new Citrix DaaS deployment and how to migrate to Citrix DaaS from an on-premises Citrix Virtual Apps and Desktops Site. Get hands-on as the course guides you through the architecture, communications, management, installation, and configuration of Citrix DaaS on Citrix Cloud and resource locations that the host apps and desktops for your users. This course is a necessary step in enabling you with the right training and skills, to not only understand, manage, and deliver successfully, but also to make well-informed planning decisions along the way. Module 1: Introduction to Citrix DaaS New Citrix Workspace Packaging Citrix Virtual Apps and Desktops - On- Premises Site What is Citrix Cloud? Why Citrix DaaS? What is a Migration from Citrix Virtual Apps and Desktops to Citrix DaaS? Citrix Cloud Administration Module 2: Planning - Citrix DaaS Architecture, Security, and Operations Architecture and Deployment Options Citrix DaaS Security Citrix DaaS Operations Module 3: Planning - Citrix Cloud Connectors Cloud Connector Architecture Cloud Connector Services and Communications Overview Cloud Connector Operations in a Resource Location Cloud Connector Resiliency Installing, Updating, and Removing Cloud Connectors Supported Domain Scenarios for Cloud Connectors Securing Cloud Connector Communications Local Host Cache (LHC) Citrix Cloud Connector vs Delivery Controller Operations Module 4: Planning - Citrix DaaS Resource Locations Citrix DaaS Resource Locations Citrix DaaS Hosting Connections Zones Module 5: Active Directory, Authentication, and Authorization Active Directory Design Options Desktops from Non-Domain Joined VDAs Citrix Federated Authentication Service and Identity Provider Services Module 6: Planning - Provisioning VDA Workloads and Delivering Resources Master Images Machine Creation Services (MCS) in Citrix DaaS Citrix Provisioning in Citrix DaaS Machine Catalogs Delivery Groups Citrix Cloud Library Module 7: Planning - Provisioning VDA Workloads and Delivering Resources Selecting Between Citrix digital workspace experience and StoreFront Citrix StoreFront and Citrix digital workspace experience Communications Selecting Between Citrix Gateway Service and On-Premises Citrix Gateway Access Layer Communications User Authentication Module 8: Planning - Citrix DaaS Administration Citrix Cloud Manage and Monitor Delegated Administration Citrix DaaS Remote PowerShell Software Development Kit Manage Multiple Resource Locations Module 9: Planning - Public Cloud Considerations General Public Cloud Considerations Using Autoscale to Power Manage Machines in a Public Cloud Microsoft Azure as a Citrix DaaS Resource Location Amazon Web Services as a Citrix DaaS Resource Location Google Cloud as a Citrix DaaS Resource Location Module 10: Planning - Migrating to Citrix DaaS from Citrix Virtual Apps and Desktops Citrix Cloud Migration Options and Considerations Citrix Automated Configuration Tool Citrix Image Portability Service Module 11: Manage - Operations and Support in Citrix Cloud Citrix Cloud Connector Support Updating and Rolling Back Machine Catalogs VDA Restore Citrix Self-Help Strategy Monitor Your Environment Additional course details: Nexus Humans CWS-250 Citrix DaaS Deployment and Administration 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 CWS-250 Citrix DaaS Deployment and Administration 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.

CWS-250 Citrix DaaS Deployment and Administration
Delivered OnlineFlexible Dates
Price on Enquiry

Diploma of Landscape Architecture (Online) - CPD Certified

4.7(47)

By Academy for Health and Fitness

48-Hour Knowledge Knockdown! Prices Reduced Like Never Before. Diploma of Landscape Architecture (Online) - CPD Certified Did you know that demand for Landscape Architects in the UK has soared by 20% in the last five years? Propel your career forward with our online "Diploma of Landscaping" course, offering CPD-certified, comprehensive, 4-in-1 bundled learning. Immerse yourself in a journey from fundamentals to advanced concepts taught by experienced professionals. Our structured, easy-to-follow modules equip you with the right skills and knowledge to excel in this rapidly-growing field. Set your career in motion today and become a part of the thriving £1 billion UK landscaping industry. Explore new horizons, learn from experts, and craft your future with the Diploma of Landscaping (Online). Courses Are Included in this Diploma of Landscaping (Online) - CPD Certified Bundle: Course 01: Diploma in Landscape Architecture at QLS Level 4 Course 02: Advanced Diploma in Architectural Studies at QLS Level 7 Course 03: Land Management Course Course 04: Environment Management Course Learning Outcomes of Landscape Architecture Gain comprehensive knowledge of landscaping principles, techniques, and design principles, with a focus on sustainability and environmental considerations. Develop practical skills in landscape planning, site analysis, and project management, enabling you to execute professional landscaping projects. Understand the UK landscaping industry's current trends and market demands, backed by up-to-date statistics and insights. Acquire proficiency in using industry-standard software and tools for landscape design, enhancing your efficiency and productivity. Receive a CPD certification upon completion, boosting your credibility and increasing your chances of securing lucrative job opportunities in the growing UK landscaping sector. Data: According to the Landscape Institute, the landscaping industry in the UK generates approximately £1 billion in revenue annually. Furthermore, the demand for skilled landscape architects is projected to grow by 14% by 2027, as reported by the Office for National Statistics. Why Choose Our Landscape Architecture Course? FREE Landscape Architecture certificate accredited Get a free student ID card with Landscape Architecture Training Learn Landscape Architecture from anywhere in the world Landscaping is affordable and simple to understand This course is entirely online, interactive lesson with voiceover audio Lifetime access to the Landscape Architecture course materials Landscaping comes with 24/7 tutor support So enrol now in this Landscape Architecture Today to advance your career! Start your learning journey straightaway with Diploma of Landscape Architecture! This Landscape Architecture curriculum has been designed by Landscape Architectureexperts with years of experience behind them. This course is extremely dynamic and well-paced to help you understand Landscape Architecture with ease. You'll discover how to master the Landscaping skill while exploring relevant and essential topics. Assessment Process of Diploma of Landscape Architecture Once you have completed all the courses in the Landscape Architecture bundle, you can assess your skills and knowledge with an optional assignment. Our expert trainers will assess your assignment and give you feedback afterwards. CPD 180 CPD hours / points Accredited by CPD Quality Standards Who is this course for? Diploma of Landscape Architecture (Online) - CPD Certified This Diploma of Landscape Architecture bundle is suitable for everyone. Requirements Diploma of Landscape Architecture (Online) - CPD Certified You will not need any prior background or expertise to enrol in this Diploma of Landscaping . Career path Diploma of Landscape Architecture (Online) - CPD Certified This Diploma of Landscape Architecture bundle will allow you to kickstart or take your career in the related sector to the next stage. Certificates Digital certificate Digital certificate - Included Hard copy certificate Hard copy certificate - £29 If you are an international student, you will be required to pay an additional fee of 10 GBP for international delivery, and 4.99 GBP for delivery within the UK, for each certificate

Diploma of Landscape Architecture (Online) - CPD Certified
Delivered Online On Demand29 hours
£31