Skip to content

Commit 8c002a4

Browse files
authored
New article about Swift 6 error handling (#9)
- new article about error handling - Makefile fix for serve command
1 parent d5096bb commit 8c002a4

File tree

3 files changed

+450
-2
lines changed
  • contents/blog/posts
    • 2023/encoding-and-decoding-data-using-the-hummingbird-framework
    • 2025/type-safe-and-user-friendly-error-handling-in-swift-6

3 files changed

+450
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ watch:
1515
toucan watch .
1616

1717
serve:
18-
toucan serve ./docs -p 3000
18+
toucan serve ./dist -p 3000
1919

2020
png:
2121
find ./* -type f -name '*.png' -exec optipng -o7 {} \;

contents/blog/posts/2023/encoding-and-decoding-data-using-the-hummingbird-framework/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ tags:
88
- server
99
authors:
1010
- tibor-bodecs
11-
featured: true
1211
---
1312

1413
HTTP is all about sending and receiving data over the network. Originally it was only utilized to transfer HTML documents, but nowadays we use HTTP to transfer CSS, JavaScript, JSON and many other data types. According to the standards, the [Content-Type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type) and [Content-Length](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Length) headers can be used to have a better understanding about the data inside the body of the HTTP request.

0 commit comments

Comments
 (0)