Skip to content

Instantly share code, notes, and snippets.

View cletustboone's full-sized avatar

Clay Simmons cletustboone

  • Little Rock, AR
  • 02:41 (UTC -05:00)
View GitHub Profile
use std::{error::Error, fmt::Display, task::Poll, time::Duration};
use futures::Future;
use pin_project::pin_project;
use tokio::time::{sleep, Sleep};
use tower::{BoxError, Layer, Service};
use tracing::{instrument, warn};
use crate::gateway::GatewayRequest;
@cletustboone
cletustboone / instructions.md
Last active September 28, 2018 14:34
Solve a 3x3 Rubik's Cube

Solve a 3x3 Rubik's Cube

Notation

Sides

  • F - Front
  • B - Back
  • D - Bottom
  • U - Top
@cletustboone
cletustboone / commands.md
Last active June 13, 2019 11:17
Varnishlog Cheat Sheet

Reference Post

Requests that make it through to a specific backend

varnishlog -g request -q "Backend ~ 'api_nhl'"

Requests from a specific referrer

Client and backend varnishlog -g request -q "ReqHeader ~ 'sportsnet.ca'"