Author: admin
-
A Brief History of Red Hat Linux
Red Hat Enterprise Linux is one of a number of variants (also referred to as distributions) of the Linux operating system and is the product of a U.S. company named Red Hat, Inc., based in Raleigh, North Carolina. The company was founded in the mid-1990s through the merger of two companies owned at the time…
-
Introduction
Arguably one of the most highly regarded and widely used enterprise-level operating systems available today is the Red Hat Enterprise Linux (typically shortened to RHEL and pronounced rell) distribution. Not only is it considered to be among the most stable and reliable operating systems, it is also backed by the considerable resources and technical skills…
-
Red Hat Enterprise 9 Linux Essentials
-
An iOS 17 CloudKit Sharing Tutorial
The chapter entitled An Introduction to iOS 17 CloudKit Sharing provided an overview of how CloudKit sharing works and the steps involved in integrating sharing into an iOS app. The intervening chapters have focused on creating a project that demonstrates the integration of CloudKit data storage into iOS apps. This chapter will extend the project…
-
An Introduction to iOS 17 CloudKit Sharing
Before the release of iOS 10, the only way to share CloudKit records between users was to store those records in a public database. With the introduction of CloudKit sharing, individual app users can now share private database records with other users. This chapter aims to provide an overview of CloudKit sharing and the classes…
-
Drawing Text on a Compose Canvas with drawText
Text is drawn on a canvas using DrawScope’s drawText() function and a TextMeasurer instance. The role of TextMeasurer is to calculate the size of the text drawing based on factors such as font family and size. We can obtain a TextMeasurer instance by making a call to the rememberTextMeasurer() function as follows: Having obtained a…
-
C# 11 Dates and Times
It is a rare application that can be developed without in some way needing to work with dates and times. Recognizing this, the Microsoft engineers responsible for C# gave us the DateTime object. This chapter will look at using this object to work with dates and times in C# based applications. Topics covered include adding…
-
C# 11 String Formatting
In addition to the wide selection of string manipulation functions outlined in the C# Strings lesson, the string class also provides the String.Format() method. The primary purpose of the C# String.Format() method is to provide a mechanism for inserting string, numerical, or boolean values into a string with additional formatting control. The Syntax of the String.Format() Method The general syntax of…
-
C# 11 String Examples
Strings are collections of characters that are grouped together to form words or sentences. If it wasn’t for humans, computers would probably never have anything to do with strings. The fact is, however, that one of the primary jobs of a computer is to accept data from and present data to humans. For this reason,…
-
C# 11 Dictionary Collections
C# dictionaries allow data to be stored and managed as key-value pairs. Dictionaries fulfill a similar purpose to arrays and lists, except each item stored in the dictionary has associated with it a unique key (to be precise, the key is unique to the particular dictionary object) which can be used to reference and access…