Skip to content

Instantly share code, notes, and snippets.

View Seeker1911's full-sized avatar
🌲
Sharpen? I've had no time to sharpen my axe. I have been so busy cutting trees

Michael Mead Seeker1911

🌲
Sharpen? I've had no time to sharpen my axe. I have been so busy cutting trees
View GitHub Profile
@lalitmee
lalitmee / settings.lua
Created March 29, 2021 10:59
nvim settings
local fn = vim.fn
local api = vim.api
local executable = function(e)
return fn.executable(e) > 0
end
local opts_info = vim.api.nvim_get_all_options_info()
local opt = setmetatable(
{}, {
@anhari
anhari / gist:23ae031e93e2f465258439cb6802acad
Last active November 16, 2021 11:34
gruvbox blink shell theme
black = '#282828';
red = '#cc241d'; // red
green = '#98971a'; // green
yellow = '#d79921'; // yellow
blue = '#458588'; // blue
magenta = '#b16286'; // pink
cyan = '#689d6a'; // cyan
white = '#a89984'; // light gray
lightBlack = '#928374'; // medium gray
lightRed = '#fb4934'; // red
@teasherm
teasherm / s3_multipart_upload.py
Last active March 4, 2025 21:55
boto3 S3 Multipart Upload
import argparse
import os
import boto3
class S3MultipartUpload(object):
# AWS throws EntityTooSmall error for parts smaller than 5 MB
PART_MINIMUM = int(5e6)