Skip to content

Instantly share code, notes, and snippets.

View ftisiot's full-sized avatar
👋

Francesco Tisiot ftisiot

👋
View GitHub Profile
@ftisiot
ftisiot / list-free-postgresql-in-the-cloud.md
Created August 14, 2025 12:49
free-postgresql-in-the-cloud
Provider Free Tier Highlights Best For
Aiven 1 CPU, 1 GB RAM, 1GB Storage Production-like prototyping
Neon 10 projects, 0.5 GB storage, serverless, branching Modern development workflows, serverless apps
Fly.io 3 GB storage, 160 GB outbound Lightweight global apps
Render.com 0.1 CPU, 256 RAM, 100 connections, daily backups, 30 day limit Small apps needing more capacity
Amazon RDS 20 GB + backups, 750 hrs/month Temporary usage via AWS Free Tier
@ftisiot
ftisiot / insert_multiple_rows.sql
Created January 26, 2022 09:08
PostgreSQL Insert multiple rows in one go
CREATE TABLE students (student_id INT, student_name VARCHAR(200));
INSERT INTO students values (1, 'Francesco'), (2, 'Maria'), (3, 'Giuseppa');