back to Portfolio index

Drop

Overview

Drop is a temporary file hosting service built with Go’s Echo framework, inspired by 0x0.st. It provides a simple, self-hosted solution for temporary file sharing with dynamic file expiration based on file size.

Motivation

I needed a lightweight, self-hosted solution for quickly sharing files that wouldn’t require permanent storage. Existing services either had limitations on file sizes, lacked privacy features, or didn’t provide the flexibility I was looking for in terms of file retention policies.

But honestly, I also just wanted to fucking build something.

Solution

Drop was developed as a personal file hosting service with these key features:

The project uses smart retention calculations with a configurable formula: retention = min_age + (min_age - max_age) * pow((file_size / max_size - 1), 3). This ensures efficient use of storage space by automatically removing larger files more quickly while keeping smaller files available longer.

Implementation

Drop leverages several technologies:

The solution also includes thorough testing, especially for the expiration calculation algorithm, ensuring reliability in production environments.

By building Drop, I created a practical utility that simplifies file sharing while maintaining control over data retention and server resources.

How I Use It

I’ve integrated Drop into my daily workflow with a minimal shell function:

function upload_file() {
  local url="https://dump.mz.uy"
  local full_response=$(curl -i -F"file=@$1" "$url")
  local url_response=$(echo "$full_response" | tail -n 1)
  local token=$(echo "$full_response" | grep -i "X-Token:" | awk '{print $2}' | tr -d '\r')
  echo -n "$url_response" | wl-copy
  echo "Token: $token"
}
alias drop='upload_file'

With this simple function, I just type drop filename.ext in my terminal, and the file is uploaded with the URL copied to my clipboard.