REXX training course description A hands on training course covering the Restructured EXtended eXecutor (REXX) language. A large number of exercises are used to reinforce and emphasise lecture sessions. What will you learn Write REXX programs. Debug REXX programs. Examine existing code and determine its function. REXX training course details Who will benefit: Anyone wishing to learn REXX. Prerequisites: None although experience in another high level language would be useful. Duration 3 days REXX training course contents Introduction to REXX What is REXX? REXX environments, invoking a REXX exec, a sample REXX exec, REXX clause types. REXX variables and data Literal data, variable data, assignment, simple variables, compound variables, stem variables, constant data, numeric data, arithmetic operations, character manipulation, hexadecimal data. The parse instruction Parse format, Parse examples, Parse arg, Parse pull, Parse value, special templates, place holders, literal templates, numeric templates, variable templates. Control structures Relational conditions, logical operators, simple selection, looping: uncontrolled and controlled loops, infinite loops, conditional loops, controlling loops, leave, iterate, multiple selection, instructions for subroutines, exit. Sub routines and functions Internal and external subroutines, call, ARG(), ARG(n)return, exit, scope of variables, procedure, functions, built in functions, overriding built in functions. Performing I/O Command conventions, preparing to read a file, execio, limitations, execio for reading, DISKR, DISKRU, DISKW, return codes. External functions listdsi, msg, outtrap, prompt, sysdsn, sysvar, storage Tracing Immediate commands, the trace facility, signal and call statements. Built in functions Text handling functions, string handling, word handling, arithmetic, data conversion, bit manipulation, environment. The data stack Data stack structure, REXX instructions for the data stack, REXX functions for the data stack, TSO/E commands for the data stack. REXX in batch TSO/E foreground. TSO/E background.
Why choose 3ds max and After Effects Training Course (Live Online Only)? Join our personalized "3ds Max and After Effects Training Course (Live Online Only)" for a focused learning experience. Develop expertise in production environments, 3D modeling, texturing, lighting, animations, VFX and cinematography. Check Our Website Duration: 10 hrs Method: 1-on-1, Personalized attention. Schedule: Tailor your own hours of your choice, available from Mon to Sat between 9 am and 7 pm. 3ds Max and After Effects Motion Graphics Course Duration: 10 hours Course Outline: Introduction to 3ds Max Familiarize yourself with the 3ds Max interface Create 3D objects and scenes Learn about cameras, lighting, materials, and textures Basic Animation Principles in 3ds Max Understand keyframes and interpolation Create animation cycles for 3D objects Apply animation principles using the graph editor Advanced Animation Techniques in 3ds Max Master custom controllers and expressions Animate with inverse kinematics Create dynamic particle systems and simulations Exporting 3D Scenes to After Effects Prepare 3D scenes for export Import 3D scenes into After Effects Explore 3D layer properties Basic Compositing in After Effects Navigate the After Effects interface Use keyframes and animation curves Compositing 2D and 3D elements Apply effects and filters Advanced Compositing Techniques in After Effects Harness masks and mattes for precision Utilize 3D camera tracking Work with green screen footage Create stunning special effects Integrating 3D and Live-Action Footage in After Effects Match camera angles and movement Incorporate 3D camera data into After Effects Add shadows and reflections for realism Rendering and Outputting Animations Render 3D scenes from 3ds Max Utilize the After Effects render queue Output animations for different formats Motion Graphics Projects Create a basic motion graphics sequence Design an animated logo Craft an engaging animated title sequence Course Requirements: Computer with 3ds Max and After Effects installed Basic knowledge of computer operations Passion for motion graphics
Overview This Compliance and Risk Management Course is designed for anyone looking for a pathway into this profession and wanting to develop their industry knowledge and skills. It covers the role of the Compliance Officer and compliance department in detail, with step-by-step training in compliance auditing and risk management. This Compliance and Risk Management Training Course will equip you with the fundamental skills needed to identify and manage regulatory risk in your organization, taking you through key topics such as how to implement an efficient Compliance Management System, ethics and compliance, risk types and classifications, and how to design a solid risk management strategy. By the end of this Compliance and Risk Management Training Course, you'll have an excellent understanding of core compliance issues, as well as how to promote a positive compliance culture for your organization, which will give you a head start when it comes to standing out in the relevant job market.
C++ training course description A hands on introduction to programming in the C++ language. The course concentrates on aspects that will be new to experienced C programmers and so is not suitable for those without C knowledge. What will you learn Write C++ programs Debug C++ programs. Examine existing code and determine its function. Use classes, function overloading, operator overloading, inheritance and virtual functions within C++ programs. C++ training course details Who will benefit: Programmers needing to write C++ code. Programmers needing to maintain C++ code. Prerequisites: C programming foundation. Duration 5 days C++ training course contents The origins of C++ C++ as a better C, C++ and Object Oriented Programming, encapsulation, polymorphism, inheritance. C++ standards. Getting started Simple C++ programs. Classes Basics, constructor and destructor functions, member and friend functions. Using objects. Default, copy and conversion constructors. A better C Arrays, pointers and references, new and delete. Improved safety with smart pointers, Resource Acquisition in Initialization (RAII). Functions in C++ Function overloading, default arguments, inline functions, Lambda functions. Templates Template classes and functions. Standard Library Containers, Iterators, algorithms, function objects. Operator overloading Basics, binary operators, the this pointer, relational operators, unary operators. Members versus friends. Inheritance Base class access control, protected members, multiple inheritance, virtual base classes. More I/O Manipulators, customising inserters, extractors. File I/O. Virtual functions Pointers to derived classes, run time polymorphism. Exception handling Throwing errors, trying code and catching errors.
Objective-C programming training course description A hands on introduction that will allow you to master Objective-C and start using it to write powerful native applications for even the newest Macs and iOS devices! Using The step-by-step approach, will let you get comfortable with Objective-C's unique capabilities and Apple's Xcode 5 development environment. Make the most of Objective-C objects and messaging. Work effectively with design patterns, collections, blocks, foundation classes, threading, Git and a whole lot more. Every session builds on what you've already learned, giving a rock-solid foundation for real-world success! What will you learn Use Xcode 5. Declare classes, instance variables, properties, methods, and actions. Use arrays, dictionaries, and sets. Expand and extend classes with protocols, delegates, categories, and extensions. Use Apple's powerful classes and frameworks. Objective-C programming training course details Who will benefit: Developers wanting to learn Objective-C. Prerequisites: Software development fundamentals. Duration 5 days Objective-C programming training course contents PART 1: GETTING STARTED WITH OBJECTIVE-C The Developer Program: Objective-C, enrolling as an Apple Developer, setting up the development environment, Xcode. Your first project. OO programming with Objective-C: OO projects, Frameworks, classes and instances, encapsulation, accessors, Inheritance. OO features in Objective-C: Messages, methods, working with id, nesting messages, method signatures and parameters. allocating and initializing objects. Using Xcode: Xcode, source code control, git and Xcode, Using a Remote Repository. Compiler Directives: Projects, Compiler Directives, Prefix headers, main.m, .h files. PART 2: OBJECTIVE-C BASICS Messaging in a Testbed App: Setting Up the Testbed Apps, Adding a Text Field and Connecting It to Your Code, Sending a Message to the Text Field, Reviewing the Message Syntax. Declaring a Class in an Interface File: Context, Creating an Instance Variable with id, What Happens When Execution Stops, dynamic binding, Creating an Instance Variable for with the Class Name and with a Superclass Name, instance variable visibility. Properties in an Interface File: Interface Variables vs Properties, Declared Properties, Using Attributes. Implementing Properties. @synthesize, @dynamic. Methods in an Interface File: Methods in a Class, class and instance methods, Method declaration, returning complex data structures from Methods. Actions in an Interface File: Actions, Actions in OS X and iOS, disconnecting actions. Routing messages with selectors: Receiver and selector objects in messages, Objective-C Runtime, SEL and @selector (), performSelector, NSInvocation, testing whether an Instance can respond to a selector. Building on the Foundation: The Foundation Framework, Foundation Classes, Foundation Paradigms and Policies; Mutability, class clusters, notifications. Defining a Class in Implementation Files: Projects, dynamic typing, creating a new App, implementing a method, expanding Classses with init Methods. Organizing Data with Collections: Collecting Objects, Property Lists, Runtime, comparing the Collection Classes, Creating a Collection, Objective-C Literal Syntax, Enumerating collections, Testing Membership in a Collection, Accessing an Object in a Collection. Managing Memory and Runtime Objects: Managing objects in memory, managing reference counts manually and with ARC, variable qualifiers, variable autorelease. PART 3: EXPANDING AND EXTENDING CLASSES Protocols and Delegates: Subclassing, Protocols, Delegates, Looking Deeper Inside Protocols. Categories and Extensions: Comparing categories and protocols, categories vs subclasses, working with categories, class extensions, informal protocols. Associative References and Fast Enumeration: Objective-C 2.0 Time-Saving Features, Extending Classes by Adding Instance Variables (Sort of), Using Fast Enumeration. Blocks: Revisiting Blocks, Callbacks, Blocks, Exploring Blocks in Cocoa, Cocoa Blocks and Memory. PART 4: BEYOND THE BASICS Handling Exceptions and Errors: Exception and Error classes: NSException, NSError, Identifying exceptions, throwing exceptions, catching exceptions. Queues and Threading: Getting Started with Concurrency, Introducing Queues, Dispatch Sources, Using Dispatch Queues. Working with the Debugger: Logging Information, Console Logs, NSLog, Smart Breakpoints, enhancing breakpoints with messages. Using Xcode Debug Gauges for Analysis: Debug Gauges, Monitoing CPU and memory utilization, monitoring energy, Using Instruments. PART 5: OPTIONAL TOPICS C Syntax Summary: Data Types, Control Structures. Apps, Packages, and Bundles: Project Bundles, lproj Files, Asset Catalogs, plist Files, Precompiled Header Files (.pch). Archiving and Packaging Apps for Development and Testing: Archiving.
Microsoft Exchange training course description A hands on course focusing on the day to day running of Microsoft Exchange. The course is designed for those with a sound understanding of how Exchange forwards emails and concentrates on important issues such as monitoring, backups and restores. This course can be delivered on any version of Microsoft exchange and tailored as required. What will you learn Install MS Exchange Create, configure and manage user mailboxes. Configure and administer MS Exchange. Backup and restore MS Exchange. Microsoft Exchange training course details Who will benefit: Anyone working with MS Exchange. Prerequisites: Total SMTP and email for engineers Duration 3 days Microsoft Exchange training course contents Review of mail basics Basic routing & Client/Server, Mail flow & protocols, Mail server technology. Exchange features MAPI, Database, The Exchange organisation, Active Directory consideration. Installing Understanding server roles, Planning for Exchange, Preparing Active Directory, Preparing the host server, Installing Exchange. Introduction to Exchange management tools Exchange Management shell, Exchange Management console. Administration Configuring SMTP domains, Send connectors, Receive connectors, Setting up & managing user mailboxes, Setting up resource mailboxes, Mail enabled groups, Address lists. Troubleshooting Security & troubleshooting wizards, Windows platform tools, External/Internet tools.
Vectorworks Evening Course face to face One to one
Why Opt for the Rhino 3D Training Course in Jewelry Design? Click here for more info Within a span of 10 hours, you'll master the interface and gain insights into how Rhino leverages points, lines, surfaces, and solids to fashion printable 3D objects. Moreover, you'll explore the art of crafting repetitive and intricate geometric shapes, perfect for creating minimalist and elegant jewelry. Flexible Scheduling: 1-on-1 training sessions tailored to your schedule. Pick any hour between 9 am and 7 pm from Mon to Sat. Course Duration: 10 hours. Training Methods: Choose between in-person sessions or live online training. Why Choose Our Rhino 3D Training Course for Jewelry Design? Rhino, also known as Rhinoceros, stands as a robust 3D computer graphics and computer-aided design software extensively utilized in various industries, including architecture, industrial design, and multimedia. LDTC offers meticulously crafted Rhino courses to empower you in mastering this software. Led by experienced instructors, our courses ensure a comprehensive understanding of Rhino, equipping you to create exceptional designs, specifically tailored for jewelry creation. Rhino 3D Training for Jewelry Design: Our Rhino 3D training caters to both beginners and those aspiring to acquire advanced techniques, emphasizing its application in jewelry design. Course Highlights: Precise 3D Modeling: Master the art of crafting free-form 3D NURBS models with utmost precision. Advanced Functionality: Explore Rhino's advanced surfacing commands and features tailored for jewelry design. User Interface Mastery: Navigate Rhino's interface seamlessly and refine your skills in curves, surfaces, and solids. Expert Guidance: Acquire expertise in Rhino's modeling environment under the guidance of seasoned professionals. Modeling Why Choose Our Rhino 3D Training Course for Jewelry Design? Rhino, also known as Rhinoceros, stands as a robust 3D computer graphics and computer-aided design software extensively utilized in various industries, including architecture, industrial design, and multimedia. LDTC offers meticulously crafted Rhino courses to empower you in mastering this software. Led by experienced instructors, our courses ensure a comprehensive understanding of Rhino, equipping you to create exceptional designs, specifically tailored for jewelry creation. Rhino for Jewelry Design - 16-Hour Course Module 1: Introduction and Navigation Get acquainted with Rhino's interface, menus, and screen layout. Navigate Rhino models with precision in 2D lines, polylines, and NURBS curves. Use modeling setup features like snap, ortho, and planar constraints for accuracy. Leverage object snaps and Smart Track functionality for enhanced precision. Module 2: Solid and Surface Modeling Fundamentals Rapidly develop 3D solids and surfaces using Rhino's organized layering system. Utilize coordinates and constraints for meticulous modeling in 3D space. Create diverse shapes, including rectangles, circles, arcs, ellipses, and polygon curves. Enhance models with Rhino render, render color, and free-form curves. Efficiently handle model views with pan, zoom, and view management tools. Implement various editing commands for curve manipulation and transforming curves into surfaces and solids. Utilize history tracking for advanced editing and execute general editing actions. Module 3: Intermediate Edit and Surfacing Techniques Introduce essential NURBS modeling concepts and terminologies. Edit curves and surfaces through control point manipulation and rebuilding for optimal refinement. Use the nudge modeling aid for precise adjustments and generate deformable shapes. Create curves through projection techniques and split surfaces using curves and surfaces. Blend surfaces seamlessly, utilizing symmetry tools, lighting, and rendering effects. Convert intricate 3D objects into detailed 2D drawings and craft page layouts. Module 4: Advanced Surfacing and Solid Modeling Techniques Construct model primitives and solid text using techniques such as pipe and extrusion. Efficiently modify solids using Boolean tools, expanding surface modeling capabilities. Utilize techniques like extrusion, lofting, and revolving for intricate surfaces. Create sweeps using 1 and 2 rail curves and master surface network techniques for complex shapes. Downlaod Rhino. Upon completion of the Rhino 3D Training Course for Jewelry Design, participants can expect the following learning outcomes: Mastering Rhino Interface: Gain a comprehensive understanding of Rhino's interface, menus, and screen layout. Precision in Modeling: Navigate Rhino models with precision using 2D lines, polylines, and NURBS curves. Modeling Setup Proficiency: Utilize modeling setup features such as snap, ortho, and planar constraints for accurate designs. Enhanced Navigation Techniques: Leverage object snaps and Smart Track functionality for enhanced precision during navigation. Solid and Surface Modeling Skills: Rapidly develop 3D solids and surfaces with Rhino's organized layering system. Coordination and Constraint Application: Utilize coordinates and constraints for meticulous modeling in 3D space. Diverse Shape Creation: Create diverse shapes, including rectangles, circles, arcs, ellipses, and polygon curves. Rendering and Enhancement Techniques: Enhance models with Rhino render, render color, and free-form curves. Efficient Model View Handling: Efficiently handle model views with pan, zoom, and view management tools. Intermediate Edit and Surfacing Techniques: Edit curves and surfaces through control point manipulation and rebuilding for optimal refinement. NURBS Modeling Mastery: Introduce essential NURBS modeling concepts and terminologies. Advanced Editing and Modeling Skills: Use the nudge modeling aid for precise adjustments and generate deformable shapes. Complex Shape Creation: Create sweeps using 1 and 2 rail curves and master surface network techniques for intricate shapes. Solid Modeling Proficiency: Construct model primitives and solid text using techniques such as pipe and extrusion. Application of Boolean Tools: Efficiently modify solids using Boolean tools, expanding surface modeling capabilities. Advanced Surfacing Techniques: Utilize techniques like extrusion, lofting, and revolving for intricate surfaces. Conversion and Crafting of 2D Drawings: Convert intricate 3D objects into detailed 2D drawings and craft page layouts. Hands-On Project Experience: Engage in practical exercises and hands-on projects tailored for jewelry design applications. Upon mastering these skills, participants will be well-equipped to create sophisticated jewelry designs using Rhino 3D modeling software.
The CDM Regulations Training Course is designed to provide a thorough understanding of construction health and safety regulations essential for anyone involved in the construction industry. This course offers a detailed exploration of the Construction (Design and Management) Regulations, ensuring participants are well-versed in managing risks and responsibilities throughout the lifecycle of a construction project. It also covers essential topics such as construction management, site safety, and specific regulations like RIDDOR, LOLER, and PUWER, offering a well-rounded approach to health and safety awareness. Beyond regulations, the course includes specialised training in areas like interior design, construction cost estimation using industry tools such as Xactimate and RSMeans, and essential safety topics like ladder safety, working at height, and confined spaces. With modules on workplace first aid, manual handling, and lone worker safety, this training suite supports a broad spectrum of roles, from site managers to handypersons. Delivered entirely online, it allows learners to gain valuable knowledge and confidence to manage construction safety effectively, all while fitting study around busy schedules. This CDM Regulations Training bundle includes the following courses: Course 01: CDM Regulations Training Course 02: Construction Management Course 03: Construction Site Safety Training Course 04: Interior Design & Construction Level 4 Course 05: Construction Cost Estimation Using Xactimate Course 06: Construction Estimation using RSMeans Course 07: LEED V4: Building Design and Construction Course 08: Level 5 CAD Designer Training Course 09: PAT - Portable Appliance Testing Level 3 Course 10: Ladder Safety Course 11: RIDDOR Training Course 12: Working at Height Training Course 13: Construction Industry Scheme (CIS) Course 14: Workplace First Aid & Incident Management Course 15: Manual Handling: Controlling and Reducing Risks Course 16: PUWER Course 17: LOLER Training Course 18: Lone Worker Safety Course 19: Handyperson (Maintenance and Repair Worker) Course 20: Working in Confined Spaces Training Key Features of CDM Regulations Training Bundle Accredited by CPD Top-notch video lessons Instant e-certificate Entirely online, interactive CDM Regulations Training course with audio voiceover Self-paced learning and laptop, tablet, and smartphone-friendly 24/7 Learning Assistance Discounts on bulk purchases So, enrol now in this CDM Regulations Training bundle and make your every penny worth it! How You will be Benefited from CDM Regulations Training Bundle All through this self-paced training, you will get engaging learning materials with engaging video lessons and acquire the necessary knowledge to work with various concepts to gain a competitive advantage in the employment market. Accreditation All of our courses included in this CDM Regulations Training bundleare fully accredited, providing you with up-to-date skills and knowledge and helping you to become more competent and effective in your chosen field. Certification Once you successfully complete your CDM Regulations Training course, you will immediately be sent digital certificates for the bundle courses. CPD 200 CPD hours / points Accredited by The CPD Quality Standards (CPD QS) Who is this course for? Anyone with a curious mind and an eagerness to learn can take this CDM Regulations Training bundle. Requirements There are no formal requirements for this bundle course to be enrolled. Career path This CDM Regulations Training bundle will help you uplift your career or guide you to a new one.
Perl training course description A hands on introduction to programming in Perl. What will you learn Write Perl programs. Use Perl modules. Debug Perl programs. Examine existing code and determine its function. Perl training course details Who will benefit: Anyone wishing to learn Perl. Prerequisites: None although experience in another high level language would be useful. Duration 5 days Perl training course contents Introduction to Perl What is Perl? When to use Perl, downloading Perl, installing Perl, documentation, perldoc, running Perl, the Perl environment. Perl under UNIX, Perl under Windows. "Hello world". Variables Scalars, data types, $_, strings and numbers, assignment, constants, strict, scope, STDIN. Operators Number operators, string operators, precedence and associativity, converting numbers and strings, shortcut operators. Flow control Blocks, if, else, elseif, unless, foreach, while, for do, until. Regular expressions What are regular expressions? Pattern matching, Perl as a filter, file editing. Strings Comparing strings, concatenating, substrings, chomp, chop, formatting, string manipulation. Subroutines Comparing strings, concatenating, substrings, chomp, chop, formatting, string manipulation. Arrays and hashes Working with arrays, element access, push(), pop(), shift(), unshift(), <STDIN> as an array, associative arrays, hashes of arrays, hash references, arrays of hashes, hashes of hashes. Files Simple file handling, open, close, <FILEHANDLE>, <>, file tests, directory access, directory handles, database access, packing and packing binary data. I/O STDIN, STDOUT and STDERR, Command line arguments,@ARGV. Perl debugging The built in debugger, running the debugger, debugger commands, graphical debuggers. Script syntax errors, single stepping, breakpoints, watches. Packages and modules CPAN, Finding modules, installing modules, using modules, scope. Report formatting Formats, defining a format, invoking a format, field holders. Process management System interaction, system(), exec(), signals. Security issues.