Decision Making and Problem Solving (In-Person) We may live in an era of fast technology and increasing reliance upon automation, but our human abilities to think critically, make careful decisions, and solve nuanced problems are more important than ever. Our personal lives depend on those things, and so do the lives of our organizations. Since business is now conducted at remarkable speeds, we put our organizations at great risk daily when we have weak competencies with decision-making and problem-solving. Decisions and solutions that are executed impulsively and without structured approaches can create more problems or make existing ones worse! This course aims to help participants improve their skills so they can execute well and add value to the workplace. Learners will experience multiple decision-making and problem-solving models, tools, and techniques meant for the real world. They will learn how to align their growing toolboxes with the right situational contexts so that they can transfer that skill to the workplace. They will also discover how indecision, cognitive bias, and default thought processes can create obstacles to effective decision-making and problem-solving. What you will Learn Recognize the importance of making a sound decision in a timely manner Infer types of cognitive biases and obstacles that impact decision-making Separate facts, requirements, ideas, and perceptions when making a decision or solving problems Apply structured decision-making and problem-solving approaches Conduct cause and effect and Force Field analyses Evaluate alternative solution methods using various techniques Analyze real world situations to determine the best aligned decision-making and problem-solving models, tools, and techniques Implement decision-making and problem-solving models, tools, and techniques Getting Started Foundation Concepts Contextualizing decisiveness and problem-solving Discriminating between decisiveness and problem-solving Understanding Decision-Making Decision-making challenges and impacts Key drivers of good decision-making Thought processes and obstacles Knowledge, skills, and abilities (KSAs) Decision-Making Models and Supporting Tools Decision-making models, tools, and guidelines Tools to evaluate alternatives Translating requirements into action Problem-Solving Defining the problem Problem-solving models Cause and effect analysis Quick hit vs. innovative problem-solving Summary and Next Steps Course summary Personal action plan
MySQL for developers training course description This MySQL Developers training course is designed for MySQL Developers who have a good understanding of a MySQL database and experience of using SQL commands. The course provides further practical experience in more advanced MySQL commands and SQL statements including Stored Routines, Triggers and Event Scheduling. What will you learn Provide the skills needed to write more advanced queries and database maintenance statements on a MySQL database. Use advanced features of the MySQL Client. Use advanced data types. Manage the structure of databases and tables. Manage and using indexes. Write complex SQL query statements. Use advanced SQL expressions. Use advanced SQL functions. Perform advanced Insert, Update, Delete, Replace and Truncate Operations. Use user variable syntax and properties. Import and export data from within MySQL. Import and export data from the command line. Perform complex joins to access multiple tables. Perform complex subqueries. Create, manage and us views. Use prepared statements. Create and use stored routines. Create and use triggers. Obtain database metadata. Optimize queries. Work with the main storage engines. Debug MySQL applications. MySQL for developers training course details Who will benefit: MySQL Developers who have a basic understanding of a MySQL database and SQL commands as covered on the Introduction to MySQL course. Prerequisites: MySQL foundation Duration 5 days MySQL for developers training course contents Introduction Administration and Course Materials, Course Structure and Agenda, Delegate and Trainer Introductions. Client/server concepts MySQL client/server architecture, Server modes, Using client programs, Logging in options, Configuration files, Precedence of logging in options Hands on Using client/server The MySQL client program Using MySQL interactively, The MySQL prompts, Client commands and SQL statements, Editing, Selecting a database, Help, Safe updates, Using script files, Using a source file, Redirecting output into a file, Command line execution, Mysql output formats, Overriding the defaults, Html and xml output, MySQL Utilities. Hands on Using the MySQL client program Data types Bit data type, Numeric data types, Auto_increment, Character string data types, Character sets and collation, Binary string data types, Enum and Set data types, Temporal data types, Timezone support, Handling Missing Or Invalid Data Values, SQL_MODE options. Hands on Using data types Identifiers Using Quotes with identifier naming, Case sensitivity in Identifier naming, Qualifying columns with table and database names, Using reserved words as identifiers, Function names Hands on Using identifiers Databases Database properties, Creating a database, Selecting a database, Altering databases, Dropping databases, Obtaining database metadata, The SHOW command, The INFORMATION_SCHEMA database, The SHOW CREATE command Hands on Using databases Tables and indexes Table properties, Creating tables, Create table using Select or Like, Temporary tables and memory tables, Altering tables, Adding columns, Changing column widths and types, Renaming columns, Dropping columns, Adding constraints, Dropping constraints, Renaming tables, Change the table storage engine, Multiple alterations, Dropping tables, Emptying tables, Obtaining table metadata, Show create table, The information_schema, Index introduction, Structure of a mysql index, Creating and dropping indexes, Creating an index, Altering a table to add an index, Specifying index type, Dropping indexes, Obtaining Index Metadata. Hands on Creating, altering and dropping tables/indexes Querying for data The SQL select statement and MySQL differences, Advanced order by, Order by and collation, Order by with enum datatype, Order by with Set datatype, Ordering with distinct and group by Special features of union, Limit and order by clauses, Group By clause, Group_concat, Using Rollup in a Group By clause. Hands on Querying for data SQL Expressions and functions Components of expressions, Nulls, Numeric expressions, String expressions, Temporal expressions, Comparison functions, Flow control functions, Numeric functions, String functions, Temporal functions. Hands on Using expressions and functions Updating data Update operations and privileges, Inserting rows, Insert using a set clause, Inserting duplicate values, Replacing rows, Updating rows, Update using the order by and limit clauses, Deleting rows, The delete and truncate statements. Exercise: Inserting, updating, replacing and deleting data Connectors MySQL client interfaces, MySQL connectors, Oracle and community conectors, Connecting to MySQL server using Java and PHP connectors, MySQL and NoSQL, Innodb integration with memcached. Obtaining database metadata What is metadata?, The mysqlshow utility, The show and describe commands, Describing tables, The information_schema, Listing tables, Listing columns, Listing views, Listing key_columns_usage. Hands on Obtaining database metadata Debugging Mysql error messages, The show statement, Show errors, Show count(*) errors, Show warnings, Show count(*) warnings, Note messages, The perror utility. Hands on Debugging Joins Overview of inner joins, Cartesian product, Inner joins with original syntax, Non equi-join, Using table aliases to avoid name clashes, Inner Joins With ISO/ANSI Syntax, Outer Joins, Left outer joins, Right outer joins, Full outer joins, Updating multiple tables simultaneously, Updating rows in one table based on a condition in another, Updating rows in one table reading data from another, Deleting from multiple tables simultaneously, Deleting rows in one table based on a condition in another. Hands on Coding joins Subqueries Types of subquery, Multiple-column subqueries, Correlated subqueries, Using the ANY, ALL and SOME operators, Using the EXISTS operator, Subqueries as scalar expressions, Inline views, Converting subqueries to joins, Using subqueries in updates and deletes. Hands on Coding subqueries Views Why views are used, Creating views, View creation restrictions, View algorithms, Updateable views, Altering and dropping views, Displaying information about views, Privileges for views. Hands on Using views Import and Export Exporting using SQL, Privileges required to export data, Importing using SQL, Messages when loading data, Privileges required to load data, Exporting from the command line, Mysqldump main options, Importing from the command line, Mysqlimport main options. Hands on Importing and exporting User variables and prepared statements Creating User variables, User variables in a select, Prepared statements, The prepare statement, The execute statement, The deallocate statement, Using prepared statements in code, with connectors. Hands on Using variables and prepared statements Introduction to stored routines Types of stored routines, Benefits of stored routines, Stored routine features, Differences between procedures and functions, Introduction to the Block, Declaring variables and constants, Assigning values to variables, Definer rights and invoker rights, Using SELECT in stored routines, Altering and dropping stored routines, Obtaining stored routine metadata, Stored routine privileges and execution security. Hands on Writing simple stored routines Stored routines - program logic The IF .. THEN .. ELSEIF construct, The CASE statement, The basic loop, The while loop, The repeat loop, The iterate statement, Nested loops. Hands on Writing stored routines with program logic Stored routines - exception handlers and cursors Dealing with errors using Exception handlers, Cursors, What is a cursor?, Cursor operations, Declaring cursors, Opening and closing cursors, Fetching rows, Status checking. Hands on Writing stored routines with program logic Procedures with parameters Creating procedures with parameters, Calling Procedures With Parameters. Hands on Writing stored routines with parameters Functions What is a function?, The create function statement, Executing functions, Executing functions from code, Executing functions from SQL statements, The deterministic and SQL clauses. Hands on Writing functions Triggers Trigger creation, Restrictions on triggers, The create trigger statement, Using the old and new qualifiers, Managing triggers, Destroying triggers, Required privileges. Hands on Writing triggers Basic optimizations Normalisation of data to third normal form, Using indexes for optimization, General query enhancement, Using Explain to analyze queries, Choosing an INNODB or MYISAM storage engine, Using MySQL Enterprise Monitor in query optimization. Hands on Making use of basic optimizations More about indexes Indexes and joins Hands on Investigating indexes and joins
Strategic Thinking: In-House Training The goal of this course is to provide you with the building blocks and the motivation to develop the critical skill of strategic thinking. The participants will consider a four-part model that distinguishes strategic thinking from strategic planning and managing. With that understanding, you will investigate the critical components of strategic thinking and how to apply it effectively. What you Will Learn Define strategic thinking and distinguish it from strategic planning and management Explain a high-level approach to gaining strategic thinking skills Integrate other interpersonal skills, such as self-awareness, systems thinking, leadership, constructive conflict, and collaboration, into the fabric of strategic thinking skills Select appropriate techniques to apply strategic thinking in specific situations Recognize and emulate effective strategic thinking behaviors Getting Started Introductions Course structure Course goals and objectives Foundation Concepts Interactive event: Define Strategic Thinking (ST) Interactive event: Discuss relationship of ST with Strategic Planning, Management and Decision Making Strategic Level Framework - Tying it all together Strategic thinking attributes Strategic Thinking Critical Success Factors Strategic Thinking Critical Success Factors - 5-part model Strategic Thinking and the Organization Critical Success Factors Model applied to an organization Tools Introduction (5): Environmental, 5 Forces, SWOT, Value Proposition, Integral Theory of Worldview Video: Fog of War Strategic Thinking and the Individual Critical Success Factors Model applied to an individual Tools Introduction (5): Thinking Styles, Six Thinking Hats, Reverse Thinking, Systems Thinking, Integral Theory of Worldview Strategic Thinking at the Interpersonal and Team Levels Emotional Intelligence - Self Awareness and Working With Others Team Leadership and Trust Constructive Conflict as the Gateway to Collaboration Interactive event: Testing the Models - Challenge Perspective; What's Missing Applying the critical skill of Strategic Thinking Worldview: Team versus client Trusted Advisor Interactive event: Doing what is asked (Case study, wherein participants review the default case scenario prepared for this workshop and add specific details to make the scenario more relevant to their experiences / needs. Teams develop an action plan for applying ST concepts and techniques they have learned here to the situation, then compare and contrast results.)
This half-day course provides an introduction to promote mental health awareness in the workplace for all employees. Group activities are designed to encourage and empower individuals to prioritise their mental wellbeing and recognise signs of mental ill health in both themselves and others. The session emphasises the importance of mental wellbeing conversations, self-care and how to access further support.
The emphasis is on competence, fitness to practice and life-long learning. Underpinning this is that clinical specialists and experts take the lead in teaching and training to develop knowledge and skills. However, not everyone has the tools to teach knowing how to is the key to successful learning, this programme is designed to Train the Trainer.
This is a theoretical and practical introductory group tuition during which you will be taught common, essential leather crafting and basic sewing techniques.You will be taught how to correctly use hand tools, how to hand sew leather and understand the most common finishing techniques used in bag and accessory making.You will learn about different types of leather and understand how to select the correct type of material(s) for your project. You will receive an overview of the technical aspects of working with leather and constructing bags and accessories such as preparing, marking, cutting, gluing, reinforcing, debossing and more.You will produce your own samples of work to take home with you.You will receive relevant, useful and informative handouts as well as lists of leather and tool suppliers.This is a professional course delivered by a prototype maker and manufacturer, with the aim of providing an overview and hands-on experience on more common leather working practices. At the end of the tuition you will have:– Gained an understanding of leather types and tanning methods– Understood what it means to work with different leather types and thicknesses and have the ability to source and select the correct tools and materials for your projects.– Gained confidence in using specific tools for preparing, marking, finishing and cutting leather.– Understood and practiced leather craft techniques such as beveling and burnishing techniques– Learnt basic leather hand sewing techniquesWHAT WILL BE TAUGHT?Below is a list of topics covered during the classes:– Understanding leather: overviews on types of leather, tanning, finishings and best use– Vegan leathers: an overview on different types and features– Understanding the importance of choosing the right materials for your project and the right tools for your materials– Leather preparing, pattern placement and marking on leather– Cutting complex shapes using a variety of tools– Using leather punches– Understanding the use of skiving, beveling and grooving– Finishing leather edges: painting vs burnishing– Using various leather glues and tapes– Understand the use of reinforcements, fusings and stabilisers to back leather– To learn basic leather hand sewing techniques– To understand the tools and materials used in saddle stitching– Prototyping and manufacturing leather goods: mentions of different working methods, machines and tools IMPORTANT TO KNOW:We will always try to cover as much on the syllabus as possible and depending on your ability and previous experience, we might not be able to complete the program or we might instead be able to teach you additional techniques relating to the above listed topics, such as:– Understanding fittings, closure types, fastening techniques and tools: sam browns, magnets, pop buttons, eyelets, etc– Sew and finish simple zips styles, handles and straps– Understanding options and the construction of how to line bags and accessories INCLUDED IN THE COURSE:You will be provided with useful digital and paper handouts which contain:– A list of tools and materials used during the lesson(s), including a description of what they are and how they are used– A list of recommended suppliers for both leather and fittings (physically in London and online)– A glossary containing information about leather types and characteristics WHAT ARE THE ENTRY REQUIREMENTS?This course is suitable for total beginners, beginners with some experience and intermediate.You should be able to use measurements and understand verbal and written English instructions. ARE THERE ANY OTHER COSTS? IS THERE ANYTHING I NEED TO BRING?Materials are included.Feel free to bring a notepad, if you would like to take some notes, we will provide the rest. HOW LONG IS THIS TUITION?:This tuition will require up to 6.5 hours to complete.We aim to provide customised and high quality tuition services and by only allowing up to 6 students at a time, we are able to focus on each person needs and interests.As every student has a different level of ability and previous experience, this course might lead some students to complete the core aspects of the lesson in a shorter time frame than others.Students who complete the course early will be welcome to stay and use the studio facilities to exercise on the topics of the lesson.
An inspiring manager has the ability to motivate and develop team members' skills which is crucial for overall company performance and employee engagement. A key aspect of this is to support and encourage each team member to reach their full potential. Effective 1:1 meetings build confidence and provide direction, allowing individuals to find their own solutions and strategies. This approach empowers employees, fostering personal responsibility and increased performance. This course is available to book for delivery in-house for your organisation and people exclusively, for either a half or full days training workshop. Prices are dependent on size of group ranging from a minimum of 4 to a maximum of 12 delegates and duration of course selection. If you have a smaller number of delegates, the Puritas 1:1 Leadership Coaching Programme is recommended.
The CAIA Association is a global professional body dedicated to creating greater alignment, transparency, and knowledge for all investors, with a specific emphasis on alternative investments. Course Overview At the start of any career, gaining a solid understanding of key business skills is extremely valuable. These qualifications and courses are designed to blend core skills with key finance knowledge, to give you essential business skills. This Level 1 qualification covers a range of skills and relevant supporting knowledge to help prepare students for applying numbers in business and working in a business environment. It will give students an understanding of: • How different organisations operate • How to contribute effectively in the workplace • How businesses process sales and purchases, and the documents and procedures associated with this. Students will also be equipped with the basic numerical skills needed in the workplace, such as decimals, percentages and fractions, and applying proportions and ratios. The jobs it can lead to: • Data entry clerk • Accounts administrator • Administrative assistant Entry requirements: Students can start with any qualification depending on existing skills and experience. For the best chance of success, we recommend that students begin their studies with a good standard of English and maths. Course Content: Working in the business environment: This unit introduces students to the skills needed in the workplace, including the importance of teamwork, communication, effective time management and professional behaviour. They’ll also learn about some of the core finance processes linked to sales and purchase orders. Learning outcomes: • Develop skills for the workplace. • Understand how organisations operate. • Understand how sales and purchases support businesses. • Apply business procedures to sales and purchases. Using numbers in business: Numeracy is an essential business skill. This unit will introduce students to the basic skills needed when working with numbers in a business environment, developing confidence and skills to use and apply numbers to a wide range of situations. Learning outcomes: • Perform simple business calculations. • Calculate decimals, fractions, percentage, proportions and ratios. • Use tools and techniques to present numerical data.
This course is not suitable for total beginners. To attend this course, you must already have some experience with industrial machines and be able to operate and set up a walking foot independently, or have attended our MODULE 3 – INDUSTRIAL MACHINE TRAINING. Summary of topics covered in the class: – Pattern making, pattern development and pattern vocabulary – Leather preparation, pattern placement, and leather marking – Leather cutting, gluing, and reinforcing – Patterns development, assembling and making for different card holder constructions By the end of the tuition, you will have: – Developed your understanding of pattern drafting and pattern development – Understood the concept of seam, folding, and trimming allowances when drafting patterns – Created some finished patterns, constructed and completed up to 3 finished card holders (depending on your personal abilities the quantity might change) – Learned how to use your patterns to correctly cut your material, minimising waste and using the best parts of a hide/skin – Worked with a variety of tools for pattern making and leatherworking, as well as various types of leather – Developed essential leather craft skills such as preparation, marking, finishing, cutting, and more – Obtained a basic understanding of the differences and best uses of reinforcements, stiffeners and stabilisers Included in the course: You will receive useful paper handouts containing: – A list of tools and materials used during the lesson(s), with descriptions and usage instructions – A list of recommended suppliers for leather and fittings, both in London and online – A glossary containing pattern making terms and general guidelines for pattern drafting All materials are included, there are no additional costs. Find all modules here: https://the-london-leather-workshop.cademy.co.uk/
DESIGN AND MOCK UP BAGS AND ACCESSORIES – LEARN HOW TO PLAN, DESIGN AND COMMUNICATE YOUR PROJECT – Group Class: one teacher, six students – You will learn: What you need to study, research, and understand about the industry.How to correctly design a collection of fashion accessories.What information you should be able to provide about your designs.How to prepare a project for prototyping and manufacturing. How to create three-dimensional mock-ups of your designs. WHERE:At our South East London studioCOURSE LENGTH:Two consecutive weeks / Mon-Fri 10 am-3.30 pm LEVEL:Complete beginners, beginners with some experience of drawing and/or designing and intermediate designers COURSE DESCRIPTION: BAG AND ACCESSORY DESIGN MASTERCLASSThis course is tailored for beginners and intermediate-level participants, offering a distinctive group class format designed to assist aspiring designers or those seeking guidance in bringing to life a practical and viable collection of bags and/or accessories.Through this course, you will gain a comprehensive grasp of fundamental skills in accessory design and what it requires to become a bag designer. It empowers you to transform your creative concepts into tangible realities by providing instruction on the essential steps required for prototyping and manufacturing your collection.In addition to acquiring the skills to design bags and accessories accurately and understanding what information to convey to a prototype maker, this course will guide you through the process of constructing three-dimensional mock-ups for your designs. WHY THIS COURSE DIFFERS FROM THE TYPICAL ‘ACCESSORY DESIGN’ PROGRAMMEThis course has been meticulously designed by a team comprising designers, prototype makers, and handbag manufacturers. It offers a blend of theoretical and practical elements, providing you with the knowledge required by the industry to comprehend and accurately translate your ideas into finished products.Unlike courses that solely focus on creating aesthetically pleasing drawings, this programme emphasizes providing a comprehensive understanding of the intricate and extensive processes involved in designing a collection of handbags. It aims to equip you with the insights necessary to navigate the complexities, ensuring you are well-prepared before and during the design phase. By doing so, the course aims to save you time, expense, and potential frustration when it comes to prototyping and manufacturing your collection. WHY WE DEVELOPED A FASHION DESIGN COURSEAfter years of designing and developing collections for our clients, we noticed a significant lack of clear information on what it truly takes to become a designer of handbags and fashion accessories.This course is crafted to assist both emerging and struggling designers in developing and articulating their ideas effectively for the prototyping phase. It addresses the needs and challenges faced by our customers, aiming to support and streamline the creative process for project realization. WHO IS THIS COURSE FOR?This course is tailored for aspiring designers seeking professional advice from industry experts, individuals at the beginning of their design careers who require guidance to enhance their design process, or those simply looking to refine their drawing techniques for personal enjoyment.No previous experience is necessary. WHAT WILL BE TAUGHT?Below is a list of topics covered during the classes:Understanding the role of a bag designerBefore designing: understanding and analsing crucial external aspects that will influence your business successAbout your business idea and profile: understanding the target audience, market placement, pricing strategy and more.Understanding what a moodboard is and how to use itUnderstanding the differences and purposes of illustrations vs technical drawingsUnderstanding the importance of construction and its impact on your designOverview of the anatomy of a handbag, lining and reinforcementsUnderstanding the structure of a collection: the use of a collection planLearning how to plan a balanced collection of fashion accessoriesUnderstanding finishing options for your designsUnderstanding hardware and its impact on the cost price of your collectionOverview of leather and vegan leatherIdentifying the right materials for your collectionLearning how to draw three-dimensional bagsSketching technical drawingsGoing through the product development of three designsDeveloping patterns and realising 1 to 3 three-dimensional mock-ups of your collectionProviding technical information about your collection to the prototype makerUnderstanding the prototyping processManufacturing your collection: how it works and what the options are HOW WILL THE CLASS BE TAUGHT?The class will take place in person at our London studio, and the lessons will alternate between theoretical instruction and practical exercises.Some homework will be assigned to students between lessons. HOW LONG IS THIS TUITION?: This course spans two weeks and will be conducted from Monday to Friday, running from 10 am to 3.30 pm, with a 30-minute lunch break. INCLUDED IN THE COURSE:You will also receive access to a collection of handouts providing relevant information, useful resources and support in continuing your designing process independently.The handouts will contain:– A glossary containing essential key words related to the topic of the lesson– An illustrated glossary containing information about type of bags and bags’ features– An illustrated guide on common hardware used in bags and accessories– Documents about leather types, finishings, tanning processes– Information about perspective and guides to be used as reference to develop your drawings– A list of recommended suppliers for both leather and fittings (physically in London and online)– A glossary containing information about leather types and characteristics WHAT ARE THE ENTRY REQUIREMENTS?You should be able to use measurements and understand verbal and written English instructions. ARE THERE ANY OTHER COSTS? IS THERE ANYTHING I NEED TO BRING?Materials to exercise with are included.Feel free to bring a notepad, if you would like to take some notes, we will provide the rest.