Every organisation needs leaders who can think and act strategically. This program will help you clarify: Why you exist (strategic purpose) Where you are now (strategic assessment) Where you want to go (strategic development) How to get there (strategic execution)
What you learn, will equip you to act wholeheartedly, wisely and joyfully in all aspects of your life. About this Event Your present was made in the past. Your future is created in the present... ... NOT by what you do tomorrow but… …by what you do and don’t do today …by what you say and don’t say today …by what you see and feel and think today … by what you miss, deny, ignore, distort today Presence in Action (TM) is for leaders, coaches, artists, musicians, supervisors, health professionals, teachers, parents, students - in fact it is for EVERYONE committed to doing something to change themselves, their lives, their relationships, their prospects. What you learn, will equip you to act wisely, wholeheartedly and joyfully in all aspects of your life. You will learn to use the P6 Constellation as a Presence in Action framework to assist you in deepening and extending your efficacy and artistry in and with life. Through practice you will become better able to see, adapt, communicate and take coherent action in any and all circumstances. You will develop the wherewithal to get unstuck and to liberate yourself into flow. With practice you will find yourself ever more skilled in navigating the complexities and challenges you face, whatever the context. For practitioners working with others, you will find your personal and professional practice increasingly enhanced by the insights you gain. Irrespective of what you do and who you are in life, this programme will open up for you, new ways of seeing, understanding and being in the world. It will deliver joys and surprises; it will be challenging and sometimes a bit confusing. This is coherent with the nature of this unusual learning experience. It will call on each of you to let go of what you think you know in order to discover what is currently beyond sight or reach. Through this process you will find yourselves increasingly liberated from the fictions that bind and blind you - that prevent you being and becoming your full potential. During our time together we will make connections between ancient wisdoms and new sciences - helping you to connect to wider patterns in nature and the wider world. We will... ...dive deep and stretch high ...reach outwards and touch inwards ...explore what happens within and between us ...engage lovingly and boldly with our deepest selves ...experiment with ancient wisdom and embodied knowhow ...play wholly and wholeheartedly as ourselves, in action together ...connect where the sacred meets the systemic within, between and beyond Throughout our time together, we will share, experience, reflect, play, practice and learn together. I will introduce you to models, frameworks and theories that can help you make sense of your experiences and insights. You will engage in solo work, paired practice and whole group activities. We will take advantage of all our senses and sense-making - using our bodies, minds and spirits, not in isolation but as the integrated whole beings that we are.
Global leading Asset Management course online. This online IAM Certificate course will be hosted through Teams.
ICA International Diploma in Managing Sanctions Risk Sanctions are a crucial instrument in the international battle against financial crime proliferation, terrorism and human rights abuses. It's a complex area and those who manage the risk need the right combination of knowledge, capabilities and behaviours to do so effectively. Technical skills - develop a deeper understanding of sanctions architecture, screening and the control framework; enrich your professional skillset Critical thinking - enhance your judgment-making and problem-solving skills Collaboration and communication - ensure a joined-up approach in your management of sanctions cases Flexibility and adaptability - be prepared to respond to fast-changing regimes and rules Leadership - be empowered to make effective decisions quickly and manage resources appropriately This course is awarded in association with Alliance Manchester Business School, the University of Manchester. Through this Level 6- Advanced qualification you will learn: Global sanctions architecture - Sanctions in context How sanctions regimes are implemented Evolving scope of sanctions - A changing tool Sector-based sanctions Identifying higher risk jurisdictions and activities Transparency, control, and ownership Licensing and permissible payments Management of global exposure to unilateral and regional sanctions Developing the control framework Sanctions screening Incident management and holding of sanctioned funds Sanctions lifting and roll back
LAN training course description A concise overview course covering Local Area Networks with particular emphasis on the use of Ethernet and Wireless LANS. As well as explaining buzzwords we cover how the technology works at a simple level. After defining LANs the course moves onto Ethernet and switching also covering VLANs. WiFi is then covered, with coverage of 802.11 standards and frequencies along with integrating WiFi with Ethernet. The course then covers routers and their role in connecting networks and the course finishes with a comparison of Ethernet vs WiFi and when to use them. What will you learn Describe how Ethernet works (in simple terms) and when to use Ethernet. Explain the difference between a switch and a router. Describe how WiFi works (in simple terms). Describe the role of Access points. Evaluate wireless technologies and when to use them. List the speeds of various LAN technologies. LAN training course details Who will benefit: Sales staff, managers and other non technical staff. Prerequisites: None. Duration 1 day LAN training course contents LANS What is a LAN? LAN standards, LAN choices, choosing the media, copper, UTP, cat5e, fibre, RF, bandwidth speeds, link aggregation, Full/half duplex. Ethernet What is Ethernet? 802.3, parts of Ethernet, Ethernet evolution, MAC addresses, frames, broadcasts. Ethernet switches What are switches, switches versus hubs, how switches work, ways to configure switches, Loops, STP. VLANs What are VLANs? Why have VLANs, impact of VLANs, Tagging (aka trunking), 802.1Q Wireless LANS Type of wireless LAN, RF frequencies, 2.4GHz, 5GHz, others, interference, standards, 802.11 and variants, CSMA/CA. Wireless LANS NICs, Access points, integration with Ethernet, multiple access points, mesh networks, WiFi security. Interconnecting LANs Routers, connecting networks, interconnecting VLANs, IP addressing, Layer 3 switches. Summary WiFi vs Ethernet.
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.
Implementing Scrum for Teams: In-House Training Scrum is an iterative, incremental framework for developing products. It allows the team to deliver a potentially shippable set of functionalities for each iteration, providing the agility needed to respond to rapidly changing requirements. These characteristics have led to Scrum becoming the most popular method in the world of Agile projects. This two-day course provides a practical approach to implementing the Scrum method on your projects. You will learn how to initiate a Scrum project, how to build a Product Backlog, containing user stories, and how to plan and estimate releases and iterations. You will learn how to conduct Scrum events, such as the Sprint Planning Meeting, and how to track progress during an iteration. You will apply what you learn in a series of hands-on, team-based activities and simulations that take you through the entire Scrum process. The overall goal of the course is to enable you to successfully apply the Scrum method on appropriate projects in your environment. What you will Learn At the end of this program, you will be able to: Teach-back Agile and Scrum foundation concepts Initiate a Scrum Project Conduct Team Sprint Planning and Sprint Review meetings Develop Release Plans (including effective user stories and priorities) Build a Sprint plan (including effective estimates) Executive a Sprint (including essential Scrum ceremonies) Implement Scrum in your environment Foundation Concepts Agile Mindset, Values, and Tenets Agile Benefits and Methods Scrum Overview Teams: Self-Managing, Self-Organizing, and Self-Improving Initiating a Scrum Project 'Sprint Zero' Activities Defining the Vision The Product Backlog and User Stories Acceptance Criteria Story Map Planning Releases Planning releases Estimating user stories Prioritizing user stories Selecting a Sprint length Estimating velocity Creating a release plan Planning a Sprint The Sprint Planning Meeting Building the Sprint Backlog Creating a Sprint Plan Running a Sprint Conduct a Sprint Burn-down and Burn-up Charts Negotiating Changes During a Sprint The Sprint Review Meeting Sprint Retrospective Releasing into Production Closing the Scrum Project Implementing Scrum Scrum Simulation Exercise Conditions of Success for Implementing Scrum
Landscape training face to face training customised and bespoke.