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 →More life & fun this month
the category →- TL
Life & fun · 11d ago · louisabraham.github.io



Photosynthesis fires two of your iPhone
Life & fun · 30d ago · photosynthesis.camera
- CCCreatium Coach▲319
Your multimedia mentor that takes you from mid to great
Life & fun · 12d ago · producthunt.creatium.info
SoloUno▲310Take control of hair pulling, nail biting & skin picking
Life & fun · 29d ago · solouno.io
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


- OD

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