Sometimes working on a Front-end side you need to write your Front-end code while Back-end actions are still not ready.
In this case, you would need to use fixtures on FE side, in order to not mess with BE. I have found relatively new JS ES6 features, as
yieldand
iterator comes in handy for fixtures generation.
Tag: generation
PHP helper for the Random string generation
While working on my current project I was needed to generate a unique random string for an email confirmation. It’s a pretty common task and it has a bunch of simple solutions.
But I wanted it to be really random and flexible. I have ended with a helper with static functions which I want to share.