Skip to content

Instantly share code, notes, and snippets.

@squarism
squarism / iterm2.md
Last active July 25, 2024 20:15
An iTerm2 Cheatsheet

Tabs and Windows

Function Shortcut
New Tab + T
Close Tab or Window + W (same as many mac apps)
Go to Tab + Number Key (ie: ⌘2 is 2nd tab)
Go to Split Pane by Direction + Option + Arrow Key
Cycle iTerm Windows + backtick (true of all mac apps and works with desktops/mission control)
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active July 26, 2024 17:24 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@pedrom34
pedrom34 / firefly-update.sh
Last active May 15, 2024 14:26
Script to update firefly-iii
#!/bin/bash
#Modify next line to where your firefly-iii instance is installed to.
cd /var/www
#Remove old backup of firefly-iii
rm -r firefly-iii-old
#Backup current version of firefly-iii
cp -r firefly-iii firefly-iii-old
@sebkln
sebkln / RequestMiddlewares.php
Created January 6, 2024 15:48
Middleware for web manifest in TYPO3 v12. Adjusted version of the solution provided by Kevin Appelt in TYPO3 Slack: https://typo3.slack.com/archives/C025BQLFA/p1680299950579649
<?php
return [
'frontend' => [
'yourvendor/webmanifest' => [
'target' => \YourVendor\Sitepackage\Middleware\Webmanifest::class,
'before' => [
'typo3/cms-frontend/page-resolver',
],
'after' => [