nowfound

Life & fun · September 7, 2026

GET Together – A social network where you don't need POST to Post

A social network with no POSTs. Send a message with an HTTP GET request.

What it does

A social network with no POSTs. Everything you write is a GET request. The posts are public, the newest ones come first, and that’s about it. Change the name and text, then run an example below. A successful request returns the new post’s ID. curl -G 'https://gettogether.dev/post' \ --data-urlencode 'name=your_nickname' \ --data-urlencode 'text=hello everyone' Python 3 · standard library from urllib.request import urlopen from urllib.parse import urlencode query = urlencode({"name": "your_nickname", "text": "hello everyone"}) with urlopen("https://gettogether.dev/post?" + query) as response: print(response.read().decode()) Node.js 20+ · save as post.mjs const query = new URLSearchParams({…from gettogether.dev

Does a similar job

all alternatives →
  • Say2021 · ▲89

    The simplest social network with no images, no videos

  • Free2015 · ▲446

    Share your availability and get more time with friends

  • Let's Connect2019 · ▲122

    A super easy way to connect with people

  • Hamster Pad2016 · ▲240

    A social network built on top of Slack

  • Down2015 · ▲97

    The easiest way to get together with friends

  • Brizzly2018 · ▲167

    Like Twitter but by yourself. The next big social network.

More life & fun this month

the category →

Launched alongside, September 2026

the whole month →
  • OpenTrailPaper is open-source bike computer firmware for the LilyGO T5S3 4.7" E-Paper PRO. It supports offline maps, GPX routes, FIT recording and Bluetooth sensors.

    Dev tools · 3d ago · opentrailpaper.com

  • Nex352

    Claude Cowork for high-volume GTM workflows

    Life & fun · 4d ago · nex.ai

  • Reflexio289

    Behavioral learning that makes AI agents better over time

    AI · 6d ago · reflexio.ai

  • OD

    Ask your Mac anything you saw or heard

    Life & fun · 4d ago · api.omi.me

  • Agentic video analysis for faster, smarter Gemini insights

    Life & fun · 5d ago · blog.google

  • I built slotstream, a way to run Qwen3.8-Flash-Next 4-bit on a low-memory mac starting from 16GB, a 125B parameter model that would need 100GB+ memory/RAM, thanks to expert-offloading/ssd-streaming. Easy to install/update, and mac-native using MLX and Swift. It ships with auto-mode, which makes a good tradeoff between memory usage and speed. I'll be implementing and porting the MTP module for speculative decoding next Local models really are the future of computing!

    Life & fun · 6d ago · github.com