Your email was sent successfully. Check your inbox.

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

Proceed reservation?

Export
Filter
  • English  (20)
  • 2020-2024  (20)
  • 2015-2019
  • 2022  (20)
  • Apress 〈Firm〉,  (20)
  • Nonfiction films  (20)
  • Aufsatzsammlung
  • Graue Literatur
Datasource
Material
Language
  • English  (20)
Years
  • 2020-2024  (20)
  • 2015-2019
Year
  • 1
    Language: English
    Pages: 1 online resource (1 video file (59 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.54
    Keywords: Microsoft Excel (Computer file) ; Microsoft software ; Electronic spreadsheets Computer programs ; Database management ; Logiciels Microsoft ; Tableurs ; Logiciels ; Bases de données ; Gestion ; Instructional films ; Nonfiction films ; Internet videos ; Films de formation ; Films autres que de fiction ; Vidéos sur Internet ; Webcast
    Abstract: The introductory Excel tutorial covers topics related to entering data and demonstrates various ways of accepting and deleting data. You'll learn how to justify data within a cell and then have an opportunity to put it to practice. You will experiment with SmartLookup to search for anything on the Internet, whether it be Excel related or not, and then learn to place that information into an Excel pane. You will try out the Ribbon, a feature which drives the user-friendly resources in Excel. You'll learn the parts of the ribbon: tabs, groups, and command buttons and see how to hide and unhide the ribbon. Practice using short keys to run the commands and learn how to customize the ribbon to meet your needs. Add and remove commands, tabs and groups, change their order, add commands not normally used, then reset your ribbon back to the way it was before you made your changes. Finally, as Office 365 is is a product that regularly goes through changes, methods of getting help to stay up on the latest changes and support are demonstrated, including how to access Excel's built-in training videos. What you will learn • Know what Excel is and know some of its capabilities • Create, save, and open a workbook • Identify the current cell • Use the ribbon • Enter data in a worksheet • Get Help by using Screen Tips and the "Smart Lookup" feature This video is for anyone who wants to get up to speed on the many useful features and shortcuts of Excel.
    Note: Online resource; title from title details screen (O'Reilly, viewed March 30, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 2
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 17 min.)) , sound, color.
    Edition: [First edition].
    DDC: 004.165
    Keywords: iOS (Electronic resource) ; Operating systems (Computers) ; Swift (Computer program language) ; Application software Development ; Systèmes d'exploitation (Ordinateurs) ; Swift (Langage de programmation) ; Logiciels d'application ; Développement ; operating systems ; Instructional films ; Nonfiction films ; Internet videos ; Films de formation ; Films autres que de fiction ; Vidéos sur Internet ; Webcast
    Abstract: Use a declarative approach to build UIs for iOS and macOS. Start with a review of what declarative programming is by building with SwiftUI. We will review all the basic SwiftUI components needed for a modern iOS app. Once we have a solid understanding of SwiftUI, we will cover reactive programming with the Combine framework. Understanding these components will allow us to incorporate SwiftUI with the Combine framework and make a fully declarative/reactive (MVVM) application. The goal is not to make you an expert but build a solid foundation of knowledge and instill the confidence to keep exploring these new technologies. With SwiftUI and the Combine framework, you can take a step closer to a Functional Reactive Programming development process. What You'll Learn Understand the relevant architectures and underlying components of Swift Work with SwiftUI to build basic UIs Build a full app with SwiftUI and the Combine framework Who This Video Is For Developers working on iOS or macOS apps. Familiarity with Swift is beneficial.
    Note: Online resource; title from title details screen (O'Reilly, viewed March 10, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 3
    ISBN: 9781484282816 , 1484282817
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 10 min.)) , sound, color.
    Edition: [First edition].
    DDC: 006.686
    Keywords: Image processing Digital techniques ; Photography Digital techniques ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Getting Started with Paint.NET teaches those brand-new to image editing how to use this free Widows-based image editor to make digital photos look their best, as well as how to create digital art. This video course provides step-by-step guidance in downloading and learning about the interface, tools, and features of Paint.NET. It also provides guidance in acquiring and installing third-party plugins to expand the program’s capabilities.
    Note: Online resource; title from title details screen (O’Reilly, viewed June 2, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 4
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484285985 , 1484285980
    Language: English
    Pages: 1 online resource (1 video file (35 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.3/82
    Keywords: iOS (Electronic resource) ; Application software Development ; iOS (Electronic resource) ; Application software ; Development ; Instructional films ; Internet videos ; Nonfiction films ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Spice up the design of your apps by adding functionality for user customization. You'll program your apps to allow users to pick different icons. From assets you've imported and made available, users can update their homescreen icon for your app to reflect the season, match their wallpaper, or sync with a current Holiday. This meshes nicely with the newer implementation of widgets to bring more life to users' homescreens and your apps. What You'll Learn Create a basic Xcode project for iOS Import assets for icons Program a UI element for picking between icons Who This Video Is For Developers with some experience using Xcode and Swift.
    Note: Online resource; title from title details screen (O'Reilly, viewed June 21, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 5
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 41 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.13/3
    Keywords: Python (Computer program language) ; Application program interfaces (Computer software) ; Application software Development ; Computer multitasking ; Python (Langage de programmation) ; Interfaces de programmation d'applications ; Logiciels d'application ; Développement ; Fonctionnement multitâche ; APIs (interfaces) ; Instructional films ; Nonfiction films ; Internet videos ; Films de formation ; Films autres que de fiction ; Vidéos sur Internet ; Webcast
    Abstract: Asynchronous Python Programming using asyncio and async/await lets you write code that runs many processes concurrently. It makes your code more responsive and stops it from wasting time waiting for slow file and internet access. It is simpler to write, easier to reason about, and uses less memory than threads and processes. We start the video with an overview of asyncio, showing the building blocks and core syntax in a few simple examples. Next, you will see how to make normal Python code work in an asynchronous environment, to minimize blocking and facilitate cooperative multi-tasking. Further, we cover an asyncio use-case working with network connections such as web servers using asynio's streams API, followed by communication between coroutines and synchronization of coroutines. We will also look at using the asyncio library to easily wrap blocking code into threads and processes, and some non-blocking replacement libraries used with asyncio such as aiohttp and aiofiles. The uvloop and unsync libraries will be discussed as ways to speed up and simplify your asyncio code. The following section covers writing more robust asyncio code to test and debug your code, handle stuck tasks using time out, logging and error handling and task management. Having gained a firm understanding of how to code using asyncio, the course finishes with a look under the hood. This starts by walking you through a hand-coded example of an event loop (the core of asyncio), an overview of the different types of awaitables and some useful functions of the event loop which gives you fine grain control What you will learn: What are the differences between asyncio, threads and processes How to run code concurrently using coroutines, asyncio, and async/await How to work with network connections using streams How to write robust and modern asynchronous code How asyncio works and how to use the low level functions for fine-grain control Who this video is for Intermediate to experienced Python programmers who want to speed up existing Python code and make it more responsive by using async/await and asyncio.
    Note: Online resource; title from title details screen (O'Reilly, viewed March 10, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 6
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484287668 , 1484287665
    Language: English
    Pages: 1 online resource (1 video file (1 hr.)) , sound, color.
    Edition: [First edition].
    DDC: 776
    Keywords: Adobe Photoshop ; Adobe Illustrator (Computer file) ; Logos (Symbols) Design ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Learn how to take your client's logo from a flat 2-dimensional business card and turn it into a polished, three-dimensional design for use on merchandise using Photoshop. In this video, you will learn how to place the logo as a smart object in the Photoshop and to modify it with various effects. You will next see how to make altercation as per client request and visualize it in Photoshop. Next, you will learn to incorporate the logo on various merchandise for your client and show it on Photoshop to clients. What You Will Learn Place logos as smart objects in Photoshop See how to open Smart Object Layer to make alterations Learn to incorporate Logo on various merchandise Who Is This Video For Beginners who have little knowledge of Adobe's Illustrator and Photoshop and want to learn how to design logos.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 18, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 7
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    Language: English
    Pages: 1 online resource (1 video file (53 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.2762
    Keywords: JavaScript (Computer program language) ; JavaScript (Langage de programmation) ; Instructional films ; Nonfiction films ; Internet videos ; Films de formation ; Films autres que de fiction ; Vidéos sur Internet ; Webcast
    Abstract: Learn how to build high-performing Java 17 applications using the GraalVM 21.3 Native Image compiler tool. You'll start with an introduction to GraalVM, then dive into its architecture and the benefits of running applications on GraalVM. This video also covers polyglot programming, and how to profile applications for analyzing its memory consumption and performance. What You Will Learn Get started with GraalVM while using JDK 17 Dive into GraalVM, its architecture and more Running code written in different languages on the same VM. Build a high-performing Java application with native image code and more Who This Video Is For Java programmers, software developers and engineers who are interested in learning about the capabilities of the GraalVM Native Image compiler tool. Prior experience with Java is recommended.
    Note: Online resource; title from title details screen (O'Reilly, viewed March 30, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 8
    ISBN: 9781484282830 , 1484282833
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 11 min.)) , sound, color.
    Edition: [First edition].
    DDC: 006.686
    Keywords: Image processing Digital techniques ; Photography Digital techniques ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Digital Art Creation Using Paint.NET teaches those brand-new to image editing how to use this free Widows-based image editor to create digital art. This video course provides step-by-step guidance in using Paint.NET to create raster illustrations using the available tools, as well as using Artistic Effects. After an overview of Paint.NET's drawing tools, shape tools, and effects, the course progresses into drawing simple illustrations and backgrounds, and then to applying oil painting, pastel, and pencil effects.
    Note: Online resource; title from title details screen (O’Reilly, viewed June 2, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 9
    ISBN: 9781484282847 , 1484282841
    Language: English
    Pages: 1 online resource (1 video file (59 min.)) , sound, color.
    Edition: [First edition].
    DDC: 006.6
    Keywords: Image processing Digital techniques ; Computer graphics ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: FotoSketcher is a free (and easy to use) Windows-based program that lets anyone turn photographic images into impressive digital art with just a few mouse clicks. There are more than 20 different styles available, from pencil sketches to watercolor or oil paintings, pen & ink drawings, abstract art and cartoons. Phillip Whitt reviews the basics of digital art creation using FotoSketcher. This fun and easy-to-follow course will show the viewer how to go from photo to painting (landscapes, architecture, portraits, etc.) in seconds!
    Note: Online resource; title from title details screen (O’Reilly, viewed June 2, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 10
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484289020 , 1484289021
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 14 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.74
    Keywords: Blockchains (Databases) ; Microsoft Azure (Computing platform) ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: This video shows how to use blockchain technology in Azure SQL and SQL Server to provide an immutable record of data change over time, and to prove and attest to business partners that your data is accurate and has not been tempered with. You'll learn about the new, Ledger tables feature in Azure SQL and soon to be in SQL Server 2022 that enables this blockchain feature set. This video shows how Ledger-enabled tables protect your data from even high-privileged users, preventing even database and system administrators from making changes without a record of those changes being made. Also covered in this video is the older feature set around system-versioned, temporal tables. You'll learn how temporal tables are used as the base infrastructure for maintaining the blockchain history in Ledger tables. The video shows how Ledger provides additional protection to ensure that - unlike the case with just temporal tables - rows are cryptographically hashed to ensure against tampering. You can even combine both features, temporal and ledger tables; while ledger tables protect the data, temporal tables allow you to easily see the state of the data on a specific time point. What You Will Learn Understand the technology behind Azure SQL Ledger Create a database with ledger-enabled tables Combine ledger and system-versioning technology in a single table Modify the data in the ledger-enabled table Change the structure of ledger-enabled tables Verify that the ledger data has not been tampered with Understand ledger technology limitations Who This Book Is For For advanced database administrators of Azure SQL Databases who are required to prove that sensitive data has not been tampered with. For administrators requiring a tamper-proof record of history over time. For those who are running SQL Server 2022 either on-premises or through Managed Instances who have the same needs.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 18, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 11
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484288061 , 1484288068
    Language: English
    Pages: 1 online resource (1 video file (51 min.)) , sound, color.
    Edition: [First edition].
    DDC: 658/.05
    Keywords: Business Data processing ; Application software Development ; Artificial intelligence ; Human-computer interaction ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: This course will help you in your day to day journey with SAP. It covers how to find and use Parameter Id in SAP. Parameter Id personalizes all the daily transaction code and reports you are running and helps you to post and get data based on your requirement. You will learn about the usage of personal value list. This helps SAP users to store their data points inside SAP and use it whenever needed. This course also covers how to create layouts and variants so that you can get different reports and selection based on your daily requirement. This process helps tremendously in reducing error and confusion as you have all the data points pre built. Additionally, you will learn how you can default the values for certain fields in a transaction code so that the number of entries you have to key is much less and it's ready for automation. Finally, you can learn how to default the values in SAP FIORI apps which is the future of user experience and gives the flavor of buying in amazon shopping while running in SAP. This course will help you use SAP in a more productive way with less clicks and optimizing your work. This course will make you the driver that SAP needs it to operate. What you'll learn: how to create default layout and variants How to change your SAP themes and play with different SAP options Learn personal value list which will help you to move all your excel cheat sheet stored in SAP Study parameter Id which will help you to enter less duplicate stuff Who is this book for: Beginning to intermediate end users, SAP S/4HANA users, SAP ECC.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 17, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 12
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484286142 , 1484286146
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 29 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.13/3
    Keywords: Java (Computer program language) ; Computer programming ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: This video provides you with instruction in the fundamentals of Java. You will begin by learning how to set up a programming environment on your personal computer using freely available open-source tools. Once set up, you will learn how to model the real world in a program using the various data types available to you. From there, you learn about expressions and statements that allow you to do useful work. Organizing code into classes and methods comes next. Learning to program involves acquiring several skills, especially if your goal is to become a professional programmer. This first video in the Java Tutorial Series helps you take the first steps toward the goal of programming in Java at the professional level. You will learn how and why to use the syntax of the Java language. But more important than just the syntax, this course teaches you the skills you will need to develop code as part of a team in a professional working environment. What You Will Learn Establish a Java development environment on your computer Write and run basic Java programs that can display information with just a text editor Learn about and use the primitive data types available in Java Solve a range of basic math problems taken from everyday life such as calculating loan payments for money that is borrowed Understand the concepts of structured programming and object-oriented programming Control how your code can be used by applying access control Who This Video Is For For those with little or no experience in programming who wish to learn the Java language. For those fluent in other languages who are making the transition into Java programming.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 18, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 13
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    Language: English
    Pages: 1 online resource (1 video file (43 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.1/33
    Keywords: Java (Computer program language) ; Java (Langage de programmation) ; Instructional films ; Nonfiction films ; Internet videos ; Films de formation ; Films autres que de fiction ; Vidéos sur Internet ; Webcast
    Abstract: Learn the many new features, enhancements, and updated technologies in the recent long-term support (LTS) release of Java Platform, Standard Edition (Java SE) 17. This video offers an overview of the JDK Release Process, differences between the more frequent non-LTS and the less frequent LTS releases, and various kinds of features such as preview, experimental, incubation and stable. You will understand how to enable and use preview features, as well as the steps to download the latest Java Development Kit (JDK). You'll also gain insight into the deprecation plan of some unused or obsolete APIs which will streamline the future releases of Java SE platform. What You Will Learn Understand what you need to know before upgrading to Java 17 Get familiar with the Java release process Explore the new features and capabilities of Java SE 17 in detail Upgrade to Java SE 17 Enable and Evaluate Preview features of Java SE 17 Who This Video Is For New programmers and software developers, or even some experienced programmers and developers in Java who are new to Java 17.
    Note: Online resource; title from title details screen (O'Reilly, viewed March 30, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 14
    ISBN: 9781484282823 , 1484282825
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 19 min.)) , sound, color.
    Edition: [First edition].
    DDC: 006.686
    Keywords: Image processing Digital techniques ; Photography Digital techniques ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Basic Photo Editing Using Paint.NET teaches those new to image editing how to use this free Widows-based image editor how to make photos look their best. This video course teaches the (somewhat) experienced viewer how to use Paint.NET to edit, retouch, and restore digital photos. Viewers will learn how to correct tone, color, and contrast in images with tonal problems. They’ll also learn to repair damage, change backgrounds, add color to black and white images, and more.
    Note: Online resource; title from title details screen (O’Reilly, viewed June 2, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 15
    ISBN: 9781484282854 , 148428285X
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 32 min.)) , sound, color.
    Edition: [First edition].
    DDC: 004.67/8
    Keywords: Internet of things ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: This video will teach you how to build a cluster of IoT devices using only .NET components. After viewing it you will be able to build a complete distributed IoT solution using .NET 6, SignalR and Blazor. This videos explains how SignalR can substantially simplify two-way real-time communication between the server and its clients. Viewers will learn how to build and manage clusters of IoT devices using only .NET and will see, by example, how to build an IoT device management web interface without having to learn JavaScript
    Note: Online resource; title from title details screen (O’Reilly, viewed June 2, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 16
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484282922 , 1484282922
    Language: English
    Pages: 1 online resource (1 video file (31 min.)) , sound, color.
    Edition: [First edition].
    DDC: 331.2/1649
    Keywords: Employee stock options ; Finance, Personal ; Employee stock options ; Finance, Personal ; Instructional films ; Internet videos ; Nonfiction films ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: The focus of this video will be on how to navigate the complexities of employee stock options and look at the ways to get the most value from them. While your 401(k) and home can be valuable sources of wealth, your employee stock options could potentially be worth much more. As seen with companies like Microsoft, Facebook and Amazon, employees can become millionaires. Yet employee stock options can be extremely complicated and risky. Making a wrong decision on taxes, for example, can be costly and this video will help you navigate it. What You Will Learn · The main types of options: nonqualified stock options and incentive stock options. · How to look at other equity compensation, like restricted stock and employee stock purchase plans (ESPPs). · How to evaluate the risks of employee stock options. Who This Video is For Employees, especially ones working in the tech world.
    Note: Online resource; title from title details screen (O'Reilly, viewed June 21, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 17
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484282229 , 1484282221
    Language: English
    Pages: 1 online resource (1 video file (56 min.)) , sound, color.
    Edition: [First edition].
    DDC: 776
    Keywords: Adobe Photoshop ; Adobe Illustrator (Computer file) ; Logos (Symbols) Design ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Learn how to take your client's logo from a flat 2-dimensional business card and turn it into a polished, three-dimensional design for use on merchandise using Photoshop. In this video, you will learn how to create a logo in Illustrator that can later be modified in Photoshop. You'll start by setting up your Illustrator workspace by importing a client's logo for tracing using the Pen and Shape Tools. Next, you'll see how to add text and effects and how to place the logo as a Smart Object in Photoshop for quick modifications. What You Will Learn Set up Illustrator and import image for tracing Understand Symbols panel and how to use it Add color and graphic styles to enhance the logo Who Is This Video For Beginners who have little knowledge of Adobe's Illustrator and Photoshop and want to learn how to design logos.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 18, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 18
    ISBN: 9781484286784 , 1484286782
    Language: English
    Pages: 1 online resource (1 video file (59 mi n.)) , sound, color.
    Edition: [First edition].
    DDC: 004.67/82
    Keywords: Oracle (Computer file) ; Cloud computing ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Learn how to setup an Oracle cloud account in Oracle's Cloud Infrastructure (OCI). Experiment with provisioning and using the latest version of Oracle's enterprise-level database. Use Oracle's interface to create tables, manipulate data, and test new features. Even learn to create Blockchain tables, a new table type useful for when immutable records of change over time are needed. All of this can be done for free. The skills you learn from using the free access translate directly to Oracle's paid cloud offerings, making you more valuable to employers who are invested in Oracle's cloud platform. Once your database is provisioned, you can use Oracle's cloud tools to design and manage database objects. This video shows you how to design your database using Oracle's graphical cloud database modeler. Then you'll learn to use Oracle's web-based, graphical tools to explore your database, and to create and query database objects such as users and tables. You will also learn how to connect to OCI databases in the cloud directly from on-premises servers via locally installed SQL client software. This gives you a flexible set of tools to explore Oracle's cloud feature set using tools both on premises and in the cloud. What You Will Learn Create a free Oracle Cloud Infrastructure (OCI) account Provision databases and virtual machines Manage your database and its users from the OCI interface Use graphical tools to explore your database and create users and tables Design your database using Oracle's graphical cloud database modeler Create Blockchain tables to preserve immutable historical records Who This Video Is For For Oracle developers and database administrators who want free access to the latest Oracle technologies in the cloud. For those who want to learn about Oracle's cloud platform and host their databases in the cloud.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 18, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 19
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    ISBN: 9781484287569 , 1484287568
    Language: English
    Pages: 1 online resource (1 video file (1 hr., 9 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.3
    Keywords: Application software Development ; Instructional films ; Nonfiction films ; Internet videos
    Abstract: Angular is a framework that provides rich and interactive features for single page application, increase development speed and faster user experience. This video course will help you create a strong foundation on angular framework. The video starts with an introduction on angular covering the basics and installation section of it. Moving forward, you will learn components of angular, it will discuss the different parts of angular so that you'll be able develop the app easily. As we progress, the author talks about the binding part of the angular like forms of module, data binding, input and output, validations and much more. After completion of this course you will easily develop a single page application and understand the basic concepts of angular as framework. What you'll learn: Learn the installation process in angular Develop app in an easier way Study the forms and validations in angular Who is this video for: Professionals interested to develop their career in the field of web development.
    Note: Online resource; title from title details screen (O'Reilly, viewed October 18, 2022)
    Library Location Call Number Volume/Issue/Year Availability
    BibTip Others were also interested in ...
  • 20
    Online Resource
    Online Resource
    [Place of publication not identified] : Apress
    Language: English
    Pages: 1 online resource (1 video file (26 min.)) , sound, color.
    Edition: [First edition].
    DDC: 005.3/82
    Keywords: iOS (Electronic resource) ; Application software Development ; Logiciels d'application ; Développement ; Instructional films ; Nonfiction films ; Internet videos ; Films de formation ; Films autres que de fiction ; Vidéos sur Internet ; Webcast
    Abstract: Add support for different languages in your iOS apps. You'll start by constructing a basic user interface that's ready for multilingual support. Then add files with strings in different languages. Once you have the basics established, you'll learn to translate via code and also via storyboard. All languages are auto-picked according to each users' system settings. So that your users will always be interacting with your app in their native lan-guage. Adding support for multiple languages and adaptability to your apps will help reach wider audiences of users in different countries. Grow your userbase and support a more diverse and inclusive world! What You'll Learn Create simple UIs via storyboard Add strings in different languages Set app languages to the system device settings Who This Video Is For Intermediate to advanced Swift developers creating iOS apps with the expectation of a global audience.
    Note: Online resource; title from title details screen (O'Reilly, viewed March 10, 2022)
    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...