Skip to main content

Show HN: A photo sharing app that isn't trying to be a TikTok clone https://ift.tt/POHxSkF

Show HN: A photo sharing app that isn't trying to be a TikTok clone We launched Pidgeon a few weeks ago, and since then we've had a chance to fix a lot of bugs and upgrade the usability a significant amount. The app is made just for photo sharing. No videos, no NFTs, just pictures, comments, and chats. Each post is ranked like on reddit - a combination of the user upvote/downvotes and the amount of time passed since the post's creation. We're also trying to stay away from ads, and instead adopt a freemium model. The main reason for this is because people are a lot more concerned with privacy these days, and if we aren't serving ads, then the user knows that we don't have an incentive to steal their data. There's already a small community of about 1500 on the app, with a lot of them being professional photographers. So the photos going up look really nice (at least in my opinion). But we don't just want to be a community of people who consider themselves photographers - that's a mistake that other platforms like Flickr and VSCO make. To become widespread, you need to make your platform simple to use for the casual person; only catering to professionals will necessarily keep your community smaller than it otherwise would be. Users have been asking for a desktop client, and while we don't have one yet, we do plan to add it - and it won't take us as long as IG to do it, and neither will it be an afterthought where the UX is intentionally made poor so that you're pushed to use the app instead. But we want to polish the mobile app first before we get there, and there's still a lot of work to do since it's super early days. If you want to try it out, here's the link: https://ift.tt/pbj6LV1 https://ift.tt/i0lpuHa And please do provide any feedback you have on the app! It really does help us make it better. March 20, 2022 at 11:58PM

Comments

Popular posts from this blog

Show HN: TypeScript query builder with full type inference https://ift.tt/xZp9HOm

Show HN: TypeScript query builder with full type inference Hey HN! Colin here - a TypeScripter, open sourcer, and engineer at EdgeDB. As the creator of Zod and tRPC, I'm interested in designing tools/APIs that use type inference and generics to make life easier for devs. This query builder represents another step in that direction. We set out to build an EdgeQL query builder that can express queries of arbitrary complexity (EdgeQL has feature parity with SQL, roughly) and infer the static type of the query result. We introspect the database and generate a schema-aware client that represent any query, including ones that use built-in functions, operators, string/array/tuple indexing, aggregations, conditionals, type casting, subqueries, computed properties, etc—things most ORMs can’t represent. This post mostly discusses the API design, which I think will be interesting regardless of familiarity with EdgeQL. I’d love to see some of these ideas bleed into future generations of TypeSc...