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

392 ARC courses

🔥 Limited Time Offer 🔥

Get a 10% discount on your first order when you use this promo code at checkout: MAY24BAN3X

Kids' Archery @ Merryoaks Community Hall 4pm Mondays

By Kids Archery Durham

Does your child long to be Robin Hood, Merida, Katniss or Hawkeye? Now's their chance! At Kids' Archery Durham, children can learn all about the art of archery in a safe and fun way. They can work towards badges and certificates, develop the confidence that comes from learning a new skill, be active, make friends and most importantly - have fun!

Kids' Archery @ Merryoaks Community Hall 4pm Mondays
Delivered In-Person in Durham45 minutes, Jun 3rd, 15:00 + 6 more
£4.5 to £26

Kids' Archery @ Merryoaks Community Hall 4.45pm Mondays

By Kids Archery Durham

Does your child long to be Robin Hood, Merida, Katniss or Hawkeye? Now's their chance! At Kids' Archery Durham, children can learn all about the art of archery in a safe and fun way. They can work towards badges and certificates, develop the confidence that comes from learning a new skill, be active, make friends and most importantly - have fun!

Kids' Archery @ Merryoaks Community Hall 4.45pm Mondays
Delivered In-Person in Durham45 minutes, Jun 3rd, 15:45 + 6 more
£4.5 to £26

C10M02 - Actuation of door release mechanisms - BS 7273-4 (classroom)

By Ember Compliance

Learners will develop knowledge from the FD&FA foundation courses (C01 modules 1 and 2) and/or industry experience with specific regard to more complex system design considerations.

C10M02 - Actuation of door release mechanisms - BS 7273-4 (classroom)
Delivered In-Person in BroxburnFull day, Jun 4th, 08:00 + 1 more
£199

Kids' Archery - Framwellgate Moor

By Kids Archery Durham

Does your child want to be Merida, Robin Hood, Katniss or Hawkeye? Now's their chance! At Kids' Archery Durham children can learn the basics of archery safety and technique, work towards in-house, national and international awards and most importantly have lots of fun!

Kids' Archery - Framwellgate Moor
Delivered In-Person in Durham1 hour, Jun 5th, 15:00 + 6 more
£4.5 to £26

Wine, Cheese and Archery

By Kids Archery Durham

It's Kids' Archery - for the grown-ups! Put the kids to bed and come and have a night out with a difference. Hone your soft archery skills and enjoy some (non-alcoholic)* wine and cheese. Bring a friend or just bring yourself. Try your hand at 4 different targets/games with a prize for the winner. ​*If you'd care for something stronger then feel free to byob.

Wine, Cheese and Archery
Delivered In-Person in Durham2 hours, Jun 7th, 19:00
£15

City centre sketching tours with the Edinburgh Sketcher

5.0(5)

By The Arienas Collective

Edinburgh city centre sketching tours with ink and watercolour artist Mark Kirkham, known locally as The Edinburgh Sketcher

City centre sketching tours with the Edinburgh Sketcher
Delivered In-Person in Edinburgh2 hours 30 minutes, Jun 9th, 10:00 + 3 more
£20 to £30

Sacred Heart Alchemy - Cacao and Shamanic Drum Sound Journey

1.0(5)

By Wild Power Alchemy

Come and experience sound healing with the powerful vibrations of the Reiki Drum and recalibrate your heart, mind, body, and soul, with the supportive resonance of the drum.

Sacred Heart Alchemy - Cacao and Shamanic Drum Sound Journey
Delivered In-Person in Edinburgh2 hours 30 minutes, Jun 9th, 13:00
£38.35

C01M01 - FD&FA Fundamentals - BS 5839-1 (classroom)

By Ember Compliance

This is a gateway course for all further learning in FD&FA systems.

C01M01 - FD&FA Fundamentals - BS 5839-1 (classroom)
Delivered In-Person in BroxburnFull day, Jun 12th, 08:00 + 1 more
£199

Objective-C programming

5.0(3)

By Systems & Network Training

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.

Objective-C programming
Delivered in-person, on-request, onlineDelivered Online & In-Person in Internationally
£4997

Transmission Lines: Design, Analysis and Applications

By Asia Edge

ABOUT THIS TRAINING COURSE Transmission lines and sub-stations are essential components in the electrical power systems. Proper design and maintenance are crucial for transmission lines to maintain a continuous operation. The objective of this 5-day training course is to deal appropriately with control systems, design characteristics and electric & magnetic fields. Participants will gain a better understanding on the corona and gap discharge phenomena, constructional features, and optimization of the transmission lines. Training Objectives By participating in this course, you will be able to: * Understand transmission line design and its application * Examine different types of conductors and electrical characteristics * Explore basic and general transmission line parameters * Prevent overvoltage through insulation design * Determine surge impedance and corona effects * Calculate and measure electric and magnetic fields * Comprehend the impact of audible noise and electromagnetic interference * Identify interference within the transmission line systems Target Audience The course will greatly benefit the following groups but not limited to: * Electrical Engineers * Civil Engineers * Transmission & Distribution Engineers * Substation Operators * Safety Engineers * Reliability Engineers * Facility & Plant Engineers * Technical Engineers * Design Engineers * Plant Supervisors * Electrical Contractors Course Level * Basic or Foundation * Intermediate Training Methods The training instructor relies on a highly interactive training method to enhance the learning process. This method ensures that all participants gain a complete understanding of all the topics covered. The training environment is highly stimulating, challenging, and effective because the participants will learn by case studies which will allow them to apply the material taught in their own organization. Course Duration: 5 days in total (35 hours). Training Schedule 0830 - Registration 0900 - Start of training 1030 - Morning Break 1045 - Training recommences 1230 - Lunch Break 1330 - Training recommences 1515 - Evening break 1530 - Training recommences 1700 - End of Training The maximum number of participants allowed for this training course is 25. This course is also available through our Virtual Instructor Led Training (VILT) format. Trainer Your expert course leader is a professional engineer with extensive experience in power system studies, substation design field-testing, and EHS programs settings for Mining and Electrical Utilities sectors. He was formally the Engineering Manager at GE Canada in Ontario. He received his M.Sc. in electrical engineering from the University of New Brunswick and his MBA from Laurier School of Business in Waterloo. He has managed and executed more than 150 engineering projects on substation design EMF audits and power system studies and analyses, EMF audits and grounding audits, for major electrical utilities, mines, oil and gas, data centers, industrial and commercial facilities in Canada and the U.S. He is a certified professional engineer in the provinces of Ontario and Alberta. He has various IEEE publications, has served as a technical reviewer for many IEEE journals in power systems and control systems, and is the chair of the Industry Application Chapter (IAS) for IEEE Toronto Section. He remains a very active member for the IEEE substation committee of IEEE Std. 81 ground testing (WGE6) and IEEE Std. 80 ground design (WGD7). A certified electrical safety trainer by GE Corporate and a Canadian Standard Association (CSA) committee member at the mining advisory panel for electrical safety, he also taught many technical courses all over Canada to industrial customers, electrical consultants as well as to electrical utilities customers. Highlighted Projects: * Various Power System Studies for 345/230 kV Stations - Nova Scotia Power (EMERA) * RF audits for Telecom tower and antennas - Cogeco/Rogers Mobile * Power System analysis - Powell Canada * Structural/Geotechnical Design and upgrades - Oakville Hydro * Underground Cables testing and sizing - Plan Group * Relay programming and design optimization - Cenovus Canada * Different Arc Flash Analysis and BESS Design - SNC Lavalin * Environmental site assessment (ESA) Phase I/II for multiple stations - Ontario * Electromagnetic compatibility (EMC) assessment for Toronto LRT expansion - MOSAIC * Battery energy storage system (BESS) installation at City of London - Siemens Canada * EMF audits for 500 kV Transmission Lines - Hydro One * EMF audits for 500 kV Transmission Lines - Hydro Quebec * AC interference for 138 kV line modeling and mitigations - HBMS Mine POST TRAINING COACHING SUPPORT (OPTIONAL) To further optimise your learning experience from our courses, we also offer individualized 'One to One' coaching support for 2 hours post training. We can help improve your competence in your chosen area of interest, based on your learning needs and available hours. This is a great opportunity to improve your capability and confidence in a particular area of expertise. It will be delivered over a secure video conference call by one of our senior trainers. They will work with you to create a tailor-made coaching program that will help you achieve your goals faster. Request for further information post training support and fees applicable Accreditions And Affliations

Transmission Lines: Design, Analysis and Applications
Delivered in-person, on-request, onlineDelivered Online & In-Person in Internationally
£3320

Educators matching "ARC"

Show all 1122