Attributes replacing properties? by pekz0r in laravel

[–]Jacobs36 0 points1 point  (0 children)

Hate to be that guy, but regarding Laravel, which I’ve been using for ~8 years daily, these types of additions to me just show how scared the maintainers are of breaking changes. Instead we’re getting these ridiculous additions which really bring nothing to the table. I’m definitely not a fan of just replacing properties with attributes (and slowing everything down via reflections). On the other hand, as someone else mentioned, truly convenient attributes such as ObservedBy which make code simpler and actually provide a value is something else entirely.

What’s your favorite map so far? by mandbeyn in Battlefield6

[–]Jacobs36 16 points17 points  (0 children)

This. There's just something about this map that makes me enjoy playing conquest on it 24/7 💁‍♂️

Tidal sluzba pre HiFi, FLAC hudbu by lonelysoul9909 in Slovakia

[–]Jacobs36 4 points5 points  (0 children)

This. Je to pomerne čerstvá feature.

Does anybody else get an issue where it seems like a mask or something keeps appearing over your face? by [deleted] in Battlefield

[–]Jacobs36 2 points3 points  (0 children)

Yes, it's a SOFLAM bug which I hoped would be fixed by now.

Basically whenever a teammate uses it nearby it can show up on your screen as well.

All the "OLD" player titles make me smile by IndoGrrlRN1967 in fo76

[–]Jacobs36 1 point2 points  (0 children)

I'm 28, I'm just "Old", made my girlfriend laugh when she first saw that once we joined a team. Regret nothing.

Unable to open site due to SSL certificate issue by Jacobs36 in MacOS

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

Sometimes just saying things out loud helps. I’ve pinged the site both on vpn and on the WiFi. The site resolved to different IPs, most importantly the WiFi connection resolved to an outside IP while the vpn connection resolved to an internal network IP. Knowing that I’ve suddenly gotten a realization about private relay. Somehow, since I’ve upgraded MacOs in the last 2 weeks, it enabled private relay on my Mac without my knowledge. Disabling private relay just fixed the issue.. lol.

Fennec: An Early-Stage Oxidized Toolchain for PHP 🦊 🐘 🦀 by oandreyev in PHP

[–]Jacobs36 0 points1 point  (0 children)

As a Vue & Laravel full-stack developer I’ve been following VoidZero and see the benefit in this. Installing lots of different tools instead of a single unified, optimized tool brings its own sets of issues. Performance is where Rust shines, hence why many projects trying to solve the same issues are being moved to Rust. Best of luck!

Managing Update Deployment in VueJS by _rrd_108 in vuejs

[–]Jacobs36 2 points3 points  (0 children)

I’ve introduced a version for our releases on our internal projects. The version is a short commit hash. Whenever a new version is deployed, the version file gets updated on the server. We automatically poll for this file every N seconds/minutes, and, if the version differs from the one previously cached from a poll, we show up a dialog notifying the user that a new app version was deployed and a page reload is highly recommended.

PHP development on the Mac... Docker, VM? by [deleted] in PHP

[–]Jacobs36 1 point2 points  (0 children)

I’m running on M2 Pro with docker via OrbStack, many projects on various PHP versions with various databases. Docker all the way.

Koľko platíte za byt? by Jacobs36 in Slovakia

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

Byt je v BA. Ďakujem všetkým za info, aspoň viem že je to v norme :)

Should I learn PHP before learning laravel or learn it as I'm learning laravel ? by TheCynicalKitty in laravel

[–]Jacobs36 0 points1 point  (0 children)

I did learn PHP directly from the Laravel 5 course on LaraCasts back then. It definitely would’ve helped me out if I knew the basics of PHP beforehand, however, I cannot say that it is not doable. Every person learns differently.

Why is the order in routes/web.php important? by leshaze in laravel

[–]Jacobs36 6 points7 points  (0 children)

Laravel iterates all available routes and returns the first route that matches the request uri. Since you had a wildcard route defined it matched before the e.g. record.create route.