Mihai SerbanHow to handle AWS SES bounces and complaintsIf you’re thinking of implementing AWS Simple Email Service for your product, you might find out that you need a flow to handle email…Nov 2, 20186Nov 2, 20186
Mihai SerbanHow to fix broken images in React.In one of my recent projects we encountered many images which were missing from our S3 bucket. When I see something like this it just…Oct 25, 2018Oct 25, 2018
Mihai Serban#javascript ES6 cheatsheet — Async AwaitAsync/Await is a new way to write asynchronous code. Previous options for asynchronous code are callbacks and promises.Oct 21, 2018Oct 21, 2018
Mihai Serban#javascript ES6 cheatsheet — GeneratorsA generator is a function which can be exited and later re-entered. Their context (variable bindings) will be saved across re-entrances.Oct 21, 2018Oct 21, 2018
Mihai Serban#javascript ES6 cheatsheet — PromisesPromises are one of the most exciting additions to JavaScript ES6. Promises are a pattern that greatly simplifies asynchronous programming…Oct 21, 2018Oct 21, 2018
Mihai Serban#javascript ES6 cheatsheet — Helpful string functions.includes( )Oct 21, 2018Oct 21, 2018
Mihai Serban#javascript ES6 cheatsheet — Set & WeakSetA Set is a collection for unique values. The values can be primitives or object references.Oct 21, 2018Oct 21, 2018
Mihai Serban#javascript ES6 cheatsheet — ModulesPrior to ES6, we used libraries such as Browserify to create modules on the client-side, and require in Node.js. With ES6, we can now…Oct 21, 2018Oct 21, 2018