Skip to content

Instantly share code, notes, and snippets.

@Gabriel-Ladzaretti
Gabriel-Ladzaretti / multipart_upload.go
Created July 18, 2024 17:31 — forked from mattetti/multipart_upload.go
Example of doing a multipart upload in Go (golang)
package main
import (
"bytes"
"fmt"
"io"
"log"
"mime/multipart"
"net/http"
"os"
@Gabriel-Ladzaretti
Gabriel-Ladzaretti / vimtutor-v1.7-summaries
Last active June 29, 2024 20:59
vimtutor v1.7 summaries
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Lesson 1 SUMMARY
1. The cursor is moved using either the arrow keys or the hjkl keys.
h (left) j (down) k (up) l (right)
2. To start Vim from the shell prompt type: vim FILENAME <ENTER>
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes.

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@Gabriel-Ladzaretti
Gabriel-Ladzaretti / a-tour-of-go-solutions.md
Last active April 2, 2023 08:46
A Tour of Go - solutions