Skip to content

Instantly share code, notes, and snippets.

View g-duff's full-sized avatar

George Duffett g-duff

  • United Kingdom
View GitHub Profile
use axum::{
extract::{Extension, Path},
routing::get,
AddExtensionLayer, Router,
};
use hyper::service::make_service_fn;
use std::{
convert::Infallible,
sync::{Arc, Mutex},
};
@mkfares
mkfares / zsh-keyboard-shortucts.md
Last active April 30, 2026 16:15
Common zsh Keyboard Shortcuts on macOS Catalina

Common zsh Keyboard Shortcuts on macOS

Navigation

CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward