u/0x00ffjp

Got frustrated with repetitive Supabase fetching syntax, so we built a minimal wrapper to fix it.

Got frustrated with repetitive Supabase fetching syntax, so we built a minimal wrapper to fix it.

Hey everyone,

I’ve been using Supabase a ton lately for our projects, and while I absolutely love the ecosystem, I noticed our team was writing the exact same boilerplate code over and over just to handle simple data fetching, updates, and deletes.

Typing out .from('table').select('*').eq('id', id) across dozens of components started to feel heavily repetitive.

To clean up our codebase and speed up our workflow, we built a lightweight, zero-boilerplate wrapper called @/keylabsdev/superbase. It initializes just like the native client but exposes a super clean, fluent syntax that implicitly handles the structural boilerplate for you.

Here is a quick look at the syntax difference:

// ❌ The Repetitive Way

const { data, error } = await supabase

.from('tasks')

.select('*')

.eq('status', 'done')

.limit(5);

// The Superbase Way

const data = await db.from('tasks').eq('status', 'done').limit(5);

What it does:

  • Implicit Selecting: .from('table') automatically defaults to selecting all columns (*) so you can jump straight into filtering. You can still pass custom columns as a second argument if needed (db.from('tasks', 'id, title')).
  • Chainable Filters: It preserves and mirrors all native PostgREST filters (.eq(), .gt(), .ilike(), .order(), etc.).
  • Clean Mutations: One-liners for common actions: await db.update('tasks', { status: 'done' }).eq('id', 5);
  • TypeScript-First: It's fully typed and compiled to work seamlessly with your existing build tools.

It’s completely open-source and free to use. If you want to check it out, grab the code, or drop some feedback, you can find it here:

👉 NPM: npm install @/keylabsdev/superbase

👉 GitHub: https://github.com/KeyLab-Git/keylabs-superbase

Would love to know if anyone else runs into this syntax fatigue, and what other shorthand methods you’d want to see added to it!

u/0x00ffjp — 4 days ago

I built a non-custodial, on-chain tipping platform so creators can get tip directly and easy! Looking for early beta testers!

Hey everyone,

I’m the founder of a small software studio, and like many developers and creators, I’ve always been frustrated by the traditional middleman platforms that hold your funds hostage or take massive chunks out of your payouts once processing fees hit.

To fix this, my team have been building Tipzza—a decentralized, non-custodial peer-to-peer tipping platform. Because it runs on-chain, tips route directly from a supporter’s wallet straight to the creator’s wallet instantly. There are no platform payout delays or holding periods. We are also building out tools for trustless community crowdfunding via utility-backed NFTs.

We are keeping our frontend UI and backend proprietary, but to ensure absolute transparency and trust for the community, we’ve open-sourced our core smart contracts on GitHub.

We are officially opening up our live public Beta tracking phase this week, and we need real users to stress-test the P2P transaction flows, explore the dashboard interface, and give us brutal, honest feedback on the UX.

If you are a creator, developer, or just interested in Web3 tools that decentralize creator support, I would love for you to jump into the beta.

How to join: Drop a comment below or send me a DM, and I’ll send over the link to our beta whitelist entry and our public GitHub repo so you can check out the contracts!

Thanks so much for your time and feedback,
The Tipzza Team

reddit.com
u/0x00ffjp — 5 days ago
▲ 3 r/web3marketinggroup+2 crossposts

We were tired of platforms holding creator tips for weeks, so we built an open-source, instant P2P tipping router. Need your brutal feedback! 🍕

Hey everyone,

Like a lot of builders and content creators here, I’ve always been frustrated by the traditional monetization route. You pour weeks into open-source code, assets, or community building, but when someone wants to drop you a tip, centralized platforms hit you with massive cut fees, minimum payout thresholds, and "processing holds" that keep your money hostage for days.

My team and I decided to build a lightweight, direct alternative called Tipzza, and we just officially launched our Public Beta.

Instead of routing payments through a company bank account, Tipzza uses a fully automated Smart Contract Tipping Router. When a supporter uses your custom tipping link or QR code, the funds skip the middleman entirely—routing directly from their Web3 wallet straight into your self-custodial wallet instantly on-chain. If you get a tip at 2:00 AM, it's liquid and yours to spend by 2:01 AM.

What we’ve got ready in the Beta engine right now:

  • The Creator Dashboard: A clean, proprietary interface to track your support, analyze transactions, and grab your custom links/QRs.
  • Seamless Multi-Wallet Flows: Supporter integrations for MetaMask, Phantom, WalletConnect, etc.
  • Gas-Optimized Smart Contracts: Built explicitly to ensure low-network overhead so small tips don't get eaten up by gas fees.
  • Absolute Transparency: We want to build actual trust, so our core smart contracts are completely open-source and public on GitHub for anyone to audit or look under the hood.

Why I’m posting here: We don’t want polite praise—we need real, raw, brutal feedback. We want you guys to jump in, push the buttons, break the transaction flows, and tell us exactly what UX elements feel clunky, what features are missing, or what you want to see built next (we're currently looking into utility-backed NFT crowdfunding tools).

Because we are managing early server and database waves, we are running access through a quick whitelist.

Let me know what you guys think! 🚀🍕

reddit.com
u/0x00ffjp — 1 day ago

I built a non-custodial, on-chain tipping platform so creators can get tip directly and easy! Looking for early beta testers!

Hey everyone,

I’m the founder of a small software studio, and like many developers and creators, I’ve always been frustrated by the traditional middleman platforms that hold your funds hostage or take massive chunks out of your payouts once processing fees hit.

To fix this, my team have been building Tipzza—a decentralized, non-custodial peer-to-peer tipping platform. Because it runs on-chain, tips route directly from a supporter’s wallet straight to the creator’s wallet instantly. There are no platform payout delays or holding periods. We are also building out tools for trustless community crowdfunding via utility-backed NFTs.

We are keeping our frontend UI and backend proprietary, but to ensure absolute transparency and trust for the community, we’ve open-sourced our core smart contracts on GitHub.

We are officially opening up our live public Beta tracking phase this week, and we need real users to stress-test the P2P transaction flows, explore the dashboard interface, and give us brutal, honest feedback on the UX.

If you are a creator, developer, or just interested in Web3 tools that decentralize creator support, I would love for you to jump into the beta.

How to join: Drop a comment below or send me a DM, and I’ll send over the link to our beta whitelist entry and our public GitHub repo so you can check out the contracts!

Thanks so much for your time and feedback,
The Tipzza Team

reddit.com
u/0x00ffjp — 6 days ago