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

3809 RES courses in Liverpool delivered Live Online

Introduction to ECG Course (GPT009)

4.6(39)

By Geopace Training

Learn how to perform and read an ECG ... Nationally Recognised Qualification OCN Accredited - Level 3 (advanced level) CPD Accredited - The CPD Certification Service Introduces you to the fundamentals of setting up and operating an ECG machine Includes patient preparation Produce a valid (error free) ECG Learn and understand ECG traces Recognise recordings that require urgent attention Basic understanding of English language required OPEN TO ALL APPLICANTS VIRTUAL CLASSROOM OPTION INCLUDES COMPREHENSIVE PRACTISE@HOME ECG TRAINING KIT Final interpretation of all ECG recordings is the responsibility of a medical professional.

Introduction to ECG Course (GPT009)
Delivered in Milton Keynes or Online + more
£195

Hearth of Hera: A 7-Week Sacred Spiral for Women in Midlife

5.0(1)

By Neptune's Daughter Ltd

This isn’t a course. It’s a consecration. A sacred spiral for women in midlife who feel the shift — and are ready to rise. There comes a moment when the roles you've played no longer fit. When the masks feel heavy. When the rhythm you’ve lived by begins to falter. Not because you’ve failed. But because you’re becoming, something powerful, sovereign, and beautifully indefinable. You’re not losing yourself. You’re rediscovering the fire that never truly went out. 🔮 What is Hearth of Hera? Hearth of Hera is a 7-week live, online spiral for women in midlife who know they’re no longer who they were — but aren’t yet sure who they’re becoming. It’s not about self-improvement. It’s not a coaching programme or a checklist. It’s a return — to voice, sovereignty, magic, and self-remembrance. If you’ve felt the call, your place is already waiting. 🌿 This journey is for you if: * You’re in midlife or standing at a powerful threshold moment * You’ve outgrown old identities, rules, or rhythms that no longer serve * You want sacred space that honours your depth, sensitivity, and magic * You’re ready to reclaim your voice — spiritually, creatively, unapologetically * You crave gentle ritual, beautiful structure, and a pace that honours your energy * You long for sisterhood without pressure or performance * You’re tired of trying to be “enough” and just want to be true No application. No performance. Just resonance — and your readiness to return to yourself. 🔥 What You Receive * 🕯 7 live weekly Zoom circles (Mondays at 6pm BST – replays available) * 🌀 A growing 7-card tarot spread — one new card drawn and explored each week * 📝 Creative prompts and voicework exercises * 🔥 Weekly rituals to support your unfolding (simple and flexible — no pressure) * 🌙 Optional journal and embodiment practices you can explore at your own pace * 📱 A private Telegram group for connection, sharing, and gentle sisterhood Whether you attend live or follow the replays, you’ll be fully held. ✨ The Spiral Path: Your 7-Week Journey Each week brings a new threshold — a deepening into voice, truth, and sovereignty: 1. Root the Flame — anchor into belonging and inner ground 2. Ignite the Flow — awaken creative, emotional, and energetic movement 3. Sing the Soul — speak your truth and reclaim the myth you live 4. Name the Boundaries — honour your yes, your no, your sacred edge 5. Clarify the Vision — attune to desire, direction, and knowing 6. Burn the Falsehoods — release what no longer fits or serves 7. Rise to Be Seen — stand whole, witnessed, and unshaken This is not a linear curriculum. It is a spiral of becoming — rooted in rhythm, ritual, and resonance. We begin 7/7. Come. Sit by the hearth. Your fire is waiting.

Hearth of Hera: A 7-Week Sacred Spiral for Women in Midlife
Delivered Online
£222

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

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

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

5.0(3)

By Ember Compliance

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

C01M01 - FD&FA Fundamentals - BS 5839-1 (online)
Delivered Online + more
£230

Legal Aid - Family Controlled Work Billing Course

By DG Legal

The LAA operates a strict compliance regime when it comes to auditing family controlled work matters, and mistakes can often result in a Contract Notice, corrective action, and further follow-up activity within 6 months. This course will discuss the various aspects of family controlled work billing, with discussions on topics such as how to bill private law, public law, and help with mediation matters; how to evidence whether substantive negotiations and a settlement have taken place in private law matters; how do the LAA audit travel and other disbursement claims; what evidence must be present on files to avoid any issues on audit – including scope, gateway evidence, and forms/evidence of means (rules on evidence of means will be included in brief, however, a separate, more in-depth Civil Means Assessment Guidance Course is available); and the rules on claiming separate matters and escape fees. Key aspects of the Civil Contract and associated LAA Guidance (including the Codes Guidance) will be included, along with a discussion of common errors that are made. Target Audience This online course is aimed at anyone involved in billing Family Controlled Work matters or managing an LAA Family Contract. Resources Course notes will be provided to all delegates which may be useful for ongoing reference or cascade training. Please note a recording of the course will not be made available. Speaker Steve Keeling, Consultant, DG Legal Steve joined DG Legal after leaving the Legal Aid Agency in August 2016. In his 17 years at the LAA, he worked in the audit team as both auditor and manager and was a Contract Manager for several years. Steve is also a certified SQM auditor and undertakes audits on behalf of Recognising Excellence as well as running training sessions for the SQM Audit Team periodically.

Legal Aid - Family Controlled Work Billing Course
Delivered Online + more
£67.50 to £90

NEGOTIATING SKILLS

5.0(4)

By Improving Communications Uk

Negotiating Skills ► Into Action strengthens participants’ ability to apply a collaborative, problem-solving approach to the negotiating process. It is exercise-based, highly interactive and designed to yield results that can be put to use immediately. Outcomes – Participants will be able to: Recognize their default negotiating style Work more effectively with clients who have different styles Understand the process of collaborative negotiations Prepare appropriately for an upcoming negotiation Craft agreements that satisfy both party’s underlying interests Format—Negotiating Skills ► Into Action is a 4-hour interactive virtual class. Register for this class and you will be sent ONLINE login instructions prior to the class date. Dr. Atkins, thank you for sharing ‘Language of Happiness and Power of Praise‘ with our chapter! We enjoyed the interactive presentation and your professionalism. I received positive feedback from our members—there is nothing better than that! Thanks again. Olga Otero, Chapter PresidentHuman Resources Association of Palm Beach County (HRPBC)

NEGOTIATING SKILLS
Delivered Online + more
£316

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

SOLD OUT! 20th August Siân Ellis-Martin #Agent121. Looking for: ADULT FICTION, NON-FICTION

5.0(3)

By I Am In Print

LOOKING FOR: ADULT FICTION, NON-FICTION Siân Ellis-Martin joined Blake Friedmann in 2018 and is building a list of fiction and non-fiction at the agency.  With regards to fiction, Siân is looking for commercial, upmarket and accessible literary novels. She always wants to be completely absorbed by the world of the novel, to jump into the character’s life and be swept into the narrative as if she’s been there all along. She’s drawn in by compelling characters and relationships, and loves stories with a mystery or question at the heart of them. She’s open to these ideas being explored in a variety of ways, but at the moment, she’d particularly like to find an epic love story, a fun, queer rom-com with an unusual setting or pitch, and/or a sweeping family saga. Siân leans more towards contemporary settings but does enjoy a historical backdrop too. In non-fiction, she’s looking for narrative non-fiction, history from different perspectives and books that make complicated ideas around things like politics and literature more accessible. Her favourite type of non-fiction book is the one that makes you interested in something or someone you’d never thought you would be. Siân would also love to find cookery and food books too, particularly cuisines that are less visible in the book world, or budget cooking. She’s not currently taking on YA, children’s, fantasy or science fiction projects. Siân would like you to submit a covering letter, 1 - 2 page synopsis and the first three chapters (or 5,000 words, whichever is shorter) of your manuscript in a single word document.  (In addition to the paid sessions, Siân is kindly offering one free session for low income/under-represented writers. Please email agent121@iaminprint.co.uk to apply, outlining your case for this option which is offered at the discretion of I Am In Print).  By booking you understand you need to conduct an internet connection test with I Am In Print prior to the event. You also agree to email your material in one document to reach I Am In Print by the stated submission deadline and note that I Am In Print take no responsibility for the advice received during your agent meeting. Submission Deadline: Wednesday 13th August 2025

SOLD OUT! 20th August Siân Ellis-Martin #Agent121. Looking for: ADULT FICTION, NON-FICTION
Delivered Online + more
£72

Achieving Email Excellence Strategies for Successful Email Marketing

5.0(1)

By Let’s Do Business Group

Email Marketing remains a cornerstone of digital communication, which when used effectively can elevate your brand, foster customer loyalty, and drive remarkable results.

Achieving Email Excellence Strategies for Successful Email Marketing
Delivered Online + more
£30