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

186 Character courses in Bradford

Cyber Security Overview 1 Day Training in Leeds

By Mangates

Cyber Security Overview 1 Day Training in Leeds

Cyber Security Overview 1 Day Training in Leeds
Delivered In-Person + more
£595 to £795

Cyber Security Overview 1 Day Training in Wakefield

By Mangates

Cyber Security Overview 1 Day Training in Wakefield

Cyber Security Overview 1 Day Training in Wakefield
Delivered In-Person + more
£595 to £795

Leading Effective Teams 1 Day Workshop in Leeds

By Mangates

Leading Effective Teams 1 Day Workshop in Leeds

Leading Effective Teams 1 Day Workshop in Leeds
Delivered In-Person + more
£595 to £795

Leading Effective Teams 1 Day Workshop in Wakefield

By Mangates

Leading Effective Teams 1 Day Workshop in Wakefield

Leading Effective Teams 1 Day Workshop in Wakefield
Delivered In-Person + more
£595 to £795

Train-The-Trainer 1 Day Training in Leeds

By Mangates

Train-The-Trainer 1 Day Training in Leeds

Train-The-Trainer 1 Day Training in Leeds
Delivered In-Person + more
£595 to £795

Recruitment Skills 1 Day Workshop in Leeds

By Mangates

Recruitment Skills 1 Day Workshop in Leeds

Recruitment Skills 1 Day Workshop in Leeds
Delivered In-Person + more
£595 to £795

Train-The-Trainer 1 Day Training in Wakefield

By Mangates

Train-The-Trainer 1 Day Training in Wakefield

Train-The-Trainer 1 Day Training in Wakefield
Delivered In-Person + more
£595 to £795

Recruitment Skills 1 Day Workshop in Wakefield

By Mangates

Recruitment Skills 1 Day Workshop in Wakefield

Recruitment Skills 1 Day Workshop in Wakefield
Delivered In-Person + more
£595 to £795

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

Oracle SQL foundation

5.0(3)

By Systems & Network Training

Oracle SQL training course description The Oracle SQL course is designed to give delegates practical experience in writing SQL statements and scripts using Oracle SQL. The basic SELECT statement, the use of SQL functions and the basic table and view handling statements are introduced. What will you learn Create SQL statements to query database tables. Use standard aggregate functions and related SELECT statement clauses. Join Tables. Use basic subqueries and the set operators. Use numeric, character and date functions. Use conversion and other miscellaneous functions. Use SQL parameters. Use complex subqueries. Create and alter tables and views. Insert, update and delete rows in database tables. Manage sequences and synonyms. Oracle SQL training course details Who will benefit: Anyone who needs to use and understand Oracle SQL to query and update data in an Oracle database. Prerequisites: None. Duration 3 days Oracle SQL training course contents Retrieving data with the SELECT statement The SELECT statement, The SELECT and FROM clauses, Conditions and the WHERE clause, Other conditional operators, Logical operators, The ORDER BY clause, Column aliases, Arithmetic expressions, Precedence of operators. Aggregate functions Overview of built In aggregate functions, The GROUP BY clause, The HAVING clause. Joining tables Overview of table joins, Inner joins, Table aliases, Outer joins, Self joins, ANSI standard joins. Basic subqueries and set operators Overview of subqueries, Basic subqueries, Set operators, The union, intersect and ,minus operators. Numeric, character and data functions Function types, Using the table dual to try out functions, Numeric functions, Character functions, String concatenation, Date arithmetic and date functions. Conversion and miscellaneous functions Conversion functions, The NVL and NVL2 functions, The DECODE function, CASE expressions, The COALESCE and NULLIF functions. SQL parameters Command line substitution parameters, The accept command, The define and undefine commands. Complex subqueries Subqueries usage, In-line views, Top-N queries, Subqueries with joins, Multi column subqueries, Correlated subqueries, Subquery rules, Using the ANY, ALL and SOME operators. Managing data Inserting rows, Updating rows, Deleting rows, Verifying updates, Transaction control, Commit and rollback, Savepoints, Commits and constraints, Amending data in SQL developer. Managing tables Creating tables, Specifying constraints, Altering tables, columns and constraints, Dropping tables, columns and constraints, Recovering dropped tables, Copying tables. Managing indexes and views Creating indexes, Dropping indexes, Listing indexes, Creating and using views, Dropping views, Listing views. Managing sequences and synonyms Create a sequence, View sequence details, Create a synonym, List synonyms.

Oracle SQL foundation
Delivered in Internationally or OnlineFlexible Dates
£2,367

Educators matching "Character"

Show all 10
Horsforth School

horsforth school

5.0(12)

Leeds

Opportunity and achievement for all” epitomises everything we offer as we regard our curriculum as the totality of a student’s experience at Horsforth; our range of subjects, programmes of study, pedagogy, assessments, opportunities, clubs, trips, mentoring, pastoral support and enrichment. Our curriculum is inclusive and aims to equip all students with confidence, resilience, competence and skills that allow them to succeed in a rapidly changing society. We value a holistic approach to educating the whole person with a focus on spiritual, moral, social and cultural education (SMSC). Our curriculum offers a breadth of opportunities and experience in conjunction with high quality pastoral care leading to personal and character development. It aims to ensure all students are included and supported to reach their potential. We aim for all students to achieve excellent outcomes and this is not simply exam results but where students get to as a result of their experience at Horsforth School. We aim to ensure they are prepared for their future steps in education, employment and training and beyond. We want all students to enjoy their learning and achieve their own personal success, now and in the future. At Horsforth we have a clear responsibility to prepare students for the rest of their lives. In partnership with key stakeholders including employers, further education providers, Trustees, teachers, parents, students and school leaders our curriculum informs and shapes the journey of a Horsforth Learner.

Aesthetic Laser Training Academy

aesthetic laser training academy

North Yorkshire

Aesthetic Laser Training is a leading provider of internationally recognised academic qualifications in the UK, having been offering its education to students for over a decade. We have full time, part-time, options to suit every student.   Aesthetic Laser Training has stood the test of quality education, allowing every individual to excel and make a difference in this world. We do not merely cram one’s mind with information, but we also nurture the character and integrity of each student so that they can stand on their own feet by starting their own venture or become the best employee.  Believe that strength lies in growing from the ground up, hence our motto, “One cannot fly without roots.” We let you decide the best way to learn and grow by offering part-time, full-time courses. Our funded and private courses are an affordable route to helping you achieve your goals and fulfil your potential no matter what subject area you wish to study. With a dedicated Academic Support Team and flexible, fully recognised qualifications, we have a range of options for you, whatever your educational background or goals. We believe every individual has something to offer this world. That’s why we tailor our courses and facilities around your needs so that you can reach your full potential and make the grade in your own personal way.  Come over to our sparkling new facility and see how Aesthetic Laser Training can change your future.

Parkside School

parkside school

West Yorkshire

Welcome to Parkside School where we are proud of our track record of enabling young people to achieve success and we are proud of being a fully inclusive school supporting students with a range of special educational needs. Parkside School is based in the village of Cullingworth on the edge of Bradford where we are a part of the local community. It is therefore important that we impact visibly and substantively on that community helping every member of our school, both students and staff, become the best that they can be. Excellent partnerships for learning are key to our success. Our students work hard, behave with consideration and show respect for others. We offer an exciting curriculum, personalised to meet the needs of individual students and we augment this with an ever-growing range of extra curriculum activities and opportunities. In addition, our Aspire-2B programme is a nationally acclaimed programme (National runners up and outstanding school of the North of England) that develops our students to become global citizens ready to embrace the 21st century. The Leeds City Region is a city region in the North of England comprising Bradford, Calderdale, Kirklees, Leeds and Wakefield. The Leeds City Region is vibrant, exciting and diverse with a rich history that cuts across industry, commerce, culture and style. We not only need to prepare young people for working in the capital of the north and its surrounding area but in industries that are only just developing and in roles that currently do not exist. Research in the Journal of Education suggests that better informed teenagers are likely to make more advantageous careers choices and this in turn can be linked to higher earnings in adult life and that is why excellent preparation for the future is part of our mission statement. I have been a science teacher for over 20 years and a senior leader for more than 15 years, working in multicultural and diverse schools across both Leeds and Bradford. As headteacher I have an absolute passion and commitment to inclusive education as a way of improving the life chances of young people and their families. I believe that this is done through delivering the highest quality teaching and learning, whilst developing the whole young person in terms of their character, skills and ability to show resilience to the ever changing and challenging world around them. Excellent personal development in central to this.