Skip to content

Instantly share code, notes, and snippets.

View stamepicmorg's full-sized avatar
๐Ÿ’
code monkey

STAM stamepicmorg

๐Ÿ’
code monkey
View GitHub Profile

ะดะฒะฐ ะพะฑะทะพั€ะฐ saas-ะพะฒ ะพั‚ ะบะพะฝะบัƒั€ะตะฝั‚ะพะฒ mailchimp

ะตั‰ั‘ saas

@nginx-gists
nginx-gists / Dockerfile
Last active June 17, 2025 07:20
Our Roadmap for QUIC and HTTP3 Support in NGINX
# Builds NGINX from the QUIC+HTTP/3 development branch
# - Based on the official NGINX docker image, including all modules built by default
# - OpenSSL replaced with LibreSSL to support QUIC's TLS requirements (statically linked)
#
# docker build --no-cache -t nginx:quic .
# docker run -d -p 443:443 -p 443:443/udp nginx:quic
#
# Note that a suitable configuration file and TLS certificates are required for testing!
# See <https://quic.nginx.org/readme.html> for more info
@jrconlin
jrconlin / enable_wifi.bash
Created March 6, 2021 22:03
Re-enable wifi on Raspberry Pi Buster after rfkill nukes it
#! /bin/bash
# RaspberryOS Buster introduced rfkill which will shut off your wifi. It reports
# that you need to set the country for it, which is fair, but apparently it has
# issues noticing that your country is, indeed, set, so the wifi stays off.
#
# The following script checks to see if the `wlan` is blocked (well, if it's
# not unblocked), and unblocks it. Since the rfkill check happens after reboot,
# we need to delay a bit before we start checking.
# (e.g. in crontab:
# ```
@alex4rks
alex4rks / Reload-VideoContoller.ps1
Last active March 20, 2021 13:03
useful for gpu-passthru vms
#https://stackoverflow.com/a/47262639
$devices = Get-PnpDevice| where {$_.class -eq "Display" -and $_.FriendlyName -notmatch "^.*Microsoft.*|^.*Basic.*|^.*Vmware.*"}
foreach ($dev in $devices) {
$dev | Disable-PnpDevice -Confirm:$false
$dev | Enable-PnpDevice -Confirm:$false
}
@ArtBIT
ArtBIT / GRUB_INIT_TUNE.md
Last active July 6, 2025 16:16
A collection of GRUB init tunes
@neilstuartcraig
neilstuartcraig / nginx-boringssl-build-script-debian.sh
Last active March 31, 2025 00:01
This builds NGINX from source with BoringSSL for Debian (alike?) systems with systemd (e.g. Debian Jessie)
#!/bin/bash
LATESTNGINX="1.11.10"
BUILDROOT="/tmp/boring-nginx"
# Pre-req
sudo apt-get update
sudo apt-get upgrade -y
# Install deps
@mariotacke
mariotacke / teamcity-agent
Last active February 23, 2021 14:57
/etc/init.d/teamcity-agent auto start script for TeamCity Agents
#!/bin/sh
### BEGIN INIT INFO
# Provides: TeamCity Build Agent
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start build agent daemon at boot time
# Description: Enable service provided by daemon.
### END INIT INFO
@MaxLazar
MaxLazar / robots.txt nginx
Last active March 25, 2024 07:55
Serve robots.txt inline in Nginx
Serve robots.txt inline in Nginx
06/18/2015 nginx 3 Comments
To quickly serve a robots.txt from Nginx without actually having access to the physical file you can define the content of the robots.txt file in the Nginx .conf file.
Allow access to all User-agents:
location /robots.txt {return 200 "User-agent: *\nDisallow:\n";}
Disallow access to every User-agent:
@rxaviers
rxaviers / gist:7360908
Last active July 25, 2025 21:00
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@mamchenkov
mamchenkov / git-commit-hash
Last active July 23, 2024 19:41
Find current git commit id/hash
$ git log -1 | grep ^commit | cut -d " " -f 2
dab96492ac7d906368ac9c7a17cb0dbd670923d9
$ git log -1 | grep ^commit | awk '{print $2}'
dab96492ac7d906368ac9c7a17cb0dbd670923d9