-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCPPExamples.txt
54 lines (43 loc) · 2.4 KB
/
CPPExamples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
-------------------------------------------------------------------------------------------------------------
Examples in C++
Environment: Linux, clang or g++, stdc++17
The projects are listed in the order of increasing complexity
-------------------------------------------------------------------------------------------------------------
Development Environment:
I use a Raspberry PI 4 running Ubuntu 20.04 as my development environment for all these projects. From a
laptop I use VS Code and use ssh to get to the Ubuntu system.
I try to minimize external dependencies except the following which are used in many projects :
- boost
- glib
Other libraries like image processing, protobuf, gRPC are used selectively for illustrative purposes.
-------------------------------------------------------------------------------------------------------------
1. Project: Hello
Repo: https://gitlab.com/cpp8/hello.git
2. Project: Dump
Repo: https://gitlab.com/cpp8/dump.git
2a. Project: cli - A template command line util project. using boost.
Repo: https://gitlab.com/cpp8/cli.git
3. Project: Search
Repo: https://gitlab.com/cpp8/search.git
4. Project: Resource
Repo: https://gitlab.com/cpp8/bindata.git
5. Project: Network Geography exploration
Repo: https://gitlab.com/cpp8/netgeo.git
6. Code to graphic with markdown
Repo: https://gitlab.com/cpp8/codemd.git
7. Project Cloner
Repo: https://gitlab.com/cpp8/proj.git
Example template cli project:
Repo: https://gitlab.com/cpp8/cli.git
-------------------
Eclipse IDE on windows + mingw64 is the environment for the following projects.
The dependency is pretty arbitrary. Easily migratable to other platforms
----------------------
1. Project number:
Repo: https://gitlab.com/cpp8/numbers.git
A playground for experimenting with C++ containers and algorithms for number experiments. Major advance over the other project in C# is the support of
arbitrary bases - eg. binary, octal, hexadecimal + decimal for starters. But arbitrary bases such as 7 or 77 could be used. Peruse the code to
understand how different bases are represented in text form.
2. Project dsp:
Repo: https://gitlab.com/cpp8/thinkdsp.git
This is a C++ companion to learning Digital Signal Processing - unashamed copy of the ideas in ThinkDSP the book by Prof Downey.