Skip to content

Instantly share code, notes, and snippets.

View mearsten's full-sized avatar
😺

Serge mearsten

😺
View GitHub Profile
apiVersion: gateway.networking.k8s.io/v1
kind: Gateway
metadata:
name: tmp1
namespace: envoy-gateway-system
spec:
gatewayClassName: envoy-gateway
infrastructure:
parametersRef:
group: gateway.envoyproxy.io
@mearsten
mearsten / aws.md
Created May 12, 2025 09:05 — forked from colinvh/aws.md
AWS Region Names

Alternative naming schemes for AWS regions

Purpose

The intent is to define terse, standards-supported names for AWS regions.

Schemes

@mearsten
mearsten / .XCompose
Created June 20, 2019 14:40 — forked from astanin/.XCompose
My Compose key configuration
include "/usr/share/X11/locale/en_US.UTF-8/Compose"
# Punctuation
# знаки препинания, необходимые в русском, которых нет в en_US.UTF-8/Compose
<Multi_key> <period> <minus> : "…" U2026 # HORIZONTAL ELLIPSIS, многоточие
<Multi_key> <period> <space> : "…" U2026 # HORIZONTAL ELLIPSIS, многоточие
<Multi_key> <?> <!> : "⁈" U2048 # QUESTION EXCLAMATION, ?!
<Multi_key> <period> <colon> : "…" # ELLIPSIS
# №: набирается в русской раскладке без ухищрений,
@mearsten
mearsten / waitForKeyElements.js
Created April 22, 2016 17:27 — forked from BrockA/waitForKeyElements.js
A utility function, for Greasemonkey scripts, that detects and handles AJAXed content.
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);