Profile avatar
borja.dagi3d.net
https://dagi3d.net Product Engineer at Providence / prev. Alma Mobility & Traity co-founder / Seedcamp and 500 Startups alumni #ruby #rails 🥰 #homelab noob
28 posts 56 followers 252 following
Getting Started
Active Commenter
comment in response to post
Muy a tope con esa postura, pero es muy fácil hacer alarde de una militancia por la artesanía cuando tienes a tu ejército de minions dejándose el lomo dibujando los fotogramas a manopla.
comment in response to post
In case the css framework doesn't support that option, there is also the "cycle" view helper which is super convenient for cases like these
comment in response to post
Since the request is to exclude content with certain specific terms in a given context, wonder if they could use alternative synonyms instead.
comment in response to post
Been there. Check the PG versions, it's very likely you have a more recent one in dev.
comment in response to post
Nazis haciendo cosas de nazis. Me pinchas y no sangro.
comment in response to post
Thank you!
comment in response to post
Oh, sorry to hear that. Definitely looks quite frustrating. I think Stripe allows citizens from countries that are not officially supported as long as the business is incorporated in the US, which can be done with their service Atlas, but still looks quite a fuss though..
comment in response to post
Take a look at www.lemonsqueezy.com I think they have the same pricing as Paddle. Have not used them but know someone that has. Also, maybe Ayden allows citizens from Ukraine. They are not as famous as Stripe but several huge companies use them.
comment in response to post
Might want to take a look at FreeAgent. Have been using them for the last few years (although as self-employed/contractor) and had no issues (in my case I prefer my accountant to review everything and take care of the taxes payments) They are also a Rails company, which is cool
comment in response to post
Neel ♥️
comment in response to post
Imagino que el kit de pelucas para los juicios se venderá por separado.
comment in response to post
Another option would be to populate the env vars from a configmap or a secret and patch them with only the value key/val you want to update. Or maybe with the kubectl edit and update the whole sec directly
comment in response to post
You are absolutely right. I was thinking more about the potential hardware limitations but it's true they can still get squeezed a lot. And once it reaches its limit, you can also get a new (or more) and build a cluster which is super cool.
comment in response to post
Take a look at community-scripts.github.io/ProxmoxVE/sc... to get an idea of the different possibilities and some help to get things up and running. In case you didn't know them, the homelab and selfhosted subreddits are great, that's a recurring question and might get some good suggestions
comment in response to post
My understanding is that with the Pi you are kinda "limited" to the things you can do at the same time, that is, each Pi is converted into a specific service one at a time. Maybe a small PC like a NUC with some decent CPU cores and ram to virtualize with Proxmox and the possibilities are endless
comment in response to post
Totally worth it depending on the number of queries each request makes. Faced similar issue in Azure between two different zones. Queries took ~30ms each instead of < 1ms when API so timings were stacked and was quite noticeable. I'd also recommend to use some APM to assess and debug it
comment in response to post
+1 for linear flows where there is no way to return to a previous state. Eventual manual rollbacks should be easy to handle. For more complex flows where visiting a state more than once is expected, I'd stick to the enums approach. The issue is that is hard to ensure how business reqs. will evolve
comment in response to post
I posted this question on Reddit too and a user mentioned that using the Prism parser, this could be feasible as it'd generate a relatively simple AST. I already activated it in the Rubocop config in case it would work out of the box, but it didn't, so writing a custom cop looks the way to go.
comment in response to post
Have tried rubocop(with the rails-omakase config) and SonarQube and none of them detected anything.
comment in response to post
Por si le sirve a alguien con bebé, la versión de diez de minutos All Too Well de Taylor Swift nos funcionó muy bien para dormir a nuestra hija.
comment in response to post
Thanks for sharing. And what about things like schema migrations? How long does it take?
comment in response to post
Ahh gotcha! Thanks for the explanation!
comment in response to post
Wonder if serializing an User instance could open another can of worms: that instance might contain some sensitive data that will be stored somewhere else and also could have an outdated state once the job is processed. Obviously there might be other cases where there is no need to be so "strict".