Skip to content

Instantly share code, notes, and snippets.

View garenchan's full-sized avatar
:dependabot:
Focusing

Garen Chan garenchan

:dependabot:
Focusing
View GitHub Profile
@kgriffs
kgriffs / sysctl.conf
Last active April 29, 2024 11:32
Linux Web Server Kernel Tuning
# Configuration file for runtime kernel parameters.
# See sysctl.conf(5) for more information.
# See also http://www.nateware.com/linux-network-tuning-for-2013.html for
# an explanation about some of these parameters, and instructions for
# a few other tweaks outside this file.
#
# See also: https://gist.github.com/kgriffs/4027835
#
# Assumes a beefy machine with lots of network bandwidth
@wrfly
wrfly / gist:64d8881b90e1a5ff9e658db15530ba35
Created June 5, 2021 15:46
golang dynamic rate limiter
package main
import (
"fmt"
"sync"
"time"
"go.uber.org/ratelimit"
)