Programming Fix for concurrent requests breaking Symfony's Remember Me Currently I am building software in Symfony 5.2 and noticed that my remember me was not working correctly (many of my users kept complaining about getting logged out everyday). I debugged it and found that concurrent requests can actually break the remember me
Symfony Doctrine Fixtures always exclude table In application development you usually have migrations you run to pre-seed default application schema and data into the database (it is also used for updating and rolling back database changes)
Programming Convert Doctrine entities to arrays for checking changes I've been building a bunch of Sync code for a CRM and custom website recently and needed a quick and efficient way to track what entities/fields actually
Programming Symfony & Doctrine repository running queries on wrong Entity Manager Today I setup Symfony 4 with two entity managers (two different MsSQL databases) and was having issues with my custom repository functions for entities on my second entity manager querying
Programming FastText encoding issues in Windows using PowerShell piping I wrote a pre-processing script in Python for cleaning up my data before giving it to FastText. I was running this in Windows and instead of writing the file output code I decided to use piping (via the > character). Anyways, I was having