Your email was sent successfully. Check your inbox.

An error occurred while sending the email. Please try again.

Proceed reservation?

Export
Filter
  • Online Resource  (3,242)
  • Image
  • 2020-2024  (858)
  • 2015-2019  (2,384)
  • Electronic videos ; local  (3,242)
Datasource
Material
  • Online Resource  (3,242)
  • Image
Language
Years
Year
Keywords
  • 1
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803242866
    Language: English
    Pages: 1 online resource (1 video file, approximately 47 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Dive into Kano Analysis and prioritize customer needs About This Video Master the ability to systematically identify and prioritize your customer requirements Specialize your skills in exploring your customer’s stated and latent needs Acquire the knack to delight your customers and make them your raving fans for a lifetime In Detail With increasing competition and constantly changing customer requirements, it has become exceedingly important to learn the art and science of prioritizing the most important needs and requirements of your customers. Kano Analysis is a unique tool that has a structured approach to understand these customer requirements, translate those needs/requirements into specific categories, and prioritize them. This tool is extensively used by Six Sigma Green Belts and Black Belts in their Lean Six Sigma projects. Kano Analysis is most effective in the Define Phase of any Six Sigma Green Belt or a Six Sigma Black Belt project. In the Define Phase, the Green Belt or the Black Belt looks for pain areas of the business process. When Kano Analysis is used, it helps understand customer requirements and provides a laser-sharp focus on only those requirements that your customers care about. This tool can also be used as a standalone tool that is independent of a Six Sigma project. If you want to thrive in today’s competitive environment, you must make your customers your raving fans. This is only possible when you focus and deliver exactly what your customer wants. Kano Analysis is the only tool that helps you identify what your customers exactly want.
    Note: Online resource; Title from title screen (viewed June 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : InfiniteSkills
    ISBN: 9781926873985
    Language: English
    Pages: 1 streaming video file (9 hr., 5 min., 13 sec.) , digital, sd., col.
    Keywords: Adobe Photoshop lightroom ; Image processing ; Digital techniques ; Photography ; Digital techniques ; Electronic videos ; local
    Abstract: "In this Adobe Photoshop Lightroom 4 training course, creative and technical expert Andy Anderson takes you through the features and functions of this comprehensive software for both the professional and amateur photographer. Designed for the beginner, you do not require any prior experience working with Adobe Lightroom to take advantage of this tutorial. You will begin by touring the Lightroom interface, and become familiar with the tools and features that are available to you. You will them move on to cover features such as basic and advanced catalog organization, tethering, manipulating your images, geo-coding images, working with modules such as Develop and the Book Module, and so much more. You will learn to create slide shows, print and publish your images, and even export them to use with other Adobe Suite products. By the conclusion of this video based training course on Adobe Photoshop Lightroom 4, you will have a clear understanding of the features and functions at your fingertips, and how to utilize them within the software. Working files are included to let you work alongside the author as he proceed through this software video tutorial."--Resource description page.
    Note: Title from resource description page (viewed Aug. 21, 2012)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 14 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to use optimization strategies and greedy algorithms in one hour.
    Note: Online resource; Title from title screen (viewed March 7, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484270660
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 43 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: This video will develop a foundation for creating Java-based, enterprise-ready, cloud applications and microservices using the Spring Boot micro-framework and all its cool features, from zero configuration files to faster development to easy deployment. In this video, you'll walk through the nuts and bolts of Spring Framework 5 and Spring Boot, then dive into the web application development tier that Spring Boot offers. Next, you'll go over data access, data persistence, and reactive data programming. Next, you'll cover testing, security, and messaging using Spring Boot. Furthermore, you'll see the new tools and features in Spring Boot to take your applications further including Actuator, Micrometer, Prometheus, and Grafana. Finally, the video concludes on native cloud application development, integration, and deployment onto the cloud with Kubernetes and more. After learning with this video, you'll come away with the know-how to build your first complete complex application with Spring Boot. What You Will Learn Get a survey of the Spring Boot micro-framework Do web development with Spring Boot See how data access and persistence works using Spring Boot Work with WebFlux and reactive data Use Boot's Actuator, Micrometer, Prometheus, and Grafana Develop and deploy native Java cloud applications in Spring Boot Who This Video Is For Those who have prior Java programming experience who may be new to Spring Boot.
    Note: Online resource; Title from title screen (viewed May 13, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484265826
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 26 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: In this course, we will look at using asynchronous programming in Python: the options, pitfalls, and best practices. We start with multi-threading, which is particularly useful when there is a lot of waiting, e.g. for HTTP requests or disk access. With multi-threading, you can start many requests in quick succession and then wait for all of them to complete at once. Next, the course will show you how to write your code in a thread-safe manner, and how to use it risk-free. Further, it covers Python’s global interpreter lock, which prevents a lot of serious problems in Python but also stops you from running threads in parallel. Going forward we discover how you can use Python’s multiprocessing library to run functions in parallel. Threads and processes often need to share or exchange data. In asynchronous code just passing Python objects is usually not the safest way to do this. This course looks at the main ways to do this correctly in Python, such as queues and events. Finally, the course moves on to the concurrent.future library which contains higher-level abstractions, including thread and processing pools and an asynchronous map function. The course finishes with advice on how to write robust asynchronous code, and how to test and debug it. What You Will Learn Take advantage of multi threading (concurrency) using the threading module Implement multi processing (parallelism) using the multiprocessing module Understand inter-process communication and data sharing using locks, queues, semaphores, barriers, events, and timers Test and debug asynchronous Python code Understand thread and process pools using concurrent.futures Who This Video Is For Intermediate to experienced Python programmers who want to speed up existing Python code by using multi processing and multi threading.
    Note: Online resource; Title from title screen (viewed January 5, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 60 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Get started with Vim in this one-hour video. Everything you need to know to get up and running quickly. Topics include: * Opening, saving, and quiting files * Basic movements and operations, like copying and deleting * Updating the .vimrc configuration file for customization * Installing plugins and further customization
    Note: Online resource; Title from title screen (viewed January 8, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 35 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn how to use AWS in one Hour
    Note: Online resource; Title from title screen (viewed January 9, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 57 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Traditional rule-based data quality management methodology is costly and hard to scale in the big data environment. It requires subject matter experts within business, data and technology domains. Machine learning techniques for data quality management enable cost-effective and scalable ways to manage data quality for a large amount of data. This presentation will discuss a use case that demonstrates how machine learning techniques can be used in data quality management on a big data platform in the financial industry. Join us for this edition of Meet the Expert with Jennifer Yang to learn how machine learning techniques can be used in the data quality management processes in the financial industry. Jennifer will describe: Results of applying various machine learning techniques in the four most commonly defined data validation categories will be presented. Approaches to operationalize the machine learning data quality management solution. Lessons learned will be discussed to help the audience take on their own data quality management journey using machine learning techniques. O'Reilly Meet the Expert explores emerging business and technology topics and ideas through a series of one-hour interactive events. You’ll engage in a live conversation with experts, sharing your questions and ideas while hearing their unique perspectives, insights, fears, and predictions.
    Note: Online resource; Title from title screen (viewed January 20, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484268933
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 21 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: In this video, you will explore forecasting techniques in Python, including how to use machine learning models from Scikit Learn, as well as integrating R as a sub process to gain access to the robust forecast library, incorporating the auto.arima and tbats models. We create our own Python class called Forecaster that stores all of the relevant information about the predictions, including error metrics, model forms, hyperparameter selections, and the forecasts themselves. The module is written in such a way that models can easily be added to the framework for increasing accuracy. In the specific scenario, we are forecasting on 150 separate time series—3 time series for each state using economic indicators from the St. Louis Federal Reserve (FRED) website. We build an API to extract the data and add our own indicators that we think will influence the future. At the time that this video is published, the country is experiencing a recession from the COVID-19 pandemic. Therefore, we will extract the recession indicator from the FRED website and make assumptions about how long the recession will last. Using this information, we create an economic outlook for each state. These forecasts can then be used to see which states we expect to recover most quickly from the recession. This modeling process will be done in Python on a Jupyter Notebook, so it's a good idea to have Anaconda installed on your computer so you can follow along. The rpy2 library from Python will be utilized, so having R installed in your local environment is necessary. What You Will Learn Create classes in Python Make predictions with machine learning and common forecasting models Manipulate data with Pandas Store data in base Python structures (lists, dictionaries) Create APIs and visual aids Who This Book Is For Data scientists with experience who are looking to take their forecasting skills to the next level.
    Note: Online resource; Title from title screen (viewed January 12, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 6 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to do GPU programming in Python in Five Minutes
    Note: Online resource; Title from title screen (viewed January 12, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 11
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 42 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Big data has been with us now for over 10 years, and in that time the tools and techniques have evolved. If youâ??re new to working with data or looking to understand the latest and greatest, these sessions are the perfect way to become part of the conversation. Youâ??ll learn how AI and the cloud have impacted how we grapple with ever-growing datasets and get better insight and products. About the Strata Data Superstream Series: This four-part series of half-day online events gives attendees an overarching perspective of key topics that will help your organization maximize the business impact of your data. What you'll learn-and how you can apply it Understand the problems the modern data stack helps solve today and get a glimpse of where weâ??re headed Get an overview of AI and machine learning and see how they can improve your data science work Learn how to present your data clearly and articulately This Superstream is for you because... You want to learn how data science works and understand its impacts, whether youâ??re swimming in data or just dipping in a toe. You need to know the trends in data workflows, techniques, and tools. Youâ??re interested in learning the role AI can play in your data analysis and want to find out where to start. You want to learn how to best present your data to outside stakeholders. Prerequisites: Come with your questions Have a pen and paper handy to capture notes, insights, and inspiration Recommend follow-up: Read Data Science from Scratch (book) Read Fundamentals of Data Visualization (book) Read Introduction to Machine Learning with Python (book)
    Note: Online resource; Title from title screen (viewed February 11, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 12
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 29 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: With an eye to the future, many organizations have made the move to microservices as a means of decomposing monolithic legacy systems. But what does this move mean for delivering data? Join us to discover how understanding the intersection of software architecture and data can help you achieve new levels of velocity, agility, reliability, and efficiency. If you’re looking for ways to manage data as a software architect or developer, these sessions will help you learn what’s involved so you can chart a course toward a successful solution. About the Software Architecture Superstream Series: This six-part series of half-day online events focuses on the hottest topics in software architecture, giving you the insights to keep pace with what’s next while still accommodating legacy needs. Both seasoned software architects and those looking to break into the field will learn new skills and the latest information on the tools and technologies they need to succeed. What you'll learn-and how you can apply it Explore the intersection of software architecture and data Understand how and when to decompose monolithic data Learn how to apply evolutionary practices to databases and how to apply database refactoring patterns to evolve the database design See what’s coming next with data mesh, the next-generation analytical data platform This Superstream is for you because... You’re a developer or architect who wants to understand the intersection of architecture and data. You’re currently looking for ways to deliver data to support your businesses goals. You want to become well-versed in the foundations and best practices of software architecture and data. Prerequisites: Come with your questions Have a pen and paper handy to capture notes, insights, and inspiration Recommended follow-up: Read Fundamentals of Software Architecture (book) Read Building Microservices , second edition (book) Read Building Evolutionary Architectures (book) Read Building Event-Driven Microservices (book) Take Software Architecture by Example (live online training course with Mark Richards and Neal Ford) Take Architecture: The Hard Parts (live online training course with Mark Richards and Neal Ford) Take Microservice Fundamentals (live online training course with Sam Newman)
    Note: Online resource; Title from title screen (viewed January 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 13
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801073998
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 55 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Discover how to use Puppet 6 for handling multiple application servers About This Video Become familiar with the installation process of Puppet 6 server and agent Work with default environments and create your new environment Get to grips with Puppet templates and Puppet Bolt In Detail With Puppet, you can configure many servers and automate your IT configuration easily and efficiently. This video course shows you how to be a master in using Puppet 6. This course helps you to install and setup Puppet 6 on your machines. You will also be able to configure the hostname entry, JVM, and perform time synchronization. Next, you will be introduced to Puppet manifests and learn how to work with the default environment and create a new environment. Moving along, you will install modules in different locations, create modules, and learn the best practices required to use conditional statements in Puppet. Towards the end, you will discover templates in Puppet 6 and learn how to deploy agents to new systems using the Bolt tool. By the end of this course, you will be well-versed with Puppet and will develop the skills needed to configure systems centrally from your Puppet server.
    Note: Online resource; Title from title screen (viewed January 18, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 14
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 24 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Python is the most popular language for data science and machine and deep learning, and it’s become a favorite among web developers due to its versatility, vast library ecosystem, and high-performance applications. Python's many new features will ensure it remains the language of choice for these robust communities, even as we approach its 30-year anniversary. Join members of the Python community as they share expert perspectives on topics ranging from machine learning to microservices. Discover how to implement Python’s newest features to optimize performance and take your Python code to the next level. About the OSCON Superstream Series: Each day in the four-part OSCON Superstream Series covers a different programming language and its ecosystem, with unique sessions including keynotes from language luminaries, debates on controversial topics, and hands-on coding talks. And they’re packed with insights from innovators and the latest tools and technologies to help you stay ahead of it all. What you'll learn-and how you can apply it Explore Python’s newest features Understand how Python can be applied in machine learning Learn how to use gRPC with polyglot technologies including Python Implement Python’s newest features to optimize performance This Superstream is for you because... You’re a Python developer looking to improve your skills and awareness of new practices and technologies. You’re a developer in another programming language and are curious about how Python can improve the performance of your applications. You’re an experienced developer who wants to learn new tools and techniques from expert programmers and software developers. Prerequisites: ,/p〉 Come with your questions Have a pen and paper handy to capture notes, insights, and inspiration
    Note: Online resource; Title from title screen (viewed February 3, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 15
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 3 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Get started with Machine Learning and Auto ML using Azure ML Studio easily building powerful models and deploy them in a scalable environment. Everything you need to know to get up and running quickly in Machine Learning using Azure, from datasets to containerized deployments and data validation. Topics include: * An introduction to Azure ML Studio and AutoML * Import datasets and version them within Azure - even from remote locations like Github * Create compute clusters for training and live inferencing * Select models for deployment into Kubernetes or Docker Container instances * Practice MLOps, operationalizing a deployed model with logs and metrics via Application Insights * Consume a live endpoint with a deployed model over an HTTP API * Use the generated Swagger files to grasp the HTTP endpoints
    Note: Online resource; Title from title screen (viewed February 4, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 16
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801077774
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 51 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn the fundamentals of Android hacking and understand the common types of vulnerabilities that exist in Android applications About This Video Learn about dynamic and static analysis Become an expert at finding Android exploits Master popular pen-testing tools In Detail An app is often vulnerable to many attacks. Revealing vulnerabilities in applications and networks, testing cyber defense capabilities, and monitoring penalties are just a few among the many reasons why penetration testing is so important. With this in mind, this course introduces you to an array of tools that will help you test a vulnerable Android app. To identify vulnerability issues, we will use popular tools such as Drozer and the Burp Suite. To decompile the code, you will use tools Dex2Jar and Jadx. However, decompiling the code is not possible for closed third-party apps; in such cases, you will have to reverse-engineer the code, and for this, you will learn how to use the Android Debug Bridge. By the end of the course, you will be able to simulate an attack on any Android application and exploit its vulnerabilities.
    Note: Online resource; Title from title screen (viewed February 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 17
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071154
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 51 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: A simple guide to advanced SAS programming to help you master data analysis and prepare for advanced SAS certification exams. About This Video Learn how to use powerful SAS procedures that reveal amazing insights within your data Extract, analyze, and visualize data by building powerful SQL queries in SAS Prepare for advanced SAS certification exams In Detail For over 20 years, SAS has been the programming language of choice in many industries such as pharma, finance, and insurance, thanks to its ability to handle large amounts of data and its powerful analytics and visualization capabilities. As powerful as SAS programming is, it is also incredibly accessible. This course is designed to strengthen your existing knowledge of SAS so that you can use SAS procedures to reveal amazing insights within your data. While the course is an accelerated path to learning advanced SAS programming designed for advanced users, its visual and immersive style of delivery will help you not just comprehend the concepts easier and faster but retain them as well. The first section of the course teaches you how to build powerful code using SAS Macros. That way, you can significantly reduce your coding lines to make your code reusable and efficient. The second section will teach you how to combine the power of SAS and SQL in one procedure called PROC SQL. You will use SAS University Edition, which is free to download and install on a PC or Mac. By the end of this course, you will be able to build complex SAS programming code using macros, write powerful SQL queries in SAS to extract, analyze, and visualize data, and prepare for advanced SAS certification exams.
    Note: Online resource; Title from title screen (viewed February 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 18
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Addison-Wesley Professional | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 7 hr., 8 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Sneak Peek The Sneak Peek program provides early access to Pearson video products and is exclusively available to Safari subscribers. Content for titles in this program is made available throughout the development cycle, so products may not be complete, edited, or finalized, including video post-production editing. 7+ Hours of Video Instruction While Python is a great beginner language, you will need to know more than conditionals, functions, and loops to be a competent Python developer. This video lesson is meant as a follow-up to Arianne’s Introduction to Python LiveLessons course. In it, you will learn essential skills to become a proper Python developer, like using external libraries, managing project environments, handling exceptions, and making HTTP requests. By the end of this lesson, you will have created a web scraper in Python that gathers data from a website and outputs it into a CSV formatted file. You will also be introduced to key software construction concepts like testing, debugging, and refactoring. Description Python was originally designed with learners in mind. It is also used by professional developers in a wide range of applications, such as web programming, data science, artificial intelligence, and DevOps. Python is the fastest growing, most widely used language, and aspiring developers want to learn. While Python is a great beginner language, you need to know more than conditionals, functions, and loops to be a competent Python developer. This video lesson is meant as a follow up to Arianne’s Introduction to Python LiveLessons course. In this LiveLessons, you learn essential skills to become a proper Python developer, such as using external libraries, managing project environments, handling exceptions, and making HTTP requests. By the end of the lessons, you will have created a web scraper in Python that gathers data from a website and outputs it into a CSV formatted file. Along the way, you will also be introduced to key software construction concepts like testing, debugging, and refactoring. The source code repository for this LiveLesson is kept at https://github.com/ariannedee/next-level-python-livelessons . About the Instructor Arianne Dee is a freelance software developer and educator from the University of British Columbia and an instructor for Canada Learning Code and MakerLabs in Vancouver, BC. Arianne’s Intro to Programming with Python LiveLessons (Addison Wesley) has received 5-star reviews Ar...
    Note: Online resource; Title from title screen (viewed March 5, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 19
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071055
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 3 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Create advanced CSS animations using transitions and transforms About This Video Create exciting 2D and 3D CSS animations Animate HTML elements using CSS clip-path Animate text using CSS animation In Detail With an ever-increasing number of commercial companies having a web presence, the importance of user experience has never been more paramount. Knowing and implementing CSS is thus a key tool in any front-end or web developer's toolkit. Starting from scratch, this course will help you master CSS animations, transitions, and transforms. The course starts with the CSS transition property, which is key to infusing life into any HTML webpage. The course then progresses to teach you how to implement CSS transforms, which is key to performing tasks such as moving elements around the page, scaling and rotating elements, and so on. The course then teaches you about transform functions that we can use in 2D and 3D environments. The final section of this course is dedicated to CSS Animation Creative Examples. Here, you will learn and implement various text animation effects such as floating, loading, and animated text. You will also create interesting animations such as driving a car and motorbike. Additionally, by implementing the concepts taught earlier in the course, you will also implement a Newton's Cradle animation. By the end of this course, you will create over 80 projects of varying complexities and will be equipped with essential CSS tools.
    Note: Online resource; Title from title screen (viewed February 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 20
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801077569
    Language: English
    Pages: 1 online resource (1 video file, approximately 9 hr., 37 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: In just 10 hours, learn how to handle real-time data feed using Apache Kafka open-source messaging About This Video Become familiar with the design of Kafka and its use cases Design and introduce the Kafka group in single-hub and multi-hub arrangements Execute a Kafka consumer and Kafka producer using real-time streaming information In Detail Do you want to learn Apache Kafka to store and process multiple, nonstop streams of information faster? Or do you want to prepare for the Apache Kafka certification exam? This course is an ideal resource to learn Apache Kafka and to reach your goals. The course starts with an introduction to big data and Apache Kafka. Next, you will get into the details of a Kafka producer and consumer and grasp the techniques to tune the performance of Kafka operations. Moving along, you will explore the Kafka architecture and learn how to administer Kafka effectively. Next, you will learn to monitor server, infrastructure, and application and understand how the Schema Registry works in Kafka. Later, you will get to grips with Kafka Streams and Connectors and learn the process of integrating Kafka with Apache Storm, Spark, and Flume. Towards the end, you will learn how to perform various admin tasks using the admin clients and uncover useful tips to secure Kafka. By the end of this course, you will have developed the Kafka skills needed to handle real-time data feed and to pass the Apache Kafka certification exam.
    Note: Online resource; Title from title screen (viewed January 27, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 21
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801073363
    Language: English
    Pages: 1 online resource (1 video file, approximately 4 hr., 54 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Understand the features of Alteryx and learn how to automate boring manual data cleaning and data analysis tasks About This Video Become familiar with all the latest tools and features of Alteryx Learn how to use Alteryx for creating a smart solution workflow for data cleaning and data analysis Consolidate your learning by working on interesting real-world case studies In Detail Do you want to perform data cleansing and data analysis at jet speed? This course will show you how you can do data cleaning and data analysis a smooth and less time-consuming task using Alteryx. The course starts with an introduction to Alteryx, explaining its installation process and user interface. Next, you will learn how to get data and update existing data from Excel and Comma Separated Value (CSV) files using the In/Out tool in Alteryx. Moving along, you will learn to use the Preparation tab for data cleansing and filtering and find out the role of the Join tab in Alteryx. Next, you will learn to work with the Parse and Transform tabs and learn how to use the Reporting tab in Alteryx. Finally, you will study the tools under the Documentation tab, such as comment, explorer, and container, and go through some interesting case studies to encapsulate your learning. By the end of this course, you will be able to use Alteryx for your data cleaning and data analysis needs in the real world.
    Note: Online resource; Title from title screen (viewed January 15, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 22
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 3 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Get started building powerful Command-line Tools with Python. From a single file with no dependencies to packaging and publishing your tool on the Python Package Index. Everything you need to know to get up and running quickly to create Python command-line tools. Topics include: * An introduction to Python scripts and Python packaging * Declare dependencies and package your script for installing and sharing. * Use argparse or upgrade to a more powerful framework like Click * Add flags, options and arguments to fine-tune and control your command-line tool
    Note: Online resource; Title from title screen (viewed January 22, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 23
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 56 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Get started with Docker and building powerful containers in this one-hour video. From the basics of containers, and its differences with virtual machines, to interactive commands and containerization of applications. Everything you need to know to get up and running quickly to use containers and grasp docker concepts. Topics include: * An introduction to containers and their differences with Virtual Machines * Start, stop, and manage containers. * Map container ports to local ports, mount volumes, and other startup flags for container images. * Get access to running containers to interactively debug a service like Nnginx. * Build a Python application with a Dockerfile, and deploy it running the latest Python version.
    Note: Online resource; Title from title screen (viewed January 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 24
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 30 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: AWS Machine Learning Certification In ONE HOUR!
    Note: Online resource; Title from title screen (viewed January 23, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 25
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801079419
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 10 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn essential techniques with Burp Suite to detect vulnerabilities that cause web applications to be compromised About This Video Learn how to find and exploit common vulnerabilities with Burp Learn how Burp Suite can help automate attacks Learn using hands-on examples In Detail Burp Suite contains an array of penetration testing and vulnerability finder tools. It is mainly used to identify the vulnerabilities of web applications. In this course, you will learn essential techniques with Burp Suite to detect vulnerabilities that cause web applications to be compromised. The course starts off with demonstrating how to set up your project in Burp Suite. It also introduces the different modules included in the Burp Suite. You’ll learn to identify information disclosure vulnerability and expose sites leaking sensitive information. You’ll also learn about insecure decentralization vulnerability and how this can be exposed. Web applications use WebSocket to communicate with the user. Testing web sockets for vulnerabilities is also covered in this course. You’ll also learn how to simulate the directory traversal attack and read files that are running. Finally, you will learn about some other attacks such as the external entity injection (XXE), cross-site scripting (XSS), and SQL injections. With this, you will have all the skills in your arsenal to test web applications.
    Note: Online resource; Title from title screen (viewed February 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 26
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801079846
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 7 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn project management in the most effective and easy way, through visually seeing every concept About This Video Learn project management through simple pictures and visual illustrations to remember better Gain an understanding of the best practices of project management Learn to create project artifacts during the different phases of the project In Detail In this course, we will begin by understanding the basics of project management and some fundamental concepts related to it. We will then learn how to master the coordination of all elements by understanding expert techniques of integration management, such as project charter, project management plan, and integrated change control. Managing all stakeholders involved in a project is a crucial aspect of project management. In this course, we will learn how to manage key stakeholders effectively, thus reducing the risk involved in the project. Any project is bound to meet obstacles if the scope of the project is not identified correctly before the project commences. This course teaches you the best practices to identify the scope correctly and manage schedules, such that your project does not overshoot its costs. Finally, you will learn how to plan your project such that the quality of the project is not compromised and all risks are accounted for before the project begins. By the end of this course, you will be able to pick up any project and apply industry best practices, and move the project towards completion.
    Note: Online resource; Title from title screen (viewed February 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 27
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801077088
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 6 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn how to create amazing animations using SwiftUI with the help of easy, intermediate, and advanced projects. About This Video Become familiar with the SwiftUI framework Discover how to use Xcode 12 and iOS 14 with SwiftUI Get ready to create stunning animations for your applications with SwiftUI In Detail Do you want to create eye-catching animations with SwiftUI that can be easily incorporated into your applications? This course teaches you how to create animations of your choice using SwiftUI. The course starts with an introduction to SwiftUI, explaining the differences between declarative and imperative programming. Moving along, you will discover the role of stacks, text modifiers, and image modifiers in SwiftUI. Next, you will learn to work on interesting projects, such as animating a weather graph with data, animating different shapes, creating an ocean wave, and creating a Wi-Fi loading animation. By the end of this course, you will be able to create smooth and engaging animations with SwiftUI using Xcode 12 and iOS 14.
    Note: Online resource; Title from title screen (viewed January 20, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 28
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 58 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for a special conversation on software architecture with Neal Ford and test.ai chief scientist Tariq King, covering the fascinating aspects of the discipline, interesting convergence areas, and insights on how to approach the most challenging aspects of building and managing evolving architectural needs. This is your chance to ask Neal and Tariq anything you want about architecture or their own career journeys. They’ll spend a few minutes covering the trends in artificial intelligence that are influencing architecture, then tell you what you need to know to stay ahead of the curve. What you'll learn-and how you can apply it Explore the uses of AI in your architecture What’s coming next with software architecture This training course is for you because... You want the chance to ask Neal Ford and Tariq King your questions around the synergy between architecture and AI. You want to better understand how AI will impact your business architecture. Prerequisites Come with your questions for Neal Ford and Tariq King Have a pen and paper handy to capture notes, insights, and inspiration Recommended follow-up: Read Fundamentals of Software Architecture (book) Read Grokking Artificial Intelligence Algorithms (book) Read Building Event-Driven Microservices (book) Attend Software Architecture Superstream Series: Software Architecture Fundamentals (APAC) —March 18, 2021 Attend Architecture: The Hard Parts (live online training course with Mark Richards and Neal Ford) Attend Artificial Intelligence: AI for Business (live online training course with Alex Castrounis)
    Note: Online resource; Title from title screen (viewed March 9, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 29
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pearson IT Certification | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 10 hr., 54 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: 11 Hours of Video Instruction Certified Kubernetes Administrator (CKA) Complete Video Course provides 11 hours of video instruction for IT professionals—including IT Administrators, DevOps Engineers, Software Developers, IT Architects, and Hybrid Cloud Administrators—preparing to take the CKA exam, which requires an in-depth knowledge of how to develop, create, manage, store, and troubleshoot Kubernetes applications. Overview Certified Kubernetes Administrator (CKA) Complete Video Course provides 11 hours of video instruction for IT professionals—including IT Administrators, DevOps Engineers, Software Developers, IT Architects, and Hybrid Cloud Administrators—preparing to take the CKA exam, which requires an in-depth knowledge of how to develop, create, manage, store, and troubleshoot Kubernetes applications. The course includes labs, demonstrations, and lightboard explanations by Sander van Vugt, who has presented on dozens of Linux and Kubernetes courses. He introduces containers and Kubernetes, and moves through the process of creation, managing, and storing applications. He provides labs on setting up and managing clusters, and you'll also learn how to troubleshoot Kubernetes applications and cluster nodes. Sander shows how to manage deployments, services, ingress, setting up storage, and walks through key troubleshooting scenarios. He ends the course with a sample exam for the user to practice before taking the real thing. Topics include: Module 1: Getting Started Module 2: Managing Pods and Deployments Module 3: Managing Kubernetes Clusters Module 4: Sample Exam About the Instructor Sander van Vugt has been teaching Linux classes since 1995 and has written more than 60 books about different Linux-related topics, including the best-selling RHCSA-RHCE 7 Cert Guide. Sander is also the author of more than 25 video courses, including Kubernetes Fundamentals . He teaches courses for customers around the world, and is also a regular speaker on major conferences related to open source software. Sander is also the founder of the Living Open Source Foundation, a non-profit organization that teaches open source to talent in different African countries. Skill Level Beginner/Intermediate Learn How To Best prepare to pass the Certified Kubernetes Application Developer (CKA) Exam Create a Kubernetes cluster Manage Pods and Deployments Manage Pod Storage and Networking Work with Ingress Work with the API Add custom resources Manage ...
    Note: Online resource; Title from title screen (viewed February 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 30
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071826
    Language: English
    Pages: 1 online resource (1 video file, approximately 14 hr., 8 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Build and enhance a real-world functional website to explore the world of ASP.NET Core 5 About This Video Gain a solid understanding of the ASP.NET Core 5 MVC framework Build a real-world e-commerce application in ASP.NET Core 5 from scratch Learn all the techniques needed to enhance and scale the existing ASP.NET Core 5 application In Detail If you want to learn why ASP.NET Core is so popular and how to create and enhance a functional business website and get an overview of ASP.NET Core 5 Model View Controller (MVC), this is the perfect course for you. After getting a basic introduction to ASP.Net Core 5, you will start building a real-world website that will display products and receive inquiries from the customers about the products they are interested in. By building this website, you will become familiar with the fundamentals of ASP.Net Core 5, learn how to set up and connect your application to the database, get to grips with scaffold identity concepts, work with MailJet to send emails, and a lot more. You will also learn how to scale an existing project, how to architect a mid to large scale project, and how to process payments correctly. By the end of this course, you will have developed all the essential skills needed to create and scale a functional website using the ASP.Net Core 5 MVC framework.
    Note: Online resource; Title from title screen (viewed January 29, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 31
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 15 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to use no-code and low-code solutions to perform Natural Processing. In this video you walk through building a text based analysis using Python and Cloud Tools. You learn how to perform document similarity, visualize word clouds and use Amazon AI Tools. The techniques covered include: * Google Colab * Spacy * AWS Quicksite * AWS Comprehend * AWS Rekognition * NLTK * WordCloud * Pandas * Plotly * Github Finally, the course analyzes Hemingway books using popular off the shelf Python libraries. Follow along with the Github Resource: https://github.com/noahgift/exploratory-data-analysis
    Note: Online resource; Title from title screen (viewed February 20, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 32
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 60 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Jaime Levy literally wrote the book on UX strategy. In this Meet the Expert, she highlights the latest features covered in the just-released second edition of UX Strategy as she takes you through UX and product strategy theory. Whether you're a UX designer, product manager, or entrepreneur, you’ll get a high-level overview of product strategy techniques—from simple to advanced—that you can put to work right away. Recorded on April 15, 2021. See the original event page for resources for further learning or watch recordings of other past events . O'Reilly Meet the Expert explores emerging business and technology topics and ideas through a series of one-hour interactive events. You’ll engage in a live conversation with experts, sharing your questions and ideas while hearing their unique perspectives, insights, fears, and predictions.
    Note: Online resource; Title from title screen (viewed April 15, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 33
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801070386
    Language: English
    Pages: 1 online resource (1 video file, approximately 5 hr., 13 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn modern JavaScript concepts such as let, const, forEach functions, fat arrow functions, and more About This Video Learn JavaScript fundamentals, especially if you’ve never written JavaScript code before Learn all the modern JavaScript concepts such as template literals, let, const, and more Put everything you learned to test by building an interactive project at the end of the course In Detail Despite the deluge of new coding languages over the years, JavaScript continues to dominate the web. The language is a staple in most of the front-ends; if not vanilla JavaScript, you won’t be surprised to find one of its derivatives on the next website you visit. This ubiquity makes JavaScript a sought-after skill. This course is designed to teach you that skill from scratch. You’ll begin by learning how to set up your coding playground and then gain some familiarity with the JavaScript syntax. Once you’ve gotten your hands dirty, you’ll discover how to store data in variables, comment out your code, and do more with your variables by learning about operators. Next, you’ll learn about data structures and conditional statements, further shoring up your JavaScript skills. By learning about the Document Object Model (The DOM), you will be able to change the elements of a webpage and add interactivity to it. You’ll also learn to work with strings and arrays, and then, to make your code concise, learn how to write your own functions. Toward the end of the course, you’ll work on a final project wherein you’ll get to use all these skills together. By completing this course, not only will you have a solid understanding of modern JavaScript language, you’ll also be able to use it to create engaging, interactive webpages.
    Note: Online resource; Title from title screen (viewed March 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 34
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Addison-Wesley Professional | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 56 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Almost 4 Hours of Video Instruction Create a continuous security posture by defining all your AWS security and compliance as code, and run in a continuous delivery workflow with every change using services and tools such as AWS CloudFormation, AWS CodePipeline, and many others. Overview In this course, you will learn how to use AWS services, which provide the ability to create an end-to-end continuous security solution. These services include AWS CloudFormation, AWS CodePipeline, Amazon EventBridge, AWS Lambda, AWS Step Functions, AWS Organizations, AWS Security Hub, Amazon GuardDuty, AWS Config Rules, Amazon Inspector, AWS Secrets Manager, Amazon VPC, Amazon Macie, and AWS Audit Manager--among many others. You will learn how to use a combination of these services to apply key design principles for security and build continuous security solutions within your software systems. Throughout the course, you will see working examples of how to automate security using AWS services. About the Instructor Paul Duvall is a founder and former CTO of Stelligent--a Premier Consulting Partner with the DevOps and Security Competencies. He holds multiple AWS certifications including AWS Certified Security - Specialty. He has architected, implemented, and managed software and systems solutions for over 20 years. He is principal author of Continuous Integration: Improving Software Quality and Reducing Risk (Addison-Wesley, 2007), a 2008 Jolt Award winner. He is also the author of many other publications, including the videos Continuous Compliance on AWS and Continuous Encryption on AWS , and Continuous Security on AWS , which are part of Addison-Wesley's DevSecOps on AWS Series. He hosted the “DevOps on AWS Radio” podcast for over three years. He enjoys blogging and speaking on all topics related to DevSecOps, Serverless, and AWS. You can find his blog posts and other content at paulduvall.io . Skill Level Intermediate to Advanced Learn How To Apply key design principles for security Apply event-based design patterns for security Utilize AWS Developer Tools for DevSecOps Use AWS CodePipeline and AWS CloudFormation to model continuous security workflows Define your AWS Organizations as code using org-formation Automate detective controls using AWS CloudFormation, AWS Security Hub, AWS Config Rules, and Amazon Inspector Protect network and host-level boundaries with Amazon VPC Perform data classification using AWS CloudFormation and Amazon Macie Cre...
    Note: Online resource; Title from title screen (viewed March 19, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 35
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pearson IT Certification | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 10 hr., 3 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Sneak Peek The Sneak Peek program provides early access to Pearson video products and is exclusively available to Safari subscribers. Content for titles in this program is made available throughout the development cycle, so products may not be complete, edited, or finalized, including video post-production editing. CISSP, 3rd Edition
    Note: Online resource; Title from title screen (viewed March 24, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 36
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 26 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to debug Python code quickly! Topics include: * Continuous Integration * Python Debugger: PDB * Debugging with print statements * Debugging with IPython * Using pylint and pytest to debug code
    Note: Online resource; Title from title screen (viewed April 14, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 37
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 58 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Artificial intelligence and machine learning have at least one thing in common with traditional software systems: they fail. AI failures might consist of discriminatory behavior, privacy violations, or even security breaches that can lead to lawsuits, regulatory fines, and more. So what can organizations do to avoid these pitfalls? In this Meet the Expert with Andrew Burt and Patrick Hall—the cofounders of bnh.ai, a boutique law firm focused on AI and analytics—learn how to prevent the inevitable failures in your ML systems from spiraling into full-blown AI incidents. As you explore a new approach to incident response specifically tailored to AI, you’ll learn when and why AI creates liability for the organizations that employ it and how those organizations should react when their AI causes major problems. Recorded on May 13, 2021. See the original event page for resources for further learning or watch recordings of other past events . O'Reilly Meet the Expert explores emerging business and technology topics and ideas through a series of one-hour interactive events. You’ll engage in a live conversation with experts, sharing your questions and ideas while hearing their unique perspectives, insights, fears, and predictions.
    Note: Online resource; Title from title screen (viewed May 13, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 38
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071680
    Language: English
    Pages: 1 online resource (1 video file, approximately 5 hr., 11 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Enter the world of the Spring framework with this course About This Video Gain knowledge of autowire annotation and constructor autowiring Understand cross cutting concerns and AOP theory Understand the Spring Core Framework that will let you easily excel in advanced Spring concepts In Detail Are you a professional willing to enter the Spring Framework world? Spring Core is the starting point to learn the Spring Framework, and having a solid understanding of the core concepts of Spring would not only ease your journey to learn other modules/projects of Spring but also clear interviews. Spring is a lightweight, extensible, robust framework (or rather framework of frameworks!) to create enterprise applications that are easy to maintain. Spring Core is the core module that comes with an embedded servlet container (IOC container) and would enable the core functionalities of Spring. You can think of Spring Core as the core engine on which other modules would run. This course is taught in a beginner-friendly way and the only expectation from you is that you know Java. We’ll be working with Spring 5.1.1 in this course. However, this course should be compatible with 5.X versions of Spring.
    Note: Online resource; Title from title screen (viewed April 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 39
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484271278
    Language: English
    Pages: 1 online resource (1 video file, approximately 35 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Create a simple chat app for iOS using the Multipeer Connectivity framework. Multipeer Connectivity is an important development in the latest iOS. Using this framework, you’ll provide users an interactive way to communicate and exchange data between each other. You'll see how to set one of the users as the host, and allow other users to join the hosted chat. Then each participant will be able to send a message in a shared room between all of the users. You’ll achieve this by implementing the Multipeer Connectivity framework, setting up the room protocols, and creating pathways for the exchange of data with users in the room. Learn how to create multi-screen apps; save simple data, such as a person’s screen name, indefinitely; and add a few storyboard elements, such as buttons and textfields. Finally, this video gives you a skeleton for creating other apps, such as a multiplayer game linked between different devices. What You Will Learn Create basic Xcode projects for iOS Implement the Multipeer Connectivity framework Create host and guest functionality and exchange data between devices Who This Video Is For Developers with more advanced skills in Xcode and Swift.
    Note: Online resource; Title from title screen (viewed May 5, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 40
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 60 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for a special conversation on Kubernetes with Sam Newman and longtime DevOps pro Patrick Debois. They’ll discuss DevSecOps best practices, how to develop a security-focused approach to your organization’s software development, and the trends that are impacting your organization’s deployment practices and culture—along with insights intended to help you learn how to approach the most challenging aspects of building and managing evolving software needs. What you'll learn-and how you can apply it Explore the origins of DevSecOps Understand why DevSecOps is needed See what’s coming next for infrastructure and ops This training course is for you because... You want the chance to ask Sam Newman and Patrick Debois your questions about using DevSecOps. You’re looking for ways to use DevSecOps to support your production goals. You want to become well versed in the foundations and best practices of pipeline creation and deployment. Prerequisites Have a pen and paper handy to capture notes, insights, and inspiration Recommended follow-up: Read DevOpsSec (report) Watch Spotlight on Cloud: DevSecOps Lessons Learned with Zane Lackey (video, 58m) Read Securing DevOps (book) Watch “ Security Is Everybody’s Job ” (recorded Superstream session with Tanya Janca) Read “ Welcome to the Agile Revolution ” (chapter 3 in Agile Application Security)
    Note: Online resource; Title from title screen (viewed May 5, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 41
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 22 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to use Google AutoML Vision to train models with out writing code. Topics include: * Google AutoML Vision with Corel.AI * Core ML * Tensorflow Lite * Edge Inference * MLOps for Edge Computer Vision
    Note: Online resource; Title from title screen (viewed April 27, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 42
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 32 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: What is an SBOM (Software Bill Of Materials) and why should you care? An SBOM is a critical cybersecurity component to keep track and catalog what is installed (and at what versions) in production environments. With recent cybersecurity threats, SBOMs play an important role to implement a remediation strategy when threats and vulnerabilities are reported. Without an SBOM, it is borderline impossible to detect what exactly is released into production, and what may be vulnerable today. Topics include: * Understand the concepts behind an SBOM * Create an SBOM and use different output formats like CycloneDX to import into other systems * Use an SBOM to detect CVE and other vulnerabilities associated with installed software * Capture information about pre-installed system dependencies and nested dependencies * Use CycloneDX and other machine-readable formats like JSON to import outputs into other systems A few resources that are helpful if you are trying to get started with SBOMs, generating them and using them to capture vulnerabilities: * A simple, user-friendly SBOM generator: Syft * A fast vulnerability matcher that uses SBOMs as input: Grype * The CycloneDX format
    Note: Online resource; Title from title screen (viewed May 18, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 43
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 39 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn the essentials of Bash for Cloud Computing Topics include: * AWS Cloud Shell and Github Code Spaces Shell programming * Editing Bashrc * Using Vim * Using shell navigation including: cd, ls, pwd, history * editing the Bash prompt and creating simple Bash Scripts, as well as Python Virtual Environments with Bash
    Note: Online resource; Title from title screen (viewed May 6, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 44
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 15 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn some counter-intuitive ways to think about programming as a beginner. It is ok to feel stupid, it means you are on the right path! Topics include: * Failure is good * The goal of programming is to reduce complexity * Automation is a requirement * Continuously Improve your code * Embrace Automation and Monitoring
    Note: Online resource; Title from title screen (viewed April 17, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 45
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 56 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn all about distributed tracing in this 1 hour course. If you want to go beyond logging and monitoring, and trying to tell a story by connecting the dots, then distributed tracing is the way to go. Topics include: * Opentracing and the foundations of distributed tracing libraries like Jaeger * Micro-service strategies and other microservice implementations that make distributed-tracing a perfect use case * Implement distributed tracing instrumentation in a Github project using docker compose with multiple Docker containers * Leverage the knowledge to use hosted services like Datadog for querying and debugging traces
    Note: Online resource; Title from title screen (viewed April 15, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 46
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 44 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Python exceptions are exceptional at helping your program take decisions. It is natural to feel the urge to catch them all and ignore them. But powerful programs can be created by learning how to leverage them in order to make robust scripts and take your coding skills to the next level. In this video, I cover several techniques that will help you improve your exception handling. Topics include: * Create a script that uses exception poorly, and then improve it * Slowly clean up broad catching exceptions to improve the script * Learn how to produce better errors from exceptions * Leverage other tools like logging to produce meaningful errors and tracebacks while keeping messages clean Follow along the repository to continue using more examples: https://github.com/alfredodeza/exceptions/
    Note: Online resource; Title from title screen (viewed April 22, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 47
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801076944
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 48 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Understand the underlying theory behind state machines, finite automata, and regular expressions About This Video Learn about RegExp history and regular grammars Learn about character and epsilon NFA fragments Learn about NFA acceptor and NFA table In Detail It’s not a secret that big tech companies, such as Google, Facebook, and others, organize their recruiting process around generalist engineers who understand basic fundamental systems, data structures, and algorithms. In fact, it’s a known issue in tech-recruiting; there are a lot of “programmers”, but not so many “engineers”. And what does define an engineer in this case? An ability to solve complex problems, with understanding (and experience) in those generic concepts. And there is a simple trick how you can gain great experience with transferable knowledge to other systems. You take some complex theoretical field, which might not (yet) be related to your main job, and implement it in a language you’re familiar with. And while you build it, you learn all the different data structures and algorithms that accommodate this system. It should specifically be something generic (for example, state machines) so that you can further transfer this knowledge to your “day-to-day” job. In this course, we take this approach. To study automata “theory”, we make it more practical: we take one of its widely used applications, the lexical analysis and pattern matching, and build a RegExp machine.
    Note: Online resource; Title from title screen (viewed April 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 48
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071956
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 2 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn how to build a RESTful API using ASP.Net Core API, Entity Framework, Enterprise-grade practices for a scalable and future-proofed Web API solution. About This Video Build a fully data-driven REST Web API using cutting edge technology Deploy application and database on-premises with Internet Information Systems and SQL Server Learn Enterprise-level design patterns and troubleshoot and fix practical errors In Detail Microsoft .NET is the platform that drives the business technology of many of the top corporations in the United States and many other countries. It is the predominant technology used to drive enterprise-scale business technology. There is a high demand across the world for .NET developers in a variety of industries. This course also features web API development, and the ability to design and maintain an API is an important toolset for the modern web developer. This course will help you build a fully data-driven REST Web API using cutting-edge technology. You will test and troubleshoot using Postman, create a database using Entity Framework Core, set up logging using SeriLog, learn about dependency injection, and API documentation using SwaggerUI. You will understand the REST design principles and authentication using JWT, understand how to use data transfer objects and AutoMapper, manage packages with NuGet Manager, and set up GitHub for source control. Finally, you’ll deploy applications and databases on-premises with Internet Information Systems, Microsoft SQL Server, and Microsoft Azure. By the end, you’ll switch around to Visual Studio for your coding exercise because of hands-on expertise in examining logic and syntax errors throughout. This will put your newly learned skills to practical use and impress your boss and coworkers.
    Note: Online resource; Title from title screen (viewed May 24, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 49
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071833
    Language: English
    Pages: 1 online resource (1 video file, approximately 11 hr., 10 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn machine learning and support vector machine from scratch About This Video Learn how to use Pandas for data analysis Learn how to use sci-kit-learn for SVM using the Titanic dataset Learn about training data, testing data, and outliers In Detail This course is truly a step by step. In every new video, we build on what has already been learned and move one extra step forward; then we assign you a small task that is solved in the beginning of the next video. This comprehensive course will be your guide to learning how to use the power of Python to train your machine such that your machine starts learning just like a human; based on that learning, your machine starts making predictions as well! We’ll be using Python as the programming language in this course, which is the hottest language nowadays when we talk about machine learning. Python will be taught from a very basic level up to an advanced level so that any machine learning concept can be implemented. We’ll also learn various steps of data preprocessing, which allows us to make data ready for machine learning algorithms. We’ll learn all the general concepts of machine learning, which will be followed by the implementation of one of the most important ML algorithms— “Support Vector Machine”. Each and every concept of SVM will be taught theoretically and implemented using Python.
    Note: Online resource; Title from title screen (viewed April 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 50
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801819961
    Language: English
    Pages: 1 online resource (1 video file, approximately 7 hr., 17 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Enhance your skills with comprehensive knowledge on Power BI Desktop, Power BI Online, and the required hands-on experience to solve real-time industry-based Power BI projects About This Video Create, share, collaborate, and benefit from business information with purpose-built dashboards Create compelling reports and visualizations, derive real-time insights, and deploy it on demand Form relationships in your data model and learn data visualization best practices In Detail Power BI is a business intelligence tool by Microsoft that provides analytics services. It provides interactive dashboards and visualizations with self-service business intelligence capabilities, where end users can create reports and dashboards by themselves without having to depend on anyone else, as Power BI’s artificial intelligence is there to help you out. Power BI provides cloud-based BI services, known as Power BI Services, along with a desktop-based interface called Power BI Desktop. It offers data modeling capabilities along with data preparation, data discovery, and interactive dashboards. In this course, you will gain an understanding of the concept and working of Power BI Desktop and Power BI online services. You’ll start with learning how to connect Power BI to different data sources. Then you’ll be able to transform your data using Power Query and create data models. After this, you’ll also level up your data analysis skills using DAX and create calculated columns and measures. With the help of reports and visualization in Power BI, you’ll be able to present your data in an efficient and interactive way. And lastly, you’ll learn how to publish your reports and dashboards to the Power BI online service. By the end of this course, you’ll be able to excel at your career as a business intelligence and data analyst professional.
    Note: Online resource; Title from title screen (viewed May 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 51
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801816199
    Language: English
    Pages: 1 online resource (1 video file, approximately 5 hr., 51 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Enter the world of Django with JavaScript and Ajax About This Video Learn all the essential concepts of Django Learn the first DOM manipulation and first Ajax call Understand the CRUD app and learn to create posts with Ajax In Detail Learn how to create improved Django web applications using JavaScript, Ajax, and Bootstrap 5 by taking this unique and complete course. In this course, we will create a nice-looking CRUD application, learning step by step how to implement the concepts mentioned above in order to bring user experience to the next level. After completion, you will have enough knowledge to create your own applications based on what you’ve learned or improve the existing ones. This isn’t a course that will just teach you how to do certain things in your code, but rather, it will teach you how to think in a way to complete your own tasks, which later will bring you to accomplishing your personal goals. By the way, it’s worth mentioning that if you are thinking to learn and discover popular modern frameworks such as ReactJS, AngularJS, or Vue JS, it’s a good idea to learn the basic concepts behind using vanilla JavaScript and Ajax in your web applications. By the end of the course, you will learn how to create beautiful apps combining JS with Python’s most famous web framework.
    Note: Online resource; Title from title screen (viewed May 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 52
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801072359
    Language: English
    Pages: 1 online resource (1 video file, approximately 12 hr., 17 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn and deepen your knowledge in ethical hacking topics such as pentesting and privilege escalation techniques while becoming a certified cyber security professional About This Video Execute privilege escalation for Linux Execute privilege escalation for Windows Solve CTF (Catch the Flag) solutions and move ahead in the game level In Detail We are in an era where cyber security plays an important part and the race between attackers and defenders is tremendously growing. Companies are heavily investing to protect their data. Pentesting and privilege escalation tests prove to be a vital step to eradicate or lower down the vulnerabilities within a system, network, or application to detect weaknesses that an attacker could exploit. Throughout the course, we’ll solve a number of vulnerable machines on VulnHub, TryHackMe, and HackTheBox along with the other platforms. The topic of privilege escalation will be thoroughly explained, which provides the best tools to pass a certification such as OSCP. Furthermore, we will not only focus on Linux machines but Windows machines as well. Important topics that will be covered are as follows: Advanced Linux CTF Solutions Linux Privilege Escalation Windows Privilege Escalation Kernel Exploit SUID Sudo Cronjobs Metasploit Potato Attacks BPrute Force Meterpreter Shells Meterpreter Shells By the end of this course, you will have taken a big step to advance your cyber security career. Warning: This course aims to provide a good training for people who want to be cyber security professionals. You should not break the law in any way with the offensive penetration test techniques and you accept the responsibility by taking this course.
    Note: Online resource; Title from title screen (viewed May 27, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 53
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801075763
    Language: English
    Pages: 1 online resource (1 video file, approximately 15 hr., 38 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Your one-way stop to learning basic and advanced Microsoft Excel 2019 skills About This Video Gain a solid understanding of Microsoft Excel 2019 Uncover amazing Microsoft Excel suite techniques and shortcuts to make your job easy Learn how to add life to your Excel spreadsheets by creating stunning charts and graphs In Detail Everyone knows that the Microsoft Office suite is used by millions worldwide. Unlocking its full potential and learning it thoroughly will improve your productivity drastically. This course will help you grasp all the essential and advanced skills for Microsoft Excel 2019 with the help of interesting activities. We’ll start with the basic topics and see what’s new in Excel 2019. Then we will create workbooks; enter data into; explore page setup and print options; work with rows, columns, and cells; learn how the Cut, Copy, and Paste option works; understand functions and formulas; and also get introduced to PivotTables, logical, and lookup formulas. After this, we will move towards advanced concepts such as lookup and advanced lookup functions, financial functions including calculating interest and depreciation, statistical functions, learning how to connect to other workbooks and datasets outside of Excel, and creating awesome visualizations using sparklines and data bars. We’ll also cover some advanced charts such as Surface, Radar, Bubble, and Stock Charts. By the end of this course, you’ll become proficient in using Microsoft Excel for your professional and personal needs.
    Note: Online resource; Title from title screen (viewed March 27, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 54
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 24 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to use AWS App Runner to do an MLOps workflow that deploys a Flask Microservice that running sklearn. This tutorial walks you through how to deploy code from the O'Reilly book Practical MLOps using the AWS App Runner Service. Topics include: * MLOps * AWS App Runner * Container as a Service * Python * Flask * Microservice * Sklearn * Machine Learning Engineering
    Note: Online resource; Title from title screen (viewed May 23, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 55
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Addison-Wesley Professional | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 4 hr., 13 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: 4+ Hours of Video Instruction Description Hands-on approach to learning the Splunk platform to search, report, and visualize machine-generated data. Overview Practical Splunk for Beginners LiveLessons provides you with functional, hands-on instruction on how to create data intelligence from machine-generated data. About the Instructor Karun Subramanian is an IT operations expert focusing on modernizing monitoring and observability. With over 20 years of experience, Karun has helped numerous companies transform their IT operations ecosystem. His expertise includes log aggregation, time series databases, cloud infrastructure, and machine data analytics. He is a Splunk Certified Architect. Karun is the author of the book Practical Splunk Search Processing Language: A Guide for Mastering SPL Commands for Maximum Efficiency and Outcome . Skill Level Beginner to Intermediate Learn How To Search using Search Processing Language (SPL) Group and correlate events Perform statistical calculations from search results Visualize data using charts Create reports and alerts Create dashboards Use lookups to enhance search results Who Should Take This Course Users in IT Operations area who need to use Splunk for monitoring and troubleshooting their applications and infrastructure Application developers and architects will also find the course useful for analyzing application log files. Security professionals can make use of the course if they use Splunk as an SIEM platform Course Requirements Basic Linux commands Basic SQL queries Lesson Descriptions: Lesson 1: The Splunk Platform In this lesson Karun covers the basics of the Splunk platform. You learn what Splunk is and why organizations use it. He reviews the various components that make up the Splunk platform. He covers the role of a Splunk search head and an indexer. He also covers the practical ways Splunk can be utilized in your organization. Finally, Karun shows you how to install and set up Splunk in your own local environment. Learning is lot easier and fun when you have your own Splunk environment. By the end of the lesson you will have a good understanding of the Splunk platform, setting you up for more learning and effective use. Lesson 2: Search Processing Language This lesson dives into the Splunk Search Processing Language, also known as SPL, which is the backbone of the Splunk platform. Karun presents the Splunk search interface to you by walking you through the Splunk Web search and reporting a...
    Note: Online resource; Title from title screen (viewed July 7, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 56
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 59 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for a special conversation on sustainability with Sam Newman and longtime technologist Anne Currie. They’ll discuss cloud providers and the environmental impact of software, how an individual developer’s choices can impact sustainability, and the trends that are impacting organizations’ deployment practices and culture. What you’ll learn and how you can apply it Explore the origins of, need for, and challenges around sustainability See what’s coming next for infrastructure and ops This course is for you because… You have questions about limiting the environmental impact of your technology choices. You’re looking for ways to improve your cloud environment to support your production goals. You want to become well-versed in the foundations and best practices of pipeline creation and deployment. Recommended follow-up: Read Design Patterns for Cloud Native Applications (book) Read Cloud Native Transformation (book) Read 97 Things Every Cloud Engineer Should Know (book)
    Note: Online resource; Title from title screen (viewed July 7, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 57
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801074360
    Language: English
    Pages: 1 online resource (1 video file, approximately 21 hr., 58 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Do more with the G Suite applications with the power of scripting About This Video Loaded with 100+ Google Apps Script code examples Build add-ons to extend Google Docs, Sheets, Slides, and Forms Learn to publish web apps—either standalone or embedded in Google sites In Detail Google Apps Script is a rapid application development platform that makes it fast and easy to integrate business applications with Google Workspace. This is a complete hands-on course, loaded with 100s of Google Apps Script coding examples to do amazing things with Google G Suite and sample projects to create advanced functionality with Google apps and Google services. Boost workflow efficiency when working with Google Workspace by automating or streamlining tasks and connect to non-Google services within Google Workspace applications, allowing us to retrieve or upload data from those services into and from Google Workspace. Explore how to deploy your Apps Script project as an add-on extending Google Workspace. In this course, we will explore how to create and release functionalities within our G Suite apps. We’ll add custom menus, dialogs, and sidebars to Google Docs, Sheets, and Forms; publish web apps—either standalone or embedded in Google sites; create customized user interfaces that are directly integrated into Google Workspace applications. By the end of this course, you will become an expert in Google Apps Script.
    Note: Online resource; Title from title screen (viewed June 24, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 58
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801813709
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 16 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Master the basics to use Git effectively About This Video Explore how Git and GitHub work, along with their basic features Learn how to manage commits, branches, merging, and objects in GitHub and Git Perform basic operations such as committing changes, pushing to the remote, and merging branches In Detail This course is designed to guide you through working with Git and GitHub. You will start by learning how to install Git and initialize a new Git repository on Windows, Mac, and Linux/Unix systems and then understand how to use it on the command line. Next, you will learn the four types of objects in Git: blobs, trees, commits, and annotated tags. Each object has a unique SHA1 hash. All objects are stored in the folders. Every object has just a single reference to it-SHA1 hash. Files are stored in blobs. Filenames are stored in other Git objects called trees. The videos will guide you through making changes, staging them, and committing them afterward. Also, you will learn and practice how to observe commits tree and checkout different commits to “travel in time” between different states of the Git repository. By the end of this course, you will be well-versed with the basics of Git and GitHub.
    Note: Online resource; Title from title screen (viewed June 29, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 59
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801818148
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 26 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Use Django 3 to build 3 stunning websites, learn back- and front-end web development, deploy your site with HTML5, CSS3, and Bootstrap 4 About This Video Build 3 full-stack websites with the Django 3 framework Learn back- and front-end web development Deploy your site with HTML5, CSS3, and Bootstrap 4 In Detail Django is an amazing framework for web developers because it provides the infrastructure required for database-driven websites that have user authentication, content administration, contact forms, file uploads, and more. In this course, we will be using Django 3 to build 3 stunning websites. This will help you learn Django and implement it in your projects. We will also use Python, so if you have never used it before, we will start with a Python refresher to get you up to speed. We will then dive into making three complete websites: 1) Password Generator: A simple website to create a random password with several options 2) Personal Portfolio: Create your own portfolio to show to potential employers showing off your resume, previous projects, and a fully functional blog 3) Todo Woo: A website where a user can sign up for an account, and fully manage a Todo list with the ability to create, edit, and delete We will also walk through Git, which is an awesome tool for developers that allows creating multiple versions of the code. Additionally, we will learn how to publish our projects live. By the end of this course, you’ll be able to use Django to create your own websites and deploy them on a server.
    Note: Online resource; Title from title screen (viewed June 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 60
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 39 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for an event focused on the many aspects of designing, deploying, and maintaining responsible AI. Event chair and responsible AI expert Rumman Chowdhury offers overarching context, stitching together shorter tech talks and conversations with industry leaders. What you’ll learn and how you can apply it Discover what responsible AI includes (and what it doesn’t) See what responsible AI looks like in action, from data to deployment to debugging Learn how to debug your ML model Explore real-world applications of responsible AI Understand what industry leaders think about when they think about responsibility This course is for you because… You're a machine learning engineer or data scientist interested in responsible AI. You’re engaged in conversations about ethics and AI. You're wondering how to improve your own AI and machine learning. You're responsible for implementing fair or ethical AI practices in your role or project and looking for hands-on examples. Recommended follow-up: Read Responsible Machine Learning (report) Read AI and the Law (report) Read Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow (book)
    Note: Online resource; Title from title screen (viewed June 16, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 61
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801813297
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 20 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn the basics of Scrum and the Scrum lifecycle, how to organize a Scrum team and set up a project, and how to implement a Scrum, from releases and sprints to enterprise transformation. About This Video Get into the shoes of a Scrum team and understand their role Explore how Kanban is different from Scrum and extreme programming Finding various inefficiencies in your process using Kanban board In Detail Kanban is a popular framework used to implement Agile and DevOps software development. It requires real-time communication of capacity and full transparency of work. Work items are represented visually on a Kanban board, allowing team members to see the state of every piece of work at any time. A Kanban board is an Agile project management tool designed to help visualize work, limit work-in-progress, and maximize efficiency (or flow). It can help both Agile and DevOps teams establish order in their daily work. Kanban boards use cards, columns, and continuous improvement to help technology and service teams commit to the right amount of work, and get it done. This course will help you explore how working on an Agile project using Kanban has benefits for your development team, your end-users, and your organization as a whole. We will identify various process flow-related issues including too much work in progress, underutilization of resources, lengthy tasks, unequal-sized tasks, and so on, using simple and easy-to-understand demonstrations on the Kanban board. We will not only identify these inefficiencies but also solve for the same by continuously improving the process flow using the Kanban board.
    Note: Online resource; Title from title screen (viewed June 29, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 62
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803239262
    Language: English
    Pages: 1 online resource (1 video file, approximately 24 hr., 59 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: A complete guide to the Microsoft Excel data analysis About This Video Learn how to merge data from various sources using VLOOKUP, HLOOKUP, INDEX MATCH, and XLOOKUP Learn how to create amazing looking dashboards using PivotTables Learn how to use Goal Seek, Scenario Manager, and Solver to fill data gaps in Excel In Detail In this four-course bundle, we look at a number of advanced Excel techniques all aimed at helping you make sense of the numbers in your business. In Excel for business analysts, you will learn to clean raw data and look at a number of tools and functions that can be used to conduct analysis. Finally, we move onto some more advanced techniques designed to aid forecasting and use existing data to predict future trends. In Advanced Excel 2019, you will gain an in-depth understanding of more advanced Excel features that delve into high-level consolidation, analysis, and reporting of financial information. Advanced PivotTables starts with a PivotTable refresher and then goes on to discuss advanced sorting, slicers, timelines, calculated fields, pivot charts, and conditional formatting. In Advanced Formulas, learn the Excel formulas and tools that enable you to perform complex tasks and analyses. Filtering a dataset, sorting using formulas, creating multi-dependent drop-down lists, 2-way look-ups, text extraction, dynamic chart titles, and XLOOKUP are a few of the exciting concepts covered in the course. By the end of the course, you will become an expert in data analysis with Excel.
    Note: Online resource; Title from title screen (viewed July 29, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 63
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071246
    Language: English
    Pages: 1 online resource (1 video file, approximately 37 hr., 19 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn iOS 14 development with Swift 5 + Xcode 12. Build apps, games (Instagram, Foursquare, and more), and also discover SwiftUI About This Video One year web hosting from Eco Webhosting Get 300$ worth of visuals to use in your app design Pass and get CCA Certification participation for Swift Level 1 and Swift Level 2 for free In Detail Do you know why application development with Swift is gaining a huge popularity? The reason being programming in Swift will bring down the cost of software development, the speed of implementation, and the possibility of further innovation. In this course, you are going to write real-life example apps, games, clones, and much more. You will learn and practice all details of Swift 5 and iOS development during these projects and challenges and will also get introduced to SwiftUI. The topics that will be covered are Swift 5 beginner to advanced techniques, layout, push notifications, Parse, Firebase, Cocoapods, OneSignal, maps, core data, JSON and API, Back4App servers, social media development, ML, augmented reality, games with Sprite Kit, SwiftUI, design essentials with Adobe XD, widgets, and app storage. You are also going to work on projects such as Art Book, Catch the Kenny, Currency Converter, Travel Book, Foursquare Clone, Instagram Clone, Snapchat Clone, Angry Bird Clone, Image Recognition App, and so much more. We are going to cover both Firebase and Parse with their latest and most updated versions! By the end of the course, you will be able to write and design a real app and upload it to the AppStore at the end of this course. When you finish this course, you will be able to understand how you can write any iOS app you want.
    Note: Online resource; Title from title screen (viewed July 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 64
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803232447
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 50 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn about cloud and cloud models and see what Gartner has to say about cloud providers. About This Video Learn the cloud models and evolution of cloud Learn about managing Azure with CLI Explore the five key characteristics of cloud computing In Detail This course is designed to clear up the many misunderstandings about cloud computing and to give you a crystal clear and easy-to-understand explanation of exactly what it is, how it works, the different options available, the advantages provided, and how much it’s going to cost. We will have practical examples that you can follow along yourself, so you’ll understand exactly how cloud computing works in the real world. We will start off with a review in Module 1 of the traditional deployment models of On Premises and Colo so you can understand how cloud changes things, then explain how server virtualization revolutionized data center design and paved the way for the cloud. You will also understand cloud computing by listing the essential characteristics of cloud services. You’ll learn about the cloud service models of IaaS, PaaS, and SaaS. The cloud deployment models of public cloud, private cloud, hybrid cloud, and community cloud are also covered.
    Note: Online resource; Title from title screen (viewed July 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 65
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484273395
    Language: English
    Pages: 1 online resource (1 video file, approximately 45 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Gain an overview of the Eclipse-based open source Jakarta EE APIs and technologies formerly called Java EE (Enterprise Edition). This video highlights the key components of the latest Jakaarta EE release, giving you the knowledge you need to begin your journey to developing enterprise-level applications. This video will familiarize you with the important terms and concepts behind the Jakarta EE enterprise application development platform and introduce its architecture. After completing this video course, you’ll be prepared for a deeper dive into enterprise application development using Jakarta EE. What You Will Learn Discover what Jakarta EE is and how it has evolved to meet current business needs Understand why Jakarta EE application development is more relevant now than ever Master the key Jakarta EE specifications and how to use them Leverage TCKs to ensure compatibility Who This Video Is For Full-stack Java developers and programmers; no prior experience in Jakarta EE or Java EE is assumed. However, at least some prior exposure to core Java, Java SE, and the JDK is recommended.
    Note: Online resource; Title from title screen (viewed August 6, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 66
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 19 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: The main reason to pick a microservice architecture is the ability to change things independently. It means getting fixes and updates to software live more quickly, but it can also help improve your organizational autonomy. In these sessions you’ll learn how microservices allow you to own more of the lifecycle of your software, create more products, and get them out faster.
    Note: Online resource; Title from title screen (viewed July 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 67
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484273531
    Language: English
    Pages: 1 online resource (1 video file, approximately 59 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Create your own collection of Lookup Tables (LUTs) for Photoshop and video rather than buying from a third party. This video will explain what a Look or Lumetri LUT is, how to create these tables from adjustment layers and apply them successfully as a new single adjustment layer in Photoshop, or reuse them in Adobe Media Encoder for short video clips. The tutorial starts with an overview of LUTs, its history, usage, kinds, color modes, file formats and what Adobe programs use or can create LUTs. You will also find out why you should create your own LUTs. Next, you will learn about best practices when creating a LUT and how to group the adjustment layers correctly as well as look at how you can apply your LUT as a color lookup adjustment layer in Photoshop and further modifications and settings you can apply to that adjustment layer. Finally, you will learn to apply your LUT file to a video clip or stitched clips in Media Encoder. You will also find some advice on where to store your LUT files to maintain the same linkage. What You Will Learn Learn to create your own LUTs How these same files can be reused for video Learn how LUTs can be reused from Photoshop Projects Who This Book is For Graphic artists who may have only beginner experience in how to create LUTs and how to use them in videos.
    Note: Online resource; Title from title screen (viewed August 6, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 68
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801074803
    Language: English
    Pages: 1 online resource (1 video file, approximately 4 hr., 32 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Master the fundamentals of Alteryx for data cleaning and data preparation. About This Video Grasp the fundamentals of Alteryx Clean and prepare data in Alteryx Derive insights from your data In Detail Alteryx is a data preparation and cleaning tool used mainly by data scientists to clean and prepare data. Its effectiveness lies in its user-friendly interface and variety of tools that can be used for data analysis. In this course, you'll learn the fundamentals of Alteryx and work on preparing and deriving insights from your data. You'll begin by getting an introduction to Alteryx and learn how to get your data into Alteryx. You'll learn how Alteryx cleans data in an efficient way, and how to use this to your advantage. You'll use tools such as 'union' and 'replace' to combine and clean your data, 'cross tab' and 'transpose' to pivot your data, and a host of additional useful tools to learn the dynamics of Alteryx. You'll also work on a case study to cement your knowledge of Alteryx. By the end of this course, you'll be a confident data scientist with the knowledge of Alteryx to clean and prepare your data in the best way possible.
    Note: Online resource; Title from title screen (viewed July 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 69
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803230979
    Language: English
    Pages: 1 online resource (1 video file, approximately 9 hr., 44 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn responsive web design, UI, and UX principles, prepare the design for coding, increasing sales via a great design About This Video A complete web design project, from start to finish, both the desktop and the responsive versions Learn UI and UX principles that will help you design any website, no matter the style or client How to understand what clients want and how to help them achieve their goals In Detail Create beautiful and responsive website designs in Adobe XD. Adobe XD is the next big thing in terms of design tools. It makes you look like a professional designer even if you are just a beginner. Start right now and take your designs to another level. This course will show you how you can design a beautiful website from scratch without any previous experience. This course will cover essential exercises that will teach you how to work like a professional; a complete web design project, from start to finish, both the desktop version and the responsive version; how to prepare the design for coding; how to understand what clients want and how to help them achieve their goals; and UI and UX principles that will help you design any website, no matter the style or client. This course is designed for anyone who is interested in web design—from beginners to professionals, from designers to coders, from business owners to someone who is looking to start a new career or earn some money. At the end of this course, you will not only have a beautiful project for your portfolio but also a deep understanding of what makes a website design successful.
    Note: Online resource; Title from title screen (viewed July 29, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 70
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 25 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Topics include: * Solar * Tesla * Nest * Smart Home * Time of Use * Net metering * Battery Backup * EV (electric vehicle) * Artificial Intelligence * Level 1 Charging * Level 2 Charging * Level 3 Charging
    Note: Online resource; Title from title screen (viewed July 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 71
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803246123
    Language: English
    Pages: 1 online resource (1 video file, approximately 5 hr., 58 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn about the security capabilities that .NET provides out of the box, how they work, and how to implement them properly About This Video Become a professional by performing secure coding practices Build effective security controls to protect against breaches and malicious hackers Use labs to enhance your learnings In Detail With the growing need for cybersecurity across the world, developers who have mastered cyber resilience get ahead. Secure coding in ASP.NET is an instrumental pathway for all developers who wish to build secure and cyber-resilient software. This course will enable you as a professional to execute secure coding practices, identify vulnerabilities in the code, remediate identified weaknesses, design with security in mind, and build effective security controls to protect against breaches and malicious hackers. You will learn about ASP.NET security fundamentals, security features, common approaches to secure development and methodologies, common technical vulnerabilities, design flaws, and business logic issues. You will master the tools and skills needed in order to secure software early in the SLDC, such as identifying common vulnerabilities (SQL Injections, IDOR, XSS, Command Injection, and more!), applying world-famous tools to aid you in building secure software, automating security tests, planning remediation efforts, and integrating best practices in all development efforts. By the end of the course, you will be able to execute secure coding practices like a professional. Who this book is for This course is designed for .NET developers, software developers, cyber security enthusiasts, or for anyone who would like to grow their secure coding skills in ASP .NET.
    Note: Online resource; Title from title screen (viewed August 31, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 72
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Cisco Press | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 53 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Almost 9 Hours of Video Instruction Overview TCP/IP Fundamentals LiveLessons provides almost 9 hours of video learning that encompasses an in-depth exploration of the foundational concepts of the TCP/IP protocols as used today in modern enterprise and cloud provider networking. This course is specifically geared toward younger adult learners as well as individuals who are transitioning into a new career in information It is a great first taste into networking and internetworking, and serves as a great prequel to any Network+ or CCNA-type course. The course offers a clear and easily digestible introduction and explanation of the protocols, services, and behaviors of the modern TCP/IP implementation. Michael Shannon uses slides, interactive board work, and whiteboards and provides several demonstrations of the technology on modern Windows, Linux, and Amazon Web Service environments. Michael J. Shannon has more than 25 years of IT and information system experience working as an employee, contractor, and consultant for companies like MCI, Platinum Technologies, Fujitsu, IBM, State Farm, MindSharp, Skillsoft, and of course Pearson. He is uniquely qualified to provide detailed explanations to help you understand exactly what is happening under the hood when accessing the Internet, whether it’s using a corporate PC, laptop, mobile device, or even your web-enabled alarm! This course is a great first step in the process for entry-level IT certifications such as CompTIA Network+, A+, Cisco CCNA, Juniper, PAN, and cloud services like Google Cloud Platform and Amazon Web Services. About the Instructor Michael J. Shannon began his IT career when he transitioned from recording studio engineer to network technician for a major telecommunications company in the early 1990s. He soon began to focus on security and was one of the first 10 people to attain the HIPAA Certified Security Specialist. Throughout his 30 years in IT he has worked as an employee, contractor, and consultant for numerous companies, including Platinum Technologies, Fujitsu, IBM, State Farm, MindSharp, Pearson, and Skillsoft. Skill Level Beginner/entry-level What You Will Learn A complete overview of all TCP/IP fundamentals About ground-level Internet technology and general networking Who Should Take This Course The target audience for this course consists of anyone who wants to learn about the foundation of the Internet and the World Wide Web. It is a great introductory course and an excel...
    Note: Online resource; Title from title screen (viewed August 11, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 73
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803245232
    Language: English
    Pages: 1 online resource (1 video file, approximately 13 hr., 43 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Excel in NodeJS, MongoDB, and Express, and improve your JavaScript skills. About This Video Set up MongoDB in the cloud to connect using NodeJS Learn how you can create your own module locally Learn how to send data from a front-end form to Node Express to output to the terminal In Detail This course is split into 7 sections; section 1 is a fast-paced quick introduction to NodeJS and how you start using NodeJS. We discuss what NodeJS is and that it is not a programming language like JavaScript but an interpreter and environment for JavaScript. Moving further with section 2, we explore the fundamentals of JavaScript and writing JavaScript code within the Node. It is loaded with examples about the basics of coding JavaScript . As Node uses JavaScript code, this section will provide a refresher and quick overview of JavaScript, and is designed to cover core JavaScript required for the upcoming sections and writing Node. JavaScript asynchronous programming explains asynchrony in computer programming, refers to the occurrence of events independent of the main program flow and ways to deal with such events, and shows how to add callbacks that run once a stack is complete. Each module in NodeJS has its own context and cannot interfere with other modules. Modules are like libraries that you can include in your application. Node.js has a set of built-in modules you can use without any further installation, such as http, fs, path, and url. Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications. Explore how to set up a web application quickly with Express. Who this book is for To take this course, you will need to have some knowledge of Object-Oriented Programming, if not C#. Even if you do not have much exposure to the .NET development stack, this course is very beginner-friendly and chock-full of development tips. This course is ideal for anyone who wants to learn more about NodeJS, and for JavaScript developers and web developers.
    Note: Online resource; Title from title screen (viewed August 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 74
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 60 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: If AI is going to be part of everyday life for businesses and citizens alike, it needs to be accessible. So how should organizations move toward AI maturity? And what steps can businesses take to democratize AI while meeting the challenges they’ll encounter along the way? In this Meet the Expert, AI and business intelligence leader Jen Stirrup walks you through a number of different challenges and considerations for the democratization of AI for business—along with approaches for overcoming them. Find out what AI means for the industry, for people’s careers, and for their training opportunities as you explore aspects of AI that you may not have considered yet. Recorded on August 24, 2021. See the original event page for resources for further learning or watch recordings of other past events . O'Reilly Meet the Expert explores emerging business and technology topics and ideas through a series of one-hour interactive events. You’ll engage in a live conversation with experts, sharing your questions and ideas while hearing their unique perspectives, insights, fears, and predictions.
    Note: Online resource; Title from title screen (viewed August 24, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 75
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803232478
    Language: English
    Pages: 1 online resource (1 video file, approximately 9 hr., 33 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Build adaptive web apps using a single code base About This Video Build a full-fledged, more complex, Flutter web app with Firestore, FirebaseAuth as the backend Create, authenticate, and log in users using Google Cloud FirebaseAuth Learn how to implement basic and advanced routing in Flutter 2.0 web In Detail If you have wondered how to leverage your pre-existing Flutter/Dart development skills, then you will be happy to know you can now build dynamic, scalable, and adaptive web apps with Flutter! Flutter 2.0 is a big release - you can use Flutter and Dart to build adaptive web and desktop apps - all with a single codebase. In this course, you will learn how to leverage Flutter (Web) 2.0 and Dart and build a capstone app called DiaryBook. In this course, you will build a full-fledged, more complex, Flutter web app with Firestore; FirebaseAuth as the backend; create, authenticate, and log in users using Google Cloud FirebaseAuth; create, edit, delete, update diary entries with Cloud Firestore backend; use providers, StreamBuilders in Flutter web; learn how to implement basic and advanced routing in Flutter 2.0 web; finally, deploy Flutter web app to firebase hosting. By the end of this course, you will have all the tools and knowledge you will need to build adaptive Flutter web apps competently and easily port the same app into desktop apps on your own! Who this book is for This course is designed for beginner to intermediate Flutter developers. Web developers who want to learn to build Flutter web apps and curious students who want to build their own Flutter web apps, iOS, Android, and desktop apps with Flutter 2.0 can also benefit from this course. Having some basic programming experience, in general, is helpful. If you have basic OOP (Object-Oriented Programming) concepts, you should be fine. Also, pre-existing Flutter and Dart programming experience or web development basics are helpful.
    Note: Online resource; Title from title screen (viewed August 24, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 76
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 30 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to master key components of Python functions. Topics include: * Input, Output and Unit of Work * Decorators, Yield Statements, Generators, Closures and Nested Functions * Using Github Codespaces and Github Actions * Building Command-line tools * Microservices including Flask and FastAPI * Using AWS Cloud9 along side AWS App Runner
    Note: Online resource; Title from title screen (viewed September 3, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 77
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Addison-Wesley Professional | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 5 hr., 59 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: 6+ Hours of Video Instruction Learn to write performant back-end applications in JavaScript by leveraging the Node.js runtime. Shaun Wassell teaches JavaScript developers how to write and run server-side JavaScript applications for the powerful Node.js runtime. It includes topics such as working with the file system, creating web servers, installing, using, and publishing NPM packages, Google V8 engine, testing, and much more. Description Several years ago, it wasn’t possible to write JavaScript programs for the back-end. JavaScript was strictly limited to running in a browser, and if a developer wanted to write back-end software, they had little choice but to learn another programming language, such as PHP. Now, that has all changed. Thanks to Node.js, which allows JavaScript to be run outside the browser, JavaScript developers can write web-servers, server-side scripts, and any number of other useful back-end programs. This LiveLessons video shows developers how to write and run server-side JavaScript applications for the powerful Node.js runtime. The code repository for this LiveLesson can be accessed at https://github.com/shaunwa/node-course . About the Instructor Shaun Wassell 's goal is to create a world where people are empowered to use programming as a way to solve meaningful problems--a world where writing code is just as natural for most people as walking or breathing. To help make this a reality, he has dedicated the past few years to helping people learn and master software development skills through video courses, live training sessions, and one-on-one tutoring. Shaun has been programming since he was a kid, when creating video games was his gateway into the world of software. Since then, he's been fortunate enough to be a contributing member on many amazing software projects and work with some incredible mentors along the way. Skill Level Intermediate What You Will Learn Learn to quickly and easily write performant back-end applications in JavaScript by leveraging the Node.js runtime: Write useful server-side programs using modern JavaScript Build Node.js web servers using several different frameworks Deploy your Node.js applications so that they can be accessed from anywhere Create and publish an open-source NPM package Shaun also covers more advanced features for developers, such as: Maximizing the performance of your Node.js programs by learning about how Nodes V8 runtime works Interfacing with databases in Nod...
    Note: Online resource; Title from title screen (viewed February 8, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 78
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pearson IT Certification | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 5 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: AWS Certified Database - Specialty Complete Video Course Sneak Peek The Sneak Peek program provides early access to Pearson video products and is exclusively available to Safari subscribers. Content for titles in this program is made available throughout the development cycle, so products may not be complete, edited, or finalized, including video post-production editing.
    Note: Online resource; Title from title screen (viewed February 10, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 79
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 57 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for a special conversation on software architecture with Neal Ford and Sarah Wells, covering the fascinating aspects of the discipline, interesting convergence areas, and insights on how to approach the most challenging aspects of building and managing evolving architectural needs. This is your chance to ask Neal and Sarah anything you want about architecture or their own career journeys. They’ll spend a few minutes covering the trends in microservices that are influencing architecture right now, then tell you what you need to know to stay ahead of the curve. What you'll learn-and how you can apply it Explore the uses of a microservices architecture What’s coming next with software architecture This training course is for you because... You want the chance to ask Neal Ford and Sarah Wells your questions around working long-term with a microservices architecture. You’re looking for ways to use microservices to support your businesses goals. You want to become well-versed in the foundations and best practices of microservices. Prerequisites: Come with your questions for Neal Ford and Sarah Wells Have a pen and paper handy to capture notes, insights, and inspiration Recommended follow-up: Read Fundamentals of Software Architecture Read Building Microservice, 2E Read Building Event-Driven Microservices
    Note: Online resource; Title from title screen (viewed March 9, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 80
    ISBN: 9781484270004
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 2 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: ​This video helps you to design databases and processes that can manage millions or billions (or more) rows of data for analytics and reporting. Analytic workloads follow different architectural and query patterns than standard transactional systems, and the associated data stores grow differently over time as compared to online transaction-processing systems. This video covers the purpose, usage, and effects of growth on analytic data stores with a focus on storing the data directly in SQL Server. Topics covered in this video include design issues such as compression and advanced indexing techniques for online analytical processing (OLAP) data. Also covered are performance optimization and efficient query patterns. Watching this video helps you learn to better retrieve data with the ultimate goal of answering organizational questions using your analytics data store. What You Will Learn Understand the nature of OLAP data, its structure, and its usage Store OLAP data natively in SQL Server using best-practice options Minimize resource consumption by compressing your data Enhance query performance through columnstore indexing Scale your OLAP query performance to account for future growth Add new data elements to existing analytic data stores Who This Video Is For For data and analytics professionals who create, manage, and query large analytic data stores. For database professionals who expect to do so in the future, who want to know the options that are available in Microsoft SQL Server.
    Note: Online resource; Title from title screen (viewed February 16, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 81
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pearson IT Certification | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 15 hr., 21 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: 15+ Hours of Video Instruction The Cisco Certified DevNet Associate DEVASC 200-901 Complete Video Course correlates directly to the DEVASC 200-901 exam blueprint, which lays out the skills needed to operate within the current world of infrastructure automation and programmability, while also preparing them for a successful exam experience. The Cisco Certified DevNet Associate DEVASC 200-901 Complete Video Course is designed to allow people from both a networking and programming background to jump right in. Each of the 31 lessons directly maps to the exam blueprint and covers the core technologies and concepts needed for exam success. In addition, many of the labs and demonstrations will show you simple and practical uses of infrastructure programmability techniques. Whether you are preparing for the DEVASC 200-901 exam, or simply looking to expand your understanding of concepts and strategies for operating your infrastructure effectively in the ever-changing digital landscape, this course will provide practical tools and techniques to support your career and exam aspirations. Through theory overviews and hands-on demonstrations, Chris Jackson explains both the basics and intricacies of automation and programmability in an easy to understand way. Topics include: Module 1: Software Development and Design Module 2: Python Fundamentals for DEVASC Module 3: Understanding and Using APIs Module 4: Application Deployment and Security Module 5: Network Fundamentals Module 6: Infrastructure and Automation Module 7: Developing on Cisco Platforms About the Instructor Chris Jackson , CCIEx2 (RS, SEC) #6256, is a Distinguished Architect working in the Cisco Global Strategy Organization. He is also the author of Network Security Auditing (CiscoPress, 2010), CCNA Cloud CLDADM 210-455 Official Cert Guide (CiscoPress, 2016), and Cisco Certified DevNet Associate DEVASC 200-901 Official Cert Guide (CiscoPress, 2020). Chris is focused on DevOps, Security, Automation, Cloud, and helping Cisco and customers better leverage the business transformational aspects these technologies provide. He holds dual CCIEs in security and routing and switching, CISA, CISSP, ITIL v3, seven SANS certifications, and a bachelor's degree in business administration. Skill Level Beginner/Intermediate Learn How To Program Cisco infrastructure devices Implement DevOps automation Create a more agile and flexible IT environment Study and prepare for DEVASC exam success Who Sh...
    Note: Online resource; Title from title screen (viewed March 4, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 82
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 16 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to tell stories with Data and then present those conclusions to Business Executives. Learn to use Colab/Jupyter Notebooks to build Data Science notebooks that tell a story. Topics include: * Effects of Intermittent Fasting, Sugar, Wealth and Real Estate Values on society * Visualizing data through Plotly graphs with 3D Interactive Visualizations of KMeans clustering * Using sklearn, pandas, plotly, matplotlib, KMeans clustering, ELI5, shap and other libraries * The role of the Matthew Effect on society. The Github Project is here: https://github.com/noahgift/data-story-telling
    Note: Online resource; Title from title screen (viewed March 13, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 83
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 19 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to use containers to build Microservices on the AWS platform. In this video you walk through building a Flask Microservice using the following AWS tools: * AWS Cloud9 * AWS ECR (Elastic Container Registery) * AWS ECS (AWS Container Service) * AWS Fargate (Container as a Service) Finally, the course builds and deploys a Fargate container that was provisioned to ECR. Follow along with the Github Resource: https://github.com/noahgift/eks-fargate-tutorial
    Note: Online resource; Title from title screen (viewed February 18, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 84
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801074445
    Language: English
    Pages: 1 online resource (1 video file, approximately 4 hr., 11 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Understand the different parsing techniques and learn to build a parsing tool from scratch. About This Video Learn about the different types of parsers Build a parser from scratch Build a syntax tool In Detail In this course, we dive into various aspects of the parsing theory, describing in detail the LL and LR parsers. However, at the same time, to make the learning process and understanding easy and fun, we build in parallel an automatic parser for a full programming language, similar to JavaScript or Python, from scratch. After this course, not only will you be able to use a parser generator to build parsers for programming languages but will also understand how the parser generators work under the hood themselves. Implementing a parser for a programming language would also make your practical usage of other programming languages more professional. As we will build a language similar in semantics to JavaScript or Python (the two most popular programming languages today), we will specifically use JavaScript and its elegant multi-paradigm structure, which combines functional programming and class-based and prototype-based OOP.
    Note: Online resource; Title from title screen (viewed March 31, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 85
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801813235
    Language: English
    Pages: 1 online resource (1 video file, approximately 9 hr., 24 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn Tableau and crack the Tableau Desktop Certified Associate Exam with detailed video tutorials, exam notes PDF, tips and tricks, and a full practice test along with solutions. About This Video Learn Tableau from scratch to ace the Tableau Desktop Certified Associate exam Study guide PDF provided to revise the concepts Exam tips and tricks with a dedicated section for exam tips In Detail This course is designed by considering the fact that you are an absolute beginner, and you’ll be taught even the most basic concepts in Tableau from scratch so that after completing this course, you will be able to create rich visualizations easily and confidently. It will help you prepare and clear your Tableau Desktop Certified Associate exam. In this course, you will find practice tests designed by keeping the current exam format in mind; you will find similar kinds of questions in the exam. We will also show you how to solve the questions in a faster way and all the detailed solutions are provided for the hands-on questions. This course starts with the basic concepts of Tableau to refresh your knowledge. Then, you will look at field and chart types, and how to organize and simplify data. You will then move on to execute calculations, mapping, and analytics. After that, dashboards and data connection will be covered. Following that, you will go through exam tips and tricks. Finally, you will be looking at some practice tests to reinforce your learning. By the end of this course, you will be able to create rich visualizations easily and confidently, and you will be ready to ace your Tableau Desktop Certified Associate exam.
    Note: Online resource; Title from title screen (viewed July 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 86
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801815611
    Language: English
    Pages: 1 online resource (1 video file, approximately 3 hr., 3 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Primavera P6 Version 8 to Version 20, this module explains the differences between the versions About This Video Workshop on formatting the bar chart and organizing your data Workshop on filters and printing Workshop on activity codes and User-Defined Fields (UDF) In Detail Primavera is an enterprise project portfolio management software. It includes project management, scheduling, risk analysis, opportunity management, resource management, collaboration, and control capabilities, and integrates with other enterprise software such as Oracle and SAP’s ERP systems. This course aims to teach participants how projects are planned, scheduled, and controlled, including understanding the project management processes applicable to your projects with Oracle Primavera P6 PPM Professional. You will start with understanding the basics of the software. Moving ahead, you will look at formatting the display aspects of the software. Then you will look at the group, sort, and layouts of this tool. Following that, you will understand, apply, create, and modify filters. After that, you will execute printing, reports, and look at the visualizer. Finally, you will explore other methods of organizing project data. By the end of the course, you will successfully learn how to format, print, and run reports with Oracle Primavera Project Manager P6 PPM Professional Client.
    Note: Online resource; Title from title screen (viewed July 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 87
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 59 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for a special conversation on incremental architecture with Neal Ford and software architect and Agile-transformation pro Allen Holub. They’ll explain why you should create an architecture incrementally as you work so that you can easily modify that architecture as new requirements emerge—and discuss how to do so. (The solution is to build around a domain-focused metaphor that allows for incremental changes while maintaining coherence throughout.) Neal and Allen will spend a few minutes covering the fundamentals of incremental architecture, then tell you what you need to know to stay ahead of the curve. What you’ll learn and how you can apply it Learn the benefits of incremental architecture Understand how to create your architecture incrementally See what’s coming next with software architecture This recording of a live event is for you because… You’re looking for ways to build an architecture that can evolve with the changing needs of your business. Recommended follow-up: Read Fundamentals of Software Architecture (book) Read Building Evolutionary Architectures (book) Read RESTful Web Microservices Cookbook (book) Explore Software Architecture Fundamentals Beyond the Basics (video course) Attend Software Architecture Superstream: Software Architecture Fundamentals—Comparing Architectural Styles (September 15) Take Architecture: The Hard Parts (live online training course with Mark Richards and Neal Ford)
    Note: Online resource; Title from title screen (viewed September 2, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 88
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781803248653
    Language: English
    Pages: 1 online resource (1 video file, approximately 12 hr., 48 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn Scala; learn Spark, Hadoop, ETL pipeline from AWS S3 to AWS RDS using Spark from scratch About This Video Relate the practical concepts of Scala and Spark with real-world problems Implement any project from scratch that requires Scala and Spark knowledge Know the theoretical and practical aspects of Scala and Spark In Detail The course Scala from Beginner to Pro is refreshingly different. The well-thought-out quizzes and mini projects that cover all the important aspects will make your Scala learning journey that much easier. This course includes an overview of Hadoop and Spark with a hands-on project with Scala Spark. Right through the course, every theoretical explanation is followed by practical implementation. This course is designed to reflect the most in-demand Scala skills that you will start using right away at the workplace. The course is simple to follow and understand. Expressive, exhaustive, and practical with live coding sessions and replete with quizzes. Rich with state-of-the-art and up-to-date knowledge of this field. The 6 mini-projects and one Scala Spark project included in this course are a vital component of this course. These projects present you with a hands-on opportunity to experiment for yourself with trial and error. You get a chance to learn from the mistakes you make. Importantly, it’s easy to understand the potential gaps that might exist between theory and practice. Who this book is for This course is for absolute beginners who want to learn Spark and Scala along with its implementation in realistic projects; people who want to develop smart solutions; data scientists; and machine learning experts.
    Note: Online resource; Title from title screen (viewed August 27, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 89
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801815956
    Language: English
    Pages: 1 online resource (1 video file, approximately 22 hr., 11 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Learn to build, manage, and deploy the microservices using .NET Core. About This Video Strongly practical course about implementing and managing the microservices Making use of cloud-agnostic, open-source tools to build, monitor, test, and deploy the microservices Discussing and resolving real-life challenges when it comes to building distributed systems In Detail Building the microservices is not an easy job. Whenever it comes to any type of distributed system design, challenges such as data consistency, dealing with network issues or latencies, security, testing, monitoring, tracing, deploying and orchestrating the set of independent applications might quickly become a very complex and overwhelming task. Not only should the software engineer be aware of the typical web API design but such an engineer should also understand very well the event-driven architecture, messaging infrastructure, consistency models, contract testing, or the observability patterns to be able to properly implement and then deploy the microservices. The aim of this course is to provide specialized knowledge about dealing with such challenges and also introduce a set of open-source, cloud-agnostic tools (Consul, Grafana, Prometheus, Jaeger) that might be of great use when developing distributed applications. Who this book is for The course is dedicated for both, the developers who are starting their microservices journey as well as experienced programmers who would like to organize their knowledge and learn about the practical patterns, techniques, and tools to solve the challenges related to building distributed systems.
    Note: Online resource; Title from title screen (viewed August 30, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 90
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801074537
    Language: English
    Pages: 1 online resource (1 video file, approximately 37 hr., 7 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: Use Python to learn algebra, calculus, graphing, trigonometry, conics, and more math topics! About This Video 33+ hours of instruction that includes Python coding, visualization, loops, variables, and functions Each video has at least one hands-on coding/math exercise and each section ends with "bug hunts" Overview of beginner and advanced mathematics, from solving for “x” to computing integrals In Detail Many people don’t know that Python is a really powerful tool for learning math. Sure, you can use Python as a simple calculator, but did you know that Python can help you learn more advanced topics in algebra, calculus, and matrix analysis? That’s exactly what you’ll learn in this course. The glaring question would be: if you don’t know anything about Python, then how will you code? Don’t worry, this course is aimed at complete beginners; the instructor will take you through every step of the code. You don’t need to know anything about Python, although it’s useful if you already have some programming experience. Even if you are not at all good at math, you will be amazed at how much better you can learn math using Python as a tool to help with your courses or your independent study. And that’s exactly the point of this course: Python programming as a tool to learn mathematics. This course is designed to be the perfect addition to any other math course or textbook that you are going through. A lot of hands-on practical exercises come with this course, each video has at least one hands-on coding/math exercise and each section ends with “bug hunts“ where you get to find and fix math-coding errors. By the end of the course, you will be able to understand very complex mathematical concepts with a bit of coding in Python. Who this book is for This course is for absolute beginners and individuals who are looking to use computers as a learning tool and developers who want to improve their math skills. If you are in middle/high school, university, or are returning to math as an independent learner or a data professional who wants to brush up on math and Python skills, you will definitely benefit from this course. If you are bored and looking for a fun intellectual challenge, then go for it. You need not have any prior experience or knowledge in coding; just be ready with your learning mindset at the highest level.
    Note: Online resource; Title from title screen (viewed August 25, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 91
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801071413
    Language: English
    Pages: 1 online resource (1 video file, approximately 2 hr., 50 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Perform data science with KNIME. Learn how to do data cleaning, AI machine learning, ETL, and data preprocessing with KNIME About This Video No coding required Solve data cleaning challenges together and enhance your basic KNIME skills Learn the fundamentals for NLP tasks in KNIME using only KNIME nodes In Detail Data cleaning is always a big hassle, especially if we are short on time and want to deliver crucial data analysis insights to our audience. KNIME makes the data prep process efficient and easy. With KNIME, you can use the easy-to-use drag-and-drop interface, if you are not an experienced coder. But if you know how to work with languages such as R, Python, or Java, you can use them as well. This makes KNIME a truly flexible and versatile tool. In this course, we will learn how to use additional helpful KNIME nodes not covered in the other two classes. Solve data cleaning challenges together for different datasets. Use pre-trained models in TensorFlow in KNIME (involves Python coding). Also, learn the fundamentals for NLP tasks (Natural Language Processing) in KNIME using only KNIME nodes (without any additional coding). By the end of this course, you will be able to use KNIME for data cleaning and data preparation without any code. Who this book is for This course is designed for aspiring data scientists and data analysts who want to work smarter, faster, and more efficiently. This course is also for anyone who wants to learn how to effectively clean data or encounter various data issues (for example, format) in the past and is looking for a solid solution, and who is familiar with KNIME as no basics are covered in this course. Basic knowledge of machine learning is certainly helpful for the later lectures in this course. Note: Tableau Desktop and Microsoft Power BI Desktop are optional.
    Note: Online resource; Title from title screen (viewed August 24, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 92
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 16 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local ; Electronic videos
    Abstract: It is essential to have a strategy defined when figuring out your career. Starting out is difficult. Regardless what your background is, you need to have a clear idea how to get to your dream job. Even if you are not in technology and want a data-science position, you have to have a clear path towards data-science. In this video I'll cover some of the stories that allowed me to gain perspective in my career in tech, along with some advice that can help you out. Topics include: * Find some techniques to define your career and next steps * Design a custom strategy to help answer career questions * Accurately determine what might be a good job or position Useful links: * Start a career in Tech * Learn Python from scratch
    Note: Online resource; Title from title screen (viewed September 13, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 93
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 43 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to ruthlessly scrape data using APIs you discover as well as cut and paste. Topics include: * Business Analytics * Data Science * Google Colab * Jupyter * Scraping * Cut and Paste * Google Sheets * Cleaning Data * Using Pandas with found data * Using the Twitter and Pandas API
    Note: Online resource; Title from title screen (viewed September 4, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 94
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 59 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Learn to build Computer Vision MVPs quickly using AutoML. Topics include: * Getting models into production * Apple Create ML * Google Vertex AI * Image Classification * CoreML * Tensorflow * Rapid Prototyping * GCP * Azure * Containers * Kaizen
    Note: Online resource; Title from title screen (viewed August 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 95
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484269770
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 13 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: This video presents patterns and practices for making Blazor WebAssembly applications run fast at their optimal speeds. You’ll learn patterns and best practices for performance that broadly cover two aspects of Blazor development: Firstly, you’ll learn about optimizing application download size so your applications load and execute without undue lag. Secondly, you’ll learn techniques for reducing the number of updates that Blazor needs to apply to user interface elements in the browser’s DOM. While Blazor WebAssembly is already designed to provide strong performance, the techniques in this video provide you additional tools and techniques that you can employ in order to delight your users and gain a competitive edge against your competition. Techniques taught in this video such as assembly trimming, lazy loading, and reducing unnecessary user interface updates can put your applications a step ahead of your competition when it comes to creating fast applications that users will want to return to again and again. What You Will Learn Work with lazy-load assemblies to incrementally download your application’s code Use virtualization to avoid rendering UI elements not currently visible Create lightweight components that reduce unnecessary UI updates Reduce unnecessary rendering of component subtrees Optimize JavaScript interop speeds Limit the number of components and reduce frequent events Who This Video Is For Blazor developers who have experience building WebAssembly applications. Especially for those developers who want to gain an edge on their competition through faster application performance.
    Note: Online resource; Title from title screen (viewed January 28, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 96
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Apress | Boston, MA : Safari
    ISBN: 9781484269190
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 1 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: A hit-the-ground-running introduction to the expansive world of understanding your data. If you fail to understand what all the hoopla is around data analytics, but you know you need to jump in somewhere, this video is for you. Learning a handful of techniques you’ll get started with turning great quantities of data into useful information that can help you better understand your own world of data. This video is a user-friendly entry point that teaches you how to use machine learning algorithms to move from the trenches of data to making informed data-driven decisions. It begins with a brief introduction to data analysis and guidance on how to set up a development environment in Databricks. From there you will investigate data using popular tools such as SQL and Python on top of Apache Spark. From there you will move on to learning how to clean up data and prepare it for use in a machine-learning algorithm. The final segment offer guidance for presenting the results visually. What You Will Learn Investigate small and large datasets using SQL and Python Clean and prepare data for advanced analytics Run machine learning algorithms Show data results using visualizations Who This Video Is For People who work with data, including analysts, data engineers, data scientists, and the data curious. Basic knowledge about the data field is assumed, but no special skills are needed.
    Note: Online resource; Title from title screen (viewed January 19, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 97
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Packt Publishing | Boston, MA : Safari
    ISBN: 9781801078368
    Language: English
    Pages: 1 online resource (1 video file, approximately 8 hr., 7 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Prepare for the PgMP certification with this course and take your career in project management to the next level About This Video Gain the skills needed to pass the PgMP certification exam Get a solid understanding of the program management life cycle phases Learn how to plan and manage projects effectively in the real world In Detail The Program Management Professional (PgMP) accreditation from the Project Management Institute (PMI) is the subsequent stage after the Project Management Professional (PMP) certification and addresses the network of professionals who are answerable for the planned management of various undertakings that are in arrangement with authoritative decisions. This course will help you to learn everything that is needed to pass the PgMP Certification exam. The course starts with an overview of the PgMP certification exam. Next, you will cover the basic concepts of program management and learn its life cycle phases. Moving along, you will become familiar with concepts related to program strategy alignment, such as charter, environmental analysis, strategy, and program risk. Next, you will find out the benefits of program management and gain an understanding of program stakeholder engagement. Later, you will become familiar with program governance practices and program life cycle management. Finally, you will explore supporting processes, such as the program definition phase, program delivery phase, and program closure phase. By the end of this course, you will have all the knowledge needed to pass the PgMP certification course.
    Note: Online resource; Title from title screen (viewed February 26, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 98
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : O'Reilly Media, Inc. | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 57 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Join us for a special conversation on GitOps with Sam Newman and Weaveworks founder Alexis Richardson. They’ll share what led to the need for GitOps, fascinating aspects of the discipline, and interesting convergence areas—along with insights that will help you approach the most challenging aspects of building and managing evolving architectural needs. This is your chance to ask Sam and Alexis anything you want about GitOps, Kubernetes, or their own career journeys. They’ll spend a few minutes covering the trends that are influencing infrastructure and operations, then tell you what you need to know to stay ahead of the curve. What you'll learn-and how you can apply it Explore the origins of GitOps and understand why it’s needed See what’s coming next for infrastructure and ops This training course is for you because... You want the chance to ask Sam Newman and Alexis Richardson your questions around working using GitOps. You’re looking for ways to use GitOps to support your production goals. You want to become well versed in the foundations and best practices of pipeline creation and deployment. Prerequisites: Come with your questions for Sam Newman and Alexis Richardson Have a pen and paper handy to capture notes, insights, and inspiration Recommended follow-up: Read Building Microservices , second edition (book) Read Version Control with Git , second edition (book) Read Kubernetes: Up and Running , second edition (book) Watch “ GitOps 101 ” (conference session) Attend GitOps First Steps (live online training course with Ian Miell) Attend Git Next Steps (live online training course with Raju Gandhi)
    Note: Online resource; Title from title screen (viewed March 9, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 99
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 6 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: Get started with MLOps and Github Actions to package a container with an ONNX model that does live inferencing with a Flask application. By using Azure ML, learn how to download the large ONNX model into the Github Action workflow, package it as a container and then push it to a container registry. For reference use the https://github.com/alfredodeza/flask-roberta repository Topics include: * Create a container that does live inferencing with Flask and the ONNX runtime * Package the model and verify it works locally * Setup a Github Action to authenticate to Azure ML and download a previously registered model * Build the new container as a Github Action, authenticate to Docker Hub or Github Packages * Push the new container to the Github registry or any other registry like Docker Hub
    Note: Online resource; Title from title screen (viewed March 5, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 100
    Online Resource
    Online Resource
    [Erscheinungsort nicht ermittelbar] : Pragmatic AI Solutions | Boston, MA : Safari
    Language: English
    Pages: 1 online resource (1 video file, approximately 1 hr., 14 min.)
    Edition: 1st edition
    Keywords: Electronic videos ; local
    Abstract: In this video you walk through the foundational concepts of Machine Learning.
    Note: Online resource; Title from title screen (viewed February 27, 2021) , Mode of access: World Wide Web.
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
Close ⊗
This website uses cookies and the analysis tool Matomo. More information can be found here...