education, training, data management, information processing, data processing
Computer science in general, and especially programming activities, is a field of knowledge that deals with automation of information processing. Programs can be recognized as a driving force of that automated behavior. To achieve information processing goals programs have to implement algorithms required by the application concerned. In other words, the programs describe how to process data, which represent information relevant to the application. Data management - apart from the implementation of the algorithms – is, therefore, a key issue from the point of view of automation of the entire information processing and computer science in general.
Let's review selected language constructs, patterns, and frameworks targeting data-intensive programming.
The aim of the course is to extend knowledge and skills related to object-oriented programming focusing on interoperability between the computing process and data visualization, archiving and networking environment. Particular emphasis is placed on the identification of solutions that can serve as a certain pattern with the widest possible use over a long-term horizon. Providing a long-term horizon is extremely difficult for such a dynamically developing field. Here, the experience of the author comes to the rescue, who has been employing similar solutions for years using constantly changing programming tools.
In order to ensure the practical context of the discussion and provide sound examples, all topics are illustrated using the C# language and the MS Visual Studio design environment. The source code used during the course is available in this repository. I believe that the proposed principles, design patterns, and scenarios are generic in nature and may be seamlessly ported to other environments. The language and tools mentioned above have been used only to embed the discussion in a particular environment and to ensure that the course is very practical.
The course discusses solutions for practical scenarios regarding various aspects of process data management, i.e. those that are input or output for the business logic of the program. In general, three classes of data have been distinguished:
- streaming: files, network packets
- structural: databases
- graphical: Graphical User Interface (GUI)
The repository is scoped to provide sound examples covering the following topics:
- Introduction
- About the course, information versus data, algorithm versus program, type - what does it mean
- Useful assets: C# language, Visual Studio, GitHub
- Program robustness: exception, unit tests, environment simulation
- Data semantics
- Type concept
- Anonymous type
- Partial types and methods
- Generics
- Data streams
- File and Stream Concepts
- Attributes
- Reflection
- Serialization
- Cryptography basics
- Functional programming basics
- Anonymous function and lambda expression
- Extension method
- Structural Data
- LINQ query and methods syntax
- LINQ to object
- LINQ to SQL
- Graphical data
- Delegates and events
- xaml
- MVVM (Model, View, ViewModel) pattern
NOTE: Unit Test role is code explanation rather than testing the correctness of it.