Skip to content

Instantly share code, notes, and snippets.

View mirzakhany's full-sized avatar
🎯
Focusing

Mohsen Mirzakhani mirzakhany

🎯
Focusing
View GitHub Profile
@mirzakhany
mirzakhany / tinyURL.go
Created June 3, 2024 09:36 — forked from maxclav/tinyURL.go
Simple Key Generation (using base62 encoded hash) for Tiny URL in Go (GoLang).
package tinuURL
import (
"crypto/md5"
"fmt"
"time"
"github.com/google/uuid"
"github.com/jxskiss/base62"
)
@mirzakhany
mirzakhany / curl.md
Created April 24, 2023 11:24 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.