this post was submitted on 05 Jul 2025
26 points (86.1% liked)

Programming

21400 readers
81 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

I wanted a dead-simple way to share text, links, or code without creating accounts or dealing with messy UIs. So I built Zync(https://zyncshare.vercel.app/) — paste, share, done.

  • Share plain text, links, or code instantly
  • Replies work without login
  • Everything auto-expires in minutes or hours
  • No tracking, no ads, no clutter.

Would love to hear what you think. Is it something you’d actually use?

you are viewing a single comment's thread
view the rest of the comments
[–] besselj 18 points 2 days ago (3 children)

What's the privacy policy of your website? How do you plan to prevent abuse of your service?

[–] [email protected] 0 points 2 days ago* (last edited 2 days ago) (2 children)

Thanks for the insight! This is just a MVP that I buit and posted online for reviews to know if this is worth expanding more. As the other commenters have said I was planning to do either a simple CAPTCHA or optional PIN protection — whichever feels smoother for users. Zync was meant to be a frictionless sharing tool, but I definitely want to strike the right balance between ease of use and basic protection.

[–] [email protected] 6 points 1 day ago* (last edited 1 day ago) (1 children)

Might be a good use case for Anubis, in addition to the URLParam passwords mentioned elsewhere. Enough protection to prevent trivial brute force scraping, while also being basically invisible to users.

[–] [email protected] 2 points 1 day ago

So what you're basically saying is to add a secret key to the shared link itself, so the user doesn’t have to do anything extra, but their privacy is protected behind the scenes. I looked into it and just added a 6-character access key for every Zync(shared link), plus basic rate limiting to stop mass scraping. It’s invisible to users but blocks most common abuse. Will keep improving it based on all your feedback appreciate it a lot!