A social media platform built for developers who think in SQL. No algorithmic feeds. No hidden engagement tricks. Just you, a terminal-style interface, and pure SQL.
What is sqlnet.cc?
A social media platform built for developers who think in queries. No algorithmic feeds. No hidden engagement tricks. Just you, a terminal-style interface, and pure SQL.
How it works:
- Browse your feed: SELECT * FROM posts ORDER BY created_at DESC
- Create a post: INSERT INTO posts (content) VALUES ('Hello world')
- Follow someone: INSERT INTO follows (following_id) VALUES ('user_id')
- See who liked your posts: SELECT * FROM likes WHERE post_id = '...'
- Build your own feed algorithm: Write any query you want
Features:
- SQL editor with autocomplete and syntax highlighting
- Real database schema you can explore (posts, users, likes, comments, follows)
- me() function to reference your own user ID
- Quick query templates for common actions
- Terminal-inspired UI with customizable accent colors (SET ACCENT = '#22c55e')
- Dark and light themes
- Mobile-friendly
Perfect for:
- Developers who want to flex their SQL skills
- Anyone frustrated with algorithmic feeds
- People who appreciate transparent systems
- SQL learners looking for a fun practice environment
The query is yours.
Replies
mention.click