Hi 👋 I’m a self-taught, full stack software engineer
I am currently located in Gorzów Wielkopolski, Poland (2 hours from Berlin, Germany) and I’m looking for my first software engineer role.
I am self-taught and am confident in using NodeJS with Express, JavaScript, REST API’s, MongoDB and the EJS templating language.
I am currently building a loyalty card web app for hair and beauty salons using these technologies and am also developing devvek, a place for small business owners to get a fully-managed website for their business for a low monthly fee.
If you have any projects, jobs, or internships and you’re looking for somebody, get in touch!
Latest Thoughts
A place for me to write about my journey, things I’m working on, and generally track my progress. Maybe you’ll find something useful – at the very least, you can learn from my mistakes!
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…