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

1395 RES courses in Sheffield

C&G 2377-77 – 2 Day

4.7(1243)

By Technique Learning Solutions

Learn how to test portable electrical appliances with a qualification in Electrical Equipment Maintenance and Testing. Aimed at practicing electricians this qualification will help and progress individuals within the Electrotechnical industry. This qualification is aimed at those with responsibilities for the maintenance of electrical equipment and for those undertaking practical inspection and testing of electrical equipment. It allows those with the responsibility for the testing and inspection of electrical equipment to gain a qualification suitable to their job role. The qualification allows candidates to learn, develop and practise the skills required to inspect and test items of electrical equipment in line with the latest edition of the Code of Practice for In-Service Inspection and Testing of Electrical Equipment. If you already work as an electrician it will add another string to your bow and can help you move up in the industry. Learners completing the qualification will have the ability to carry out mandatory responsibilities within the workplace depending on their prior electrical knowledge This level will suit you if you are a practising electrician either involved in, or looking to become involved in, the inspection and testing of electrical equipment. To successfully complete the qualification learners will have to sit an Evolve on-line test comprising of a 50 MCQ and a practical assignment. The practical consists of 3 tasks which are: Task 1 is inspect and test Class I equipment, Task 2 is inspect and test Class II equipment (this will be either unearthed metal or without unearthed metal or Class II FE – Learners will not need to do all 3 of these, they only need to do one type), Task 3 is completing the record forms

C&G 2377-77 – 2 Day
Delivered in Scotland + 1 more or Online + more
£500

Advanced UNIX shell programming

5.0(3)

By Systems & Network Training

Advanced UNIX shell scripting training course description A follow on hands on course from the Introduction to shell programming course covering the powerful sed and awk tools along with the extra Korn shell programming features. What will you learn Use regular expressions within grep, ed and many other utilities. Use awk and sed. Integrate sed and awk into shell scripts. Recognise the role of shell scripts within the UNIX system. Write shell scripts using new Korn shell features including: The select construct Arrays Arithmetic evaluation Advanced UNIX shell scripting training course details Who will benefit: Programmers developing applications under UNIX. Administrators who need time saving utilities. Technical personnel who wish to make the most out of the Korn Shell. Prerequisites: UNIX shell scripting Duration 3 days Advanced UNIX shell scripting training course contents Regular Expressions What are REs? How can they be used? How to write REs More REs e REs Tagging, matching words, repetitions. The sed editor Basic usage: Saving output, options. sed script files, sed commands, Specifying lines to edit, Hold space and pattern space, advanced commands Awk Basic usage, nawk script files, Patterns, Records and fields, Actions if, while, do, for... System variables NF, NR, RS... Arrays Functions length, printf, cos, user defined... Using nawk in shell scripts Korn shell scripts Review of Bourne shell scripts functions... Variables typeset, manipulating strings Arrays Arithmetic evaluation the let command, (( )), typeset -i The select construct Syntax, workings, REPLY, PS3 Miscellaneous Enhanced I/O, ${10}

Advanced UNIX shell programming
Delivered in Internationally or OnlineFlexible Dates
£1,697

Sew a Beautiful Quilted Bag

By Loopy's Place

Join our quilted bag workshop – perfect for all skill levels. Create a stunning bag with us at Loopy's Place. Materials provided. Book your spot now!

Sew a Beautiful Quilted Bag
Delivered In-Person in Sheffield
£50

Advanced Phlebotomy - Skills & Techniques (GPT005)

4.6(39)

By Geopace Training

The UK's first and only Level 4 qualification in Phlebotomy (equivalent to Ireland Level 6) FDSc (Foundation Degree Level) qualification Nationally Recognised certificate Dually accredited: Open College Network and CPD Covers both aspirated and evacuated systems Covers specialised blood collection systems & methods Classroom or Virtual Classroom learning options Comprehensive Training Kit is provided when booking our Virtual Classroom option (yours to keep) Complete your training from beginner to advanced level This course either follows on from our Introduction to Phlebotomy Course or can be combined with our introductory course as part of a course package (see below) Available to candidates who have completed (or are currently enrolled to complete) our Introduction to Phlebotomy Course or have previous phlebotomy practical experience.

Advanced Phlebotomy - Skills & Techniques (GPT005)
Delivered in Liverpool + 19 more or Online + more
£195

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

Peripheral I.V. Cannulation Course (GPT008)

4.6(39)

By Geopace Training

Learn how to cannulate ... Nationally Recognised Qualification OCN Accredited - Level 3 (advanced) - Ireland Level 5 CPD Accredited - The CPD Certification Service Classroom or Virtual Classroom options Covers all steps for cannulating in arm or hand Practise on artificial arms and fake blood! Essential qualification for all IV therapies Phlebotomy training desirable but not essential Basic understanding of English language required OPEN TO ALL APPLICANTS

Peripheral I.V. Cannulation Course (GPT008)
Delivered in Milton Keynes + 15 more or Online + more
£195

Essential CPRI

5.0(3)

By Systems & Network Training

CPRI training course description This course is designed to give the delegate a technical overview of the CPRI protocols and link setup. We will explain the industry cooperation to define the key internal interface between the radio equipment control (REC) and the radio equipment (RE). Also explained will be the SAP that the CPRI link supports for IQ Interface, frame synchronisation, link control and management and the master and slave ports. We will investigate the CPRI block diagram and together with the data formats and sample mapping solutions. The CPRI frame hierarchy and hyperframe construction will be detailed during this three day overview course. What will you learn Explain the CPRI Block diagram. Understand hyperframing capabilities. Explain the CPRI frame format. Understand how the synchronisation is compliant with 3GPP & WiMAX requirements. Understand the two electrical characteristics of CPRI standard. Understand the CPRI standards structure. Understand the CPRI system & Interface definitions. List the four standard bit rates of the CPRI specification. Understand the CPRI Protocol stacks. CPRI training course details Who will benefit: Anyone looking for a technical overview of the CPRI protocols and link set up. Prerequisites: None. Duration 3 days CPRI training course contents System Description Subsystems. Nodes. Protocol layers. Protocol data planes. User data planes. Antenna carriers. Service Access Points (SAP). Link. Passive Link. Hop. Multi-hop Connection. Logical Connection. Master Port & Slave Port. System Architecture Basic System Architecture & Common Public Radio Interface Definition. System Architecture with a link between Res. Reference configurations: Chain topology, Tree topology, Ring topology. RECs & REs in both chain & tree topology Functional description Radio Functionality. Functional Decomposition between REC and RE: For UTRA FDD, For WiMAX & E-UTRA, For GSM. CPRI Control Functionality. Interface Baseline Interface Specification. Protocol Overview. IQ Data. Synchronisation. L1 Inband Protocol. C & M Data. Protocol Extensions. Vendor Specific Information. Physical Layer Specifications Line Bit Rate. Physical Layer Modes. Electrical Interface. Optical Interface. Line Coding. Bit Error Correction/Detection. Frame Structure. Mapping Methods. Container Blocks. Hyperframes. GSM, UMTS & WiMAX Timing. Link Delay Accuracy & Cable Delay Calibration. Link Maintenance Data Link Layer (Layer 2) Specification Layer 2 Framing for Fast & Slow C & M Channels. Medium Access Control/Data Mapping. Flow Control. Start-up Sequence General. Layer 1 Start-up Timer. State Description. Transition Description. Interoperability Reserved Bandwidth. Version Numbers. Supplementary Specification Details Delay Calibration Example. Reference Test Points. List of Abbreviations & Gloss

Essential CPRI
Delivered in Internationally or OnlineFlexible Dates
£3,497

C&G 2392-10 – Level 2 Certificate in Fundamental Inspection, Testing & Initial Verification

4.7(1243)

By Technique Learning Solutions

City & Guilds 2392 10 level 2 is a short course aimed at newcomers to inspection and testing of electrical installations, and also the logical route towards 2391-50, 2391-51, or 2391-52. City & Guilds 2392 10 level 2 Certification is achieved on successful completion of both the practical assessment and PC based examination. A four day course for a student possessing a working knowledge of the wiring regulations, to the level of City and Guilds 2382. We strongly recommend City and Guilds 2382 is achieved prior to sitting this City & Guilds 2392 10 level 2 course, though this is NOT an entry requirement. The City & Guilds 2392 10 level 2 exam is a PC based multiple choice examination has 50 questions, is 1 hour 40 mins long and is closed book, with instant result. To further support this City & Guilds 2392 10 level 2 course, we offer a 1 day practical workshop available to candidates who have completed the course and require further ‘hands on’ practical experience prior to their practical examination. Most students who take this option, elect to complete this the day before their practical assessment. The practical assessment takes approximately 2 hours, this can, if available, be taken on the day following the on-line examination or at a later date at a time which is mutually convenient to both student and centre. The City & Guilds 2392 10 level 2 course costs include examination entry fees, a buffet lunch and refreshments throughout the day. The course costs include examination entry fees.

C&G 2392-10 – Level 2 Certificate in Fundamental Inspection, Testing & Initial Verification
Delivered in Clay Cross + 1 more or Online + more
£500

C&G 2391-51, Periodic Inspection and Testing of Electrical Installations

4.7(1243)

By Technique Learning Solutions

City and Guilds 2391-51, level 3, is ideal for people with limited experience of periodic inspection of electrical installations. If you are already working as an Electrician, but have not carried out inspection and testing since qualifying, or you require to update before moving onto other qualifications, then this 5 day City and Guilds 2391-51 course will be right for you. City and Guilds 2391-51 Course Content: Principles, practices and legislation for the periodic inspection, testing and condition reporting of electrical installations. Requirements for completing the safe isolation of electrical circuits and installations Requirements for inspecting, testing and recording the condition of electrical installations Requirements for completing the periodic inspection of electrical installations Differences between periodic inspection and initial verification Requirements for safe testing of electrical installations which have been put in to service Requirements for testing before circuits are live. Requirements for testing live installations Understanding and interpreting test results Requirements for the completion of electrical installation condition reports and associated documentation Confirmation of safety of system and equipment prior to completion of inspection, testing and commissioning Carrying out inspection of electrical installations prior to them being put into service Ability to test electrical installations prior to them being put into service Produce a condition report with recording observations and classification In order to claim the full City and Guilds 2391-51 qualification, students must successfully complete: One x1 hour 30 minute online multiple choice (Open Book) Exam to be completed during the course One x3 hours 30 minute practical test to be completed after the course, broken into sections as follows: Task A – Visual Inspection – 30mins Task B – Periodic Inspection and Test – 2hrs Task C – Short Answer Questions – 1hr To further support this course, we offer a 1 day practical workshop (at the cost of £120.00 Net VAT) available to candidates who have completed the course and require further ‘hands on’ practical experience prior to their practical exam. Most students who take this option elect to complete this the day before their practical assessment. The City and Guilds 2391-51 course costs include examination entry fees.

C&G 2391-51, Periodic Inspection and Testing of Electrical Installations
Delivered in Scotland + 1 more or Online + more
£120

Level 3 Safeguarding

5.0(50)

By Pochat Training

FAA Level 3 Award In Principles Of Safeguarding And Protecting Children, Young People Or Vulnerable Adults (RQF) Face to Face Classroom: One day course Virtual Classroom: 3 session of 2 ½ hours For those who work with children, young people and vulnerable adults Promotes awareness of safeguarding, enabling learners to identify problems and show where to report these to Course Contents: Safeguarding and protecting children, young people or vulnerable adults How to respond to evidence or concerns that a child, young person or vulnerable adult has been abused Safeguarding legislation and guidance Indicators of abuse or neglect Making judgements Communicating worries and concerns Roles and responsibilities Sharing information Allegations and complaints Reporting allegations and complaints Benefits of this Course: In 2018/2019, 415,050 concerns of abuse were raised In 2018/2019, there were nearly 400,000 children in need 52,300 children were subject to a child protection plan 63% of adult safeguarding concerns are for people over 65 1 in every 42 adults aged 85+ have required safeguarding enquires... Child abuse often goes unreported and unrecorded - till it is picked up on by someone who then does something about it. This Level 3 Safeguarding course gives people the skills and knowledge to make a real difference to a person's life! Accredited, Ofqual regulated qualification Our Safeguarding and Protecting Children, Young People or Vulnerable Adults training course is a nationally recognised, Ofqual regulated qualifications accredited by First Aid Awards Ltd. This means that you can be rest assured that your Principles of Safeguarding and Protecting Children, Young People or Vulnerable Adults Certificate provides information for best practice to make a real difference to protect the health and wellbeing of our most vulnerable. The Ofqual Register number for this course is 601/8471/1

Level 3 Safeguarding
Delivered in Chesterfield or Online + more
£105

Educators matching "RES"

Show all 44