Musings of a programmer
Blog
Efficient Entity Updates with the API Platform’s patch_item Operation
One of the handy features of the API Platform is the ability to use the patch_item operation to update specific fields of an entity, rather than replacing the entire object. This can be a more efficient and flexible way to handle updates in your API. To use the patch_item operation, you’ll need to make a …
Continue reading “Efficient Entity Updates with the API Platform’s patch_item Operation”
CapacitorJS
I have been using Cordova or Phonegap build for years. Recently, Phonegap was closed down. On a current project, I had to develop a feature I hadn’t done before. I could find numerous plugins on Cordova site. So… One by one I start testing. None of them solved the problem. I searched the plugin list, …
MacOS Setup for PHP Dev
I wanted a simple, basic Mac OSX setup for PHP dev. With as little as possible manual work. My current work as you from a previous post is: Symfony 5 Api-Platform VueJS front end Mac OSX 10.15.5 comes with php 7.3.11 out of the box. That was high enough for my initial dev. So here …