Skip to content

Instantly share code, notes, and snippets.

View spankie's full-sized avatar
🤓
Writing Code...

Odohi David spankie

🤓
Writing Code...
View GitHub Profile
@spankie
spankie / Vim ShortCuts
Last active September 4, 2021 11:25 — forked from elithrade/vimfiler-shortcuts
Common vimfiler keyboard shortcuts
Search and replace occurences of word: :%s/<word_to_replace>/<correct_word>/g // `g` represents all occurence
package main
import (
"fmt"
"log"
)
func handler(w http.ResponseWriter, r *http.Request) {
maxSize := int64(1024000) // allow only 1MB of file size
err := r.ParseMultipartForm(maxSize)