From 44235ddf420a239e10f008abb5e6dc8d86a1889e Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Sat, 16 Dec 2023 23:43:16 +0700 Subject: [PATCH] feat: add debounce (wip) --- docs/2023-12-16-debounce.html | 82 +++++++++++++++++++++++++++++++++++ docs/index.html | 1 + posts/2023-12-16-debounce.md | 8 ++++ posts/index.md | 1 + 4 files changed, 92 insertions(+) create mode 100644 docs/2023-12-16-debounce.html create mode 100644 posts/2023-12-16-debounce.md diff --git a/docs/2023-12-16-debounce.html b/docs/2023-12-16-debounce.html new file mode 100644 index 0000000..e414c53 --- /dev/null +++ b/docs/2023-12-16-debounce.html @@ -0,0 +1,82 @@ + + + + + + + haunt98 posts + + + +

+ ~ +

+

+ Debounce +

+

TODO

+

+ Thanks +

+ + +
+ Feel free to ask me via + email or + Mastodon. +
Source code is available on + GitHub + Codeberg + sourcehut + Treehouse + GitLab +
+ + diff --git a/docs/index.html b/docs/index.html index 533729e..abb156b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -75,6 +75,7 @@
  • Vietnam survivor
  • Bloguru
  • Unrelated engineer
  • +
  • Debounce
  • diff --git a/posts/2023-12-16-debounce.md b/posts/2023-12-16-debounce.md new file mode 100644 index 0000000..f2dc78f --- /dev/null +++ b/posts/2023-12-16-debounce.md @@ -0,0 +1,8 @@ +# Debounce + +TODO + +## Thanks + +- [Idempotency in APIs: Handling Duplicate Requests with Golang and Redis](https://itnext.io/idempotency-in-apis-handling-duplicate-requests-with-golang-and-redis-4b0921d6b3d6) +- [Stripe Like Idempotency Keys with Go and Postgres](https://medium.com/inheaden/stripe-like-idempotency-keys-with-go-and-postgres-part-1-b69e25e5b1f0) diff --git a/posts/index.md b/posts/index.md index 42f9997..b039f32 100644 --- a/posts/index.md +++ b/posts/index.md @@ -34,3 +34,4 @@ This is where I dump my thoughts. - [Vietnam survivor](2023-09-14-vietnam-survivor.html) - [Bloguru](2023-09-23-bloguru.html) - [Unrelated engineer](2023-10-02-unrelated.html) +- [Debounce](2023-12-16-debounce.html)