Skip to content
This repository has been archived by the owner on Jun 14, 2024. It is now read-only.

Commit

Permalink
Automated dump
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 9, 2024
1 parent b52c860 commit 038b45a
Show file tree
Hide file tree
Showing 9 changed files with 1,406 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@

[Zig](Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Zig%20c18ea1f9dbe346b8974cae0f176502e8.md)

[OCaml](Languages%20f264e815b0b44efc9c8a8e4bd5e90850/OCaml%207ac4a3d873f1459b8f257ee61536096d.md)
[OCaml](Languages%20f264e815b0b44efc9c8a8e4bd5e90850/OCaml%207ac4a3d873f1459b8f257ee61536096d.md)

[C](Languages%20f264e815b0b44efc9c8a8e4bd5e90850/C%20df5719a0f55f46ec9b1f024157704f3c.md)
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# C

# Projects

[HTTP Server in C](C%20df5719a0f55f46ec9b1f024157704f3c/HTTP%20Server%20in%20C%20344605f5d3374dfcaa5e894ef2aee1e2.md)

# Resources

- [https://learnxinyminutes.com/docs/c/](https://learnxinyminutes.com/docs/c/)
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# HTTP Server in C

# Resources

- [https://bruinsslot.jp/post/simple-http-webserver-in-c/](https://bruinsslot.jp/post/simple-http-webserver-in-c/)
- https://github.com/bloominstituteoftechnology/C-Web-Server
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,23 @@ echo '{"foo": "bar", "baz": "fuz"}' \
# "key": "foo",
# "value": "bar"
# }
```

---

Combine two JSON Lists

```bash
echo '["foo", "bar"]' > a.json
echo '["baz"]' > b.json

jq '. + input' a.json b.json

# Outputs:
# [
# "foo",
# "bar",
# "baz"
# ]

```
Original file line number Diff line number Diff line change
Expand Up @@ -674,4 +674,4 @@
}

</style></head><body><article id="f264e815-b0b4-4efc-9c8a-8e4bd5e90850" class="page sans"><header><h1 class="page-title">Languages</h1><p class="page-description"></p></header><div class="page-body"><figure id="8927dd8a-f977-4f16-8413-6ab69d1dae59" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Go%208927dd8af9774f1684136ab69d1dae59.html">Go</a></figure><figure id="4f08b7b0-6e0e-40d6-8c5c-5d4bc9daf124" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Python%204f08b7b06e0e40d68c5c5d4bc9daf124.html">Python</a></figure><figure id="947d6b83-9abd-44ad-a23d-5688ffc56e4e" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Elixir%20947d6b839abd44ada23d5688ffc56e4e.html">Elixir</a></figure><figure id="cd7f5163-fd21-4780-904b-27a1b8049e60" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Bash%20cd7f5163fd214780904b27a1b8049e60.html">Bash</a></figure><figure id="d01a88d0-c543-4798-8f35-6ba67a696fd6" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Rust%20d01a88d0c54347988f356ba67a696fd6.html">Rust</a></figure><figure id="c18ea1f9-dbe3-46b8-974c-ae0f176502e8" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/Zig%20c18ea1f9dbe346b8974cae0f176502e8.html">Zig</a></figure><figure id="7ac4a3d8-73f1-459b-8f25-7ee61536096d" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/OCaml%207ac4a3d873f1459b8f257ee61536096d.html">OCaml</a></figure><p id="22ff12fe-5f22-409c-9c2d-93634dfc6059" class="">
</p></div></article><span class="sans" style="font-size:14px;padding-top:2em"></span></body></html>
</p><figure id="df5719a0-f55f-46ec-9b1f-024157704f3c" class="link-to-page"><a href="Languages%20f264e815b0b44efc9c8a8e4bd5e90850/C%20df5719a0f55f46ec9b1f024157704f3c.html">C</a></figure></div></article><span class="sans" style="font-size:14px;padding-top:2em"></span></body></html>
Loading

0 comments on commit 038b45a

Please sign in to comment.