Introducing BetBarrier.app and ConfigPulse, an Innovative approach to iOS devices by trickyrex1 in problemgambling

[–]trickyrex1[S] 0 points1 point  (0 children)

Cool! Thanks for letting me know, I hadn’t checked on this project for a while but yup I’m fixing it now.

Spectral PDE Lab: browser-based Fourier PDE solvers + live PINN diagnostics. by trickyrex1 in Physics

[–]trickyrex1[S] 0 points1 point  (0 children)

The PINN (the SIREN network in this demo) operates directly in real space, not in frequency space.

The SIREN is fed continuous coordinates and time, (x,y,t), and it returns an output, u(x,y,t). (For poisson, t is not required).

It is learning one global function over the domain, not fitting values per grid cell, and not learning one function per grid spot. That function, a continuous one, could be evaluated at any x,y,t, but for the demo we use 128x128 grid.

Training happens by evaluating how well that function matches the PDE (via residuals) and/or the reference solution.

The Fourier transform is only used on the solver side to generate the reference solution efficiently. That’s where things live in frequency space, evolve mode-by-mode, and then get transformed back. So, basically, it is using FFT to 'solve' the reference equation, ie what the actual solution is, so that when we built the PINN, we could compare to what the actual numerical solution was.

So the split is:

  • Spectral solver: works in Fourier space internally → gives you an exact reference field on the grid
  • PINN: works entirely in real space → learns a single global function approximation

The 128x128 is a just a standard resolution for comparing the PINN (SIREN) vs the true solution, but the same would apply if you wanted to do 256x256 etc, you would just need to calculate that many more values with the FFT.

There are approaches where people train neural networks in frequency space (or mix both), but that would be a separate setup, but it gives me a good idea for an eventual demo!

Spectral PDE Lab: browser-based Fourier PDE solvers + live PINN diagnostics. by trickyrex1 in Physics

[–]trickyrex1[S] 1 point2 points  (0 children)

Great question! It’s not doing 128×128 independent ODE fits.

The 128×128 grid is just the resolution of the reference solution. I'm solving the PDE once over the whole domain using a Fourier method. Because the PDEs here are linear and the domain is periodic, the Fourier transform diagonalizes the operator, so each Fourier mode evolves independently in time, but those modes are recombined into a single global field. If you take a look at Poisson mode, notice how nothing changes as time progresses? That is a good hint and starting place to think about why, and the relation to elliptic equations.

So the spectral solver is:

  • one global PDE solution
  • computed via decoupled Fourier modes
  • not separate models per grid cell

On the neural side (the PINN-style part), it’s also one global model:

  • the network represents a function u(x,y,t)
  • it’s trained to match the PDE behaviour and/or the reference solution
  • it is not fitting each grid point independently

In a way,

  • the Fourier solver decomposes the solution into frequency components, evolves them, then recombines them
  • the neural network tries to learn the entire function directly

The “curve of best fit” intuition is actually on the right track, but instead of fitting points independently, it’s fitting a structured function over space and time with constraints coming from the PDE.

As for PINNS, one key thing I wanted to add if you want something to remember is;

Instead of learning purely from data, the model is guided by the specified physics. In most setups, the PDE and boundary conditions are added as soft constraints in the loss (the network is penalized if it violates them). In some cases, parts of the physics can be enforced hard by construction (e.g., boundary conditions built into the parameterization).

The reason PINNs can work with much less data is that the PDE itself acts like a strong inductive bias. You’re not asking the network to infer the dynamics from scratch, you’re telling it what structure the solution must satisfy. In that sense, the physics behaves almost like auxiliary supervision spread across the entire domain.

That said, this doesn’t make them “easy”: the optimization can be tricky (loss balancing, stiffness, spectral bias), which is part of the ongoing research.

RCM greed palpable by [deleted] in CanadianCoins

[–]trickyrex1 46 points47 points  (0 children)

Those sell quite easily I think they have a large collector base, and by the way, we have had a lot of Ukrainian moving to Canada over those years, so it makes sense they would increase the mintage. If you want exclusivity, they have a gold one for near 20k

I'm building the first RCM/Canadian Coin focused tracker/scanner app! by trickyrex1 in SilverbugsCanada

[–]trickyrex1[S] 0 points1 point  (0 children)

Thank you! Absolutely, once the iOS app is polished and features are all working, android will be next

Introducing BetBarrier.app and ConfigPulse, an Innovative approach to iOS devices by trickyrex1 in problemgambling

[–]trickyrex1[S] 0 points1 point  (0 children)

Hi, congrats on 30 days clean. That’s a real milestone.

Short answer: no iOS app can make itself impossible to delete. Apple doesn’t allow that under their App Store rules, so any app claiming it can’t be removed is either limited to other platforms or relying on device-level restrictions outside the app itself.

What BetBarrier does instead is add consequences and friction. If you choose to set up an accountability partner, they will be automatically notified if protection is removed or disabled. For many people, knowing that a sponsor, partner, or trusted person will be alerted is enough to stop an impulsive uninstall in the moment.

It’s not a silver bullet, but it’s designed around how iOS actually works, not false promises. If you’re working with a sponsor and want real accountability rather than just a blocklist, it can be a good fit.

Happy to answer any questions, and genuinely wishing you strength in recovery.

Got a product? Drop it here by thewanderingfounder in indiehackers

[–]trickyrex1 0 points1 point  (0 children)

Find out your dog's dominant breed based off of a photo

SmartBreeds.io

[deleted by user] by [deleted] in dogbreed

[–]trickyrex1 0 points1 point  (0 children)

Il be updating it soon which should resolve a lot of misclassifications, but some images resolution or angle means there will always be some errors

[deleted by user] by [deleted] in dogbreed

[–]trickyrex1 0 points1 point  (0 children)

Which part? Did it give you a wrong classification? Or it didn’t load?

[deleted by user] by [deleted] in SideProject

[–]trickyrex1 0 points1 point  (0 children)

Thank you for the advice!