Waffleophagus
Waffleophagus
Explore posts from servers
CCConvex Community
Created by Waffleophagus on 5/1/2025 in #support-community
Logging into new user "doesn't work" on react native since I store state?
As mentioned in #"Upgrading" Anonymous accounts to "real" accounts with email I start all users out with an anonomyous account then letting them auth into a real account. I am trying to store some of that in a local store since its react native and my goal is to give an offline experience for my users, but the thing I've been banging my head against for the past like 3 evenings (yay off time projects) is that when a user auths with an email, it doesn't take effect immediately, and I end up having to exit and come back to the app, doing that solves it perfectly. Is it a race condition? What is the simplest way to handle this? I'll happily share anything I have to get this working.
2 replies
CCConvex Community
Created by Waffleophagus on 4/27/2025 in #support-community
"Upgrading" Anonymous accounts to "real" accounts with email
Out of the gate when you log in to my react native application, I give you an anonymous account. My goal is to push the user into signing up and at that point we "upgrade" the account from an anon to a "proper" account. I know that this will require some custom account linking outlined briefly here: https://labs.convex.dev/auth/advanced#account-linking But from where I'm sitting I'm trying to nail down the best pattern that makes it such that the user does not lose any data. The goal being give them access to the app with as little barrier as possible and make them want to sign up. The thing that is a sticking point is right now I'm using Resend OTP codes, and I don't see a clean way to just give the built in Resend/Email functionality an existing userID, and the built in flow generates a new UserID when the flow begins. Is there a way to better call these internal things or should I just kinda... re-implement the OTP functionality? Will I have to do the same with the OAuth providers when I get to that? (Was planning on adding them in addition to OTP when the app is closer to production) Is there an example somewhere of this upgrade path? I'll happily share anything I have so far.
24 replies
TTCTheo's Typesafe Cult
Created by Waffleophagus on 4/20/2025 in #questions
Hot swapping models due to demand? Good ideas on solutions?
I have a product I’m working on where I want the cheapest fastest model to do a single thing (OCR) and was mostly just using Gemini 2.0 lite. Thing is, when developing last night and it appeared to be degraded and was giving me 400-500 responses. I am not super picky on model usage, Gemini, Gemini lite, mistral 3.1 small, any will do the singular task I want. Does OpenRouter or some other service exist to balance responses between model providers? Ideally give a priority (on price) but have fall backs if failures or higher latency occur? I’d rather pay a few cents more per thousands of requests than have a key feature go dark.
6 replies
TTCTheo's Typesafe Cult
Created by Waffleophagus on 2/13/2025 in #questions
Expo Monthly Active User question
So I asked this in the expo discord, but my bet is I'll get a faster answer here. I'm real interested in Expo, but my idea is going to have a rather small revenue per user, so looking at the costs of Expo I am wanting to make sure I'm not about to make a money pit off of the MAU costs. So the documentation appears to cover it decently well but I have a single outstanding question that looking at the documentation doesn't appear to have answered: Is a "Monthly active user" a download from the app store? If I do a JS only update, its my understanding (mostly from watching youtube videos) those can bypass the app store, are those counted as well or handled differently? I will likely get the app to a very stable state somewhat quickly and thus won't need updates past that (likely?)
1 replies
TTCTheo's Typesafe Cult
Created by Waffleophagus on 1/13/2025 in #questions
What Ollama models do you use? Is there a good repository of rankings?
So I imagine this community has a bunch folks on the Ollama train, and I admit that I have a bit of choice paralysis in this. I've tried a half dozen 8b-14b models, but would love to get some kind of consensus on things. I am aware of hugging face and the like, but I'll openly admit I don't know how most of these benchmarks work, and haven't found a really solid "Plain English ranking" for selfhosted models. I know that https://openwebui.com/leaderboard Open Webui's leaderboard exists, but it goes too far the other direction, why are you at the top? TL;DR: What models are you using at home? Ideally one that can be run on consumer cards. Love to know if you're using it cause its faster, or if its the most accurate, or both?
6 replies
BBlueBuild
Created by Waffleophagus on 12/20/2024 in #questions
using dnf bundles? (@cosmic-desktop-environment)
https://copr.fedorainfracloud.org/coprs/ryanabx/cosmic-epoch/ the "correct" way to use a tagged release of installing the cosmic desktop environment right now is something I'd never heard of before, in a non-ostree environment it'd be dnf install @cosmic-desktop-environment a "bundle" of packages I guess? On my first attempt to do this as a plain ol' rpm-ostree package I got
× Recipe ./recipes/DX-GTS.yml failed to validate
╰─▶
× Failed to deserialize recipe ./recipes/DX-GTS.yml
╰─▶ found character that cannot start any token at line 27 column 9,
while
scanning for the next token

help: Use `bluebuild validate --all-errors ./recipes/DX-GTS.yml` to view
more information.
If you're using a local module, be sure to add `source: local` to the
module entry
× Recipe ./recipes/DX-GTS.yml failed to validate
╰─▶
× Failed to deserialize recipe ./recipes/DX-GTS.yml
╰─▶ found character that cannot start any token at line 27 column 9,
while
scanning for the next token

help: Use `bluebuild validate --all-errors ./recipes/DX-GTS.yml` to view
more information.
If you're using a local module, be sure to add `source: local` to the
module entry
Is this an unsupported feature at the moment? Is it a thing introduced in 41 that isn't quite trickled down to ostree? Sorry if this has been covered, sadly bluebuild has "just worked" for about a year now on my own local gitea instance, and therefore I kinda stepped away from the community. It broke (my local setup, not bluebuild's fault) so I figured moving back to github would be preferrable, and figured I'd update a lot of things too.
140 replies
FFilament
Created by Waffleophagus on 11/28/2024 in #❓┊help
Best Laravel starter kit? (Having trouble with Volt?)
Heya all, I've been deep diving Laravel and am really loving it! I found Filament the other day and am wildly impressed. I attempted to start adapting it into my somewhat in progress project (I've mostly been working on the backend, not much front end) and am attempting to adapt the Laracast video to my project, but attempting to allow Filament to handle the routing doesn't appear to be working. I can copy/paste a lot of my code into a different project if Volt's class API is not ideal, but didn't know if there was a better solution? What I am trying to do: Let Filament handle routes? What I did: Followed the Laracast, which in this case suggests commenting/deleting the contents web.php's routes, which doesn't appear to work with the contents of my pretty bone stock (as far as routes are concerned) project My issue/the error: 404 Code:
php
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('navigation')
->path('/')
->login()
->colors([
'primary' => Color::Orange,
'gray' => Color::Sky,
])
php
public function panel(Panel $panel): Panel
{
return $panel
->default()
->id('navigation')
->path('/')
->login()
->colors([
'primary' => Color::Orange,
'gray' => Color::Sky,
])
And web.php is now just <?php
3 replies
UBUniversal Blue
Created by Waffleophagus on 6/6/2024 in #🛟bazzite-help
Gnome Wayland crashing on login.
I normally build from a more customized bluebuild image but this is now occurring on bazzite-gnome:stable as well, rebased to remove variables. In short, when logging in via Wayland GNOME I get what appears to be a core dump according to the output of the log this session ujust. It started happening a couple days ago. Attached is the full text of the "log this boot." I'm at a loss on this one. EDIT with more data: on a framework 16. Ok, more info, back on my personal image and everything looks good if I go back to May 7th image. (At this point I'm trying to narrow down the introduction of the problem) May 14th's image was fine, gonna try May 21st next.
29 replies
IImmich
Created by Waffleophagus on 9/14/2023 in #help-desk-support
Possible to remove a single problematic file from being uploaded?
I have a single problematic 17 minute .mov file that is just not uploading properly, it restarts, backtracks (I just saw it go from 7% to 4% back to 7% as I write this) and is just holding up the rest of my phone (iphone 12) from being backed up to my server (Unraid using dockercompose method) Is there a way I can unblock my situation by telling it to JUST not upload this one image? (I'd also happily open a github issue if it seems appropriate)
10 replies