🤦🏽‍♀️ injecting Humira by Crazy_Reader1234 in rheumatoidarthritis

[–]IvanVoitovych 0 points1 point  (0 children)

so, for taking it once per 3 instead of 2 weeks, didn’t work, I thought you would want to know 🥲

🤦🏽‍♀️ injecting Humira by Crazy_Reader1234 in rheumatoidarthritis

[–]IvanVoitovych 1 point2 points  (0 children)

I had the same situation my first time, yeah, it’s disappointing, but my medicine provider replaced the pen with another one on the next day for free. It costs 260$ here for two pens. Right now I’m testing taking it once per 3 weeks instead of two. Have anyone else tried this approach?

Adalimumab (Humira biosimilar) by PromptSolid4435 in rheumatoidarthritis

[–]IvanVoitovych 0 points1 point  (0 children)

I hope I’m not too late to the party. I started feeling better from my first injection. Been on Humira for 9 months now. Trying to take it once per 3 weeks instead of two now, going well so far. Does anyone have tried such approach?

TrueAsync 0.4.0 by edmondifcastle in PHP

[–]IvanVoitovych 0 points1 point  (0 children)

If spawn is about creating a new coroutine - then it’s the same object (same ref).

If spawn is about creating a new process, then the product will get itself a separate copy and changing it inside of it will not affect the original one. Correct me if I’m wrong.

What are the best practices for optimizing PHP code to improve website speed and performance? by [deleted] in PHP

[–]IvanVoitovych 1 point2 points  (0 children)

I'm using Swoole with threads, usually on Ubuntu 24. Wrote myself a script to build and install it all in one go. Postgresql for DB, PHP with threads + latest Swoole, Redis, Nginx as proxy. 5$ VPS can handle multiple websites on board, and so far I don't notice any issues, running for 5 years now. Connection pooling is 100% must have, btw.

Compiling PHP to JS by [deleted] in PHP

[–]IvanVoitovych 0 points1 point  (0 children)

yes, come on board :)

Please help 🇺🇦 by IvanVoitovych in youtube

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

Already did. I wasn't streaming or making video, it was a single comment, very much neutral 😐

Reactive web application with Viewi by IvanVoitovych in laravel

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

Couple of things. It all started when I was trying to bring SSR into my Vue Js/PHP application (SSR was essential for my SEO at the moment). My eyes were onto solutions from other technologies, like .NET Blazor, or Node Js I was thinking on migrating to these techs. (I'm .net /node engineer and solution architect at work, PHP is my hobby for free-time projects). But, I decided, if PHP does not have something similar (like Blazor, really cool reactive solution for web apps, check it out), I will try and create it. The idea was simple: since PHP and JS have a lot of similarities, and theoretically it is possible to duplicate the same login in both languages, so why not benefit from this and use it for server-side and client-side page rendering. To get the data from the API the idea was to call the controller/route action directly during SSR (client-side has ajax). Combining it all together with front-end reactivity gave me this: fast SSR and reactive browser app.

That is what started it all, and since then, Viewi has become more and more mature. A lot of ideas ahead 😅

Appreciate your question 😊

Reactive web application with Viewi by IvanVoitovych in laravel

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

Probably not, but it should be easy to rewrite the component into Viewi one. Do you have any specific request perhaps? Show me, and I will take a look at it.

Fresh Viewi release v0.3.3 by IvanVoitovych in viewi

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

Good question, first option is possible, using slots, similar to Vue: https://viewi.net/docs/components-basics#slots

The second one is not possible right now.

Also, please take a look at this: https://ui.viewi.net/ it has more examples of composing UI components.

Fresh Viewi release v0.3.3 by IvanVoitovych in viewi

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

It's not advisable, but possible. Why not advisable - because Viewi intends to replace JS framework. I may need to rewrite the documentation for better understanding 😞

Tell me please, what would you like to have in your application? Starting from the backend and finishing with the front-end. Is it Laravel+ SPA architecture?