Skip to content

Instantly share code, notes, and snippets.

View boristane's full-sized avatar
🎯

Boris Tane boristane

🎯
View GitHub Profile
@DavidWells
DavidWells / aws-lambda-redirect.js
Created June 28, 2018 20:48
How to do a 301 redirect from an AWS lambda function
exports.handler = (event, context, callback) => {
const response = {
statusCode: 301,
headers: {
Location: 'https://google.com',
}
};
return callback(null, response);
}
@AdamMarsden
AdamMarsden / zshgit.md
Last active June 30, 2025 16:08
Oh My Zsh - Git Cheat Sheet

#Oh My Zsh - Git Cheat Sheet

ggit

gstgit status

glgit pull

gupgit pull --rebase