techhub.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A hub primarily for passionate technologists, but everyone is welcome

Administered by:

Server stats:

4.9K
active users

#pocketbase

0 posts0 participants0 posts today

My 🤩 2024 tech is #pocketbase. It has been more than pleasant to work with thusfar and a huge advantage to easily create your app models and refs. Sure, the API has been changing a lot so online docs and GPT answers are not always up-to-date but most things are quite intuitive to do and understand. I’m using it embedded in #golang.

I find myself eager to hack on my project every night I can spare. Really looking forward to use it with other projects and why not with some #Java backend as well.

soooo my lil project is going swimmingly. Now I'm working on an admin page. But auth with #Pocketbase isnt going according to plan ngl. For some reason, whenever I refresh the page, the authStore is reset again.

Stranger still is that Pocketbase is supposed to default to LocalStorage for token storage, but then rely on memory if it cant use local storage (thereby losing your auth state on refresh)...

Oddly, LocalStorage has my token in it, it just seems the SDK doesnt retrieve it? Strangeeee

Blazedcloud
Minimal & Open sourced Cloud Storage

BlazedCloud is a user-friendly cloud storage app that emphasizes simplicity, transparency, and security. Utilizing AES-256 encryption, it ensures the protection of your files. Notably, the service offers a generous 5 GB free tier and operates on a pricing model of $10 per month per terabyte.

Download: f-droid.org/packages/com.chanc

🛠️ Reduced the deployment time of your git-based applications by 97% (yes)!

It was a simple trick. Comparing git commit SHAs are way faster with git ls-remote than git clone & git rev-base on medium+ repositories.

Also added #grafana, #openblocks, #nocodb and #pocketbase as a one-click service.

You can always check the list here: coolify.io/docs/one-click-serv (dynamically generated)

CoolifyCoolifyAn open-source & self-hostable Heroku / Netlify / Vercel alternative.

I’ve been ranting too much and too often about the lack of a viable Django alternative in the Go world. And finally, I think I found one in Pocketbase. It’s fantastic, comes with a ton of helpers out of the box, and while it hasn’t been designed primarily as a web development framed, it is actually a great one. Be sure to check it out.

pocketbase.io/

pocketbase.ioPocketBase - Open Source backend in 1 fileOpen Source backend in 1 file with realtime database, authentication, file storage and admin dashboard

It's almost time for #eurovision !!! I can't watch with my family this year so I created a website where you can rank each song in categories from singing to outfits and share with all your friends!

Check it out at eurotally.vercel.app and give me a follow (username: felix).

It's a bit buggy still (especially on iOS) but should be all sorted for the big night!

eurotally.vercel.appEurotally

Being a cheap person made me not want to use or other search platforms that might be able to connect to . I had to create a simple algorithm that will probably be enough for the few users my platform will have (rather not spend until I'm sure people want my product).

If anyone finds it useful, here is a step by step:

- get keywords from search prompt
- create an array linking each keyword to the categories of my items
- search on my database (get a bunch of results, some might be unrelated)
- sort the responde by how many categories match any of the keywords
- filter out items that have low matches

I'm really open to ideas to improve it or scrap it, let me know 🙂