Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ethiraric/cpptalksindex
An index for C++ talks
https://github.com/ethiraric/cpptalksindex
conferences cpp cppcon
Last synced: 8 days ago
JSON representation
An index for C++ talks
- Host: GitHub
- URL: https://github.com/ethiraric/cpptalksindex
- Owner: Ethiraric
- License: mit
- Created: 2019-12-04T15:55:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-18T22:18:44.000Z (almost 4 years ago)
- Last Synced: 2024-04-20T07:11:19.974Z (7 months ago)
- Topics: conferences, cpp, cppcon
- Language: C++
- Homepage: https://cpptalksindex.xyz
- Size: 572 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cpptalksindex
An index for C++ talks## Aim
The aim of this is to provide a community-managed tags for C++ conferences.
Both experienced developers seeking to improve on a particular area or beginners looking for new areas to explore may use it to find material to watch.## Adding a talk
Talks are gathered from `db.json`. Copy-pasting should get you the structure:
```json
{
"speakers": ["sample_speaker", "sample_speaker2"],
"title": "",
"conference": "CppCon",
"year": 2020,
"link": "https://www.youtube.com/watch?v=",
"tags": [
"no-tags-yet"
]
},
```## Building the server
Requirements:- `cmake` (tested with cmake 3.18.4)
- A recent C++ compiler, supporting the C++17 standard (tested with gcc 10.2.0)Steps:
```sh
mkdir build && cd build
cmake .. # -GNinja
cmake --build . # Or make / ninja
ln -s ../www . # The server will run fine but 404 if you forget this step
```There should be a `bin/cpptalksindex` binary in `build`.
You can start the server with `./bin/cpptalksindex ../db.json`, which will run the server.
The server listens on port 8485 (hardcoded in `main.cpp`, should you need to change it).