Hey fellow Laravel developers! If you're working with LLMs and tired of building abstractions for each provider, I’ve created something that might help. Check out my Laravel package for OpenRouter—it provides a unified interface for all LLM providers.
Feel free to check it out:
github.com/moe-mizrak/laravel-openrouter
Good job @DeemonicDude !
Old but I think still valid (Scunthorpe problem):
blog.codinghorror.com/obscenity-filters-bad-idea-or-incredibly-intercoursing-bad-idea
Some AI integration can improve the performance though.
I added a quick hotfix for something that slipped your notice.
github.com/Blaspsoft/blasp/pull/2
github.com/pinkary-project/pinkary.com/commit/a6d592c44c12b822b84b3c4df136d2a03f9b9e4d
basically as the tests show:
$component->assertSeeInOrder([
'Pinned',
'pinned question',
'user question 2',
'2nd nested child question for user question 2',
'3rd nested child question for user question 2',
'pinned question',
'comment on pinned question',
'user question 4',
'1st child question for user question 4',
'2nd nested child question for user question 4',
'user question 3',
'1st child question for user question 3',
'user question 1',
'1st child question for user question 1',
]);
$component->assertDontSee($answerForAnotherUser);
$component->assertDontSee('comment on another user question');
$component->assertDontSee('1st child question for user question 2');
$component->assertDontSee('3rd nested child question for user question 4');
@nunomaduro maybe even posts count can be modified in profile, it takes into account the answers to other users.
If you ask me profile should show both replies and the users' own posts, maybe there can be 2 separate sections in the profile.
I wonder, how has your experience been with Opcache and JIT? Have you seen any noticeable performance boosts, or maybe run into disastrous issues? Did you customize the settings, or just stick with the defaults? I’d love to hear how they’ve worked out for you in real-world scenarios