feat: add debounce (wip)
parent
a35fe1bbbe
commit
44235ddf42
|
@ -0,0 +1,82 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.3.0/github-markdown.min.css"
|
||||
/>
|
||||
<title>haunt98 posts</title>
|
||||
</head>
|
||||
<style>
|
||||
.markdown-body {
|
||||
box-sizing: border-box;
|
||||
min-width: 200px;
|
||||
max-width: 980px;
|
||||
margin: 0 auto;
|
||||
padding: 45px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.markdown-body {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<body class="markdown-body">
|
||||
<h2>
|
||||
<a href="index.html"><code>~</code></a>
|
||||
</h2>
|
||||
<h1>
|
||||
<a
|
||||
id="user-content-debounce"
|
||||
class="anchor"
|
||||
aria-hidden="true"
|
||||
tabindex="-1"
|
||||
href="#debounce"
|
||||
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
||||
>Debounce
|
||||
</h1>
|
||||
<p>TODO</p>
|
||||
<h2>
|
||||
<a
|
||||
id="user-content-thanks"
|
||||
class="anchor"
|
||||
aria-hidden="true"
|
||||
tabindex="-1"
|
||||
href="#thanks"
|
||||
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
||||
>Thanks
|
||||
</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<a
|
||||
href="https://itnext.io/idempotency-in-apis-handling-duplicate-requests-with-golang-and-redis-4b0921d6b3d6"
|
||||
rel="nofollow"
|
||||
>Idempotency in APIs: Handling Duplicate Requests with Golang and
|
||||
Redis</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://medium.com/inheaden/stripe-like-idempotency-keys-with-go-and-postgres-part-1-b69e25e5b1f0"
|
||||
rel="nofollow"
|
||||
>Stripe Like Idempotency Keys with Go and Postgres</a
|
||||
>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div>
|
||||
Feel free to ask me via
|
||||
<a href="mailto:hauvipapro+posts@gmail.com">email</a> or
|
||||
<a rel="me" href="https://hachyderm.io/@haunguyen">Mastodon</a>.
|
||||
<br />Source code is available on
|
||||
<a href="https://github.com/haunt98/posts-go">GitHub</a>
|
||||
<a href="https://codeberg.org/yoshie/posts-go">Codeberg</a>
|
||||
<a href="https://git.sr.ht/~youngyoshie/posts-go">sourcehut</a>
|
||||
<a href="https://gitea.treehouse.systems/yoshie/posts-go">Treehouse</a>
|
||||
<a href="https://gitlab.com/youngyoshie/posts-go">GitLab</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -75,6 +75,7 @@
|
|||
<li><a href="2023-09-14-vietnam-survivor.html">Vietnam survivor</a></li>
|
||||
<li><a href="2023-09-23-bloguru.html">Bloguru</a></li>
|
||||
<li><a href="2023-10-02-unrelated.html">Unrelated engineer</a></li>
|
||||
<li><a href="2023-12-16-debounce.html">Debounce</a></li>
|
||||
</ul>
|
||||
|
||||
<div>
|
||||
|
|
|
@ -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)
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue