Skip to content

Commit e87e6f8

Browse files
committed
Save some links
1 parent fed57fe commit e87e6f8

File tree

5 files changed

+35
-2
lines changed

5 files changed

+35
-2
lines changed

src/SUMMARY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@
2424
- [Virtual Call](./cpp/oop/virtual_call.md)
2525
- [STD](./cpp/std/README.md)
2626
- [Regular exressions](./cpp/std/regex.md)
27-
- [String Views](./cpp/std/string_view.md)
27+
- [String views](./cpp/std/string_view.md)
2828
- [Threads](./cpp/std/thread.md)
2929
- [Templates](./cpp/templates/README.md)
3030
- [enable if](./cpp/templates/enable_if.md)
31+
- [Awesome stuff](./cpp/awesome/README.md)
3132

3233
# Cookbook
3334

src/cpp/awesome/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Awesome stuff
2+
3+
- [Dependency injection](https://github.com/gracicot/kangaru)

src/graphics/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,12 @@ shaderc.exe -i ../../thirdparty/bgfx/src -f vs_instancing.sc --varyingdef varyin
99

1010
shaderc.exe -i ../../thirdparty/bgfx/src -f fs_cubes.sc -o fs_cubes.bin --varyingdef varying_cubes.def.sc --type fragment --platform windows --profile s_5_0 -O 3
1111
shaderc.exe -i ../../thirdparty/bgfx/src -f vs_cubes.sc -o vs_cubes.bin --varyingdef varying_cubes.def.sc --type vertex --platform windows --profile s_5_0 -O 3
12+
```
13+
14+
Serialization with Cap'n Proto
15+
16+
```shell
17+
cd graphics\neurons
18+
capnp compile -I"..\thirdparty\capnproto-c++-1.2.0\src" -oc++ neu
19+
ron.capnp
1220
```

src/net/README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
# Network
22

33
- [UDP](./udp.md) (ultra simple client)
4-
- [WebSocket](./websocket.md) client
4+
- [WebSocket](./websocket.md) client
5+
6+
## Web Server
7+
8+
### Not bad
9+
10+
- https://github.com/CrowCpp/Crow
11+
- https://github.com/uNetworking/uSockets
12+
13+
### Meh
14+
15+
- https://github.com/meltwater/served
16+
- https://github.com/pistacheio/pistache
17+
- https://github.com/facebook/proxygen/tree/main
18+
- https://github.com/cesanta/mongoose

src/net/websocket.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
# WebSocket
2+
3+
## WebSocket client
4+
5+
- too much of C but cmake https://github.com/vrtql/websockets
6+
- autogen and no docs https://github.com/payden/libwsclient
7+
- more star than others and C++ not C https://github.com/dhbaird/easywsclient and it has an example here https://stackoverflow.com/questions/69051106/c-or-c-websocket-client-working-example
8+
- with TLS https://github.com/machinezone/IXWebSocket

0 commit comments

Comments
 (0)