Author: Kevin
How to Style a Scrollable Horizontal List
There are often times – especially when designing for mobile screens – where you need to maximise the space available to you by styling a grid of items to be scrolled horizontally. A common use case is when you have multiple testimonials. Instead of stacking them all on top of each other, make them into…
JavaScript Date Objects: Saving Dates in Different Timezones
If you are having a problem with saving a date in a specific timezone to a database whilst you are not physically located in that timezone, then Intl.DateTimeFormat() is the solution. Let’s have a look at how!
Error Connecting to Database? Check Your Require Imports
If you are getting an error that the URI parameter to openUri() must be a string in Mongoose, check your main app run file (index.js or similar) to ensure that Mongoose actually has the info required! I was receiving this error today and it took me a good 15 minutes to solve. I just couldn’t…