Skip to content

Instantly share code, notes, and snippets.

View markdrzy's full-sized avatar

Mark Drzycimski markdrzy

View GitHub Profile
@talwrii
talwrii / jqcheatsheet.md
Last active December 16, 2020 15:13
jq cheatsheet

jq cheatsheet

Extract field from list of objects

jq 'map(.foo)'

[ { foo: 1 }, { foo: 2 } ]
[1, 2]
@thisismitch
thisismitch / haproxy.cfg
Last active November 11, 2023 04:08
Let's Encrypt Auto-Renewal script for HAProxy
global
log /dev/log local0
log /dev/log local1 notice
chroot /var/lib/haproxy
stats socket /run/haproxy/admin.sock mode 660 level admin
stats timeout 30s
user haproxy
group haproxy
daemon
maxconn 2048
@bryanburgers
bryanburgers / __uses.scss
Created March 27, 2014 16:00
Media Query mixin
.some-element {
// Default to mobile first.
color: blue;
@include mq(medium) {
// Styles for medium and up.
color: red;
}
@include mq(large) {
@kevinSuttle
kevinSuttle / meta-tags.md
Last active May 12, 2024 15:28 — forked from lancejpollard/meta-tags.md
List of Usable HTML Meta and Link Tags