ADEKOLA Abdwahab

ADEKOLA Abdwahab @codarbind

About: Coding solutions one semicolon at a time. @wahabind tweets

Location:
Nigeria
Joined:
Apr 10, 2021

ADEKOLA Abdwahab
articles - 26 total

Circular Dependencies in NestJs

Circular dependency is a situation where two modules depend on one another. One way to resolve...

Learn More 0 0Jun 15

'List<Object?>' is not a subtype of type 'PigeonUserDetails?'

After I rebuilt my project to resolve an issue with a @freezed class my Google login feature started...

Learn More 30 5Sep 23 '24

SMTP NODEMAILER TOO MANY CONNECTIONS

Straight to the point, if you encounter this error while sending emails via nodemailer module then...

Learn More 0 0Aug 6 '24

Vercel: Server Timed Out

Got this screenshot in my DM as the frontend developer on a project,some certain pages are not...

Learn More 0 0Jul 21 '24

How To Sort Array of Strings

I was building a pdf merger that takes two pdf files, merge them, then return a single file - result...

Learn More 1 0Jul 5 '24

550 5.7.1 Relaying denied

Ooops That's the error I got when I tried to send a test mail to a mailbox. We observed that...

Learn More 1 0May 14 '24

WEB API VULNERABILITY THROUGH OTP

Broken Authentication is a popular part of OWASP TOP 10 list. Authentication is one of the most...

Learn More 0 0May 8 '24

How would you handle image upload?

User uploads profile picture. Images are converted into URLs via third party asset storage. Backend...

Learn More 0 0Mar 21 '24

How to Automatically Remove Console Logs and Other Code Snippets

Why Hidis? Supports ES6 ✅ Supports JS ✅ Supports Typescript ❌ - coming soon Supports...

Learn More 2 0Nov 3 '23

Always Return an Object - Why?

Look at this function: function canShare(username){ .... Do some checks ... return true } Code...

Learn More 0 0Jun 3 '23

Failed to Read Dockerfile

You got this error probably because you gave the Dockerfile an extension e.g...

Learn More 0 0Apr 30 '23

How To Search Past Commands in Powershell

You need to issue a command that you had issued in past, but you cannot remember the how command is...

Learn More 0 0Mar 16 '23

How to fix 'Unsupported platform for fsevents@1.2.9: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})

To resolve this issue, you can make your build command to be: `yarn set config ignore-engines...

Learn More 1 0Mar 16 '23

Today: Setting Up A PR Pipeline

Today one of my tasks is to setup a CI PR pipeline for a project. I want to run some tests on a...

Learn More 0 0Mar 3 '23

Web Vulnerabilities: OTP or Reset Link :

One of the principal actions over the internet is authentication. Authentication, not to be mistaken...

Learn More 0 2Feb 9 '23

ORM: Prisma or Sequelize?

You are considering which ORM to use for your project, as someone who has used both Prisma and...

Learn More 1 2Jan 25 '23

psql is not recognised

psql : The term 'psql' is not recognized as the name of a cmdlet, function, script file, or operable...

Learn More 6 0Nov 22 '22

How does webhook works

Here is a video link to this explanation: https://youtu.be/SP4x9VHNEC8 A quick analogy for a webhook...

Learn More 0 0Nov 16 '22

Postman using GET for POST methods (endpoint requests)

I love using postman. But recently it started showing me shege - a Yoruba word for trouble. Anytime...

Learn More 1 0Nov 4 '22

Foreign key constraint failed on the field (prisma )

This error comes up due to the fact that you have a foreign key requirement on your DB. So you need...

Learn More 1 4Oct 19 '22

An error occurred when trying to authenticate to the FCM servers

The error message again: ` 'An error occurred when trying to authenticate to the FCM servers. Make...

Learn More 15 2Oct 19 '22

Password Security:Dynamic Salt

It is good to salt (static) your password. It is good to hash your salted password. But it is not...

Learn More 10 0Sep 23 '22

How to automatically compile Typescript files to Javascript files and run the Nodejs server automatically

When I started using typescript one of the first challenges I encountered was that I have to...

Learn More 11 2Mar 28 '22

How to host node js for free with custom domain and (free) SSL

PROBLEM STATEMENT: Inability to host node js applications free of charge and use a custom domain...

Learn More 1 0Apr 26 '21

How to Use a Variable as an Object's Key and Sub key

I have a user object that I am updating my mongodb doc with. The doc exists already, however, at a p...

Learn More 7 0Apr 13 '21

API, FUNCTIONS, BUTTON NOT FIRING IN REACT

I am currently building a MERN application. It is working fine on localhost - desktop, then I though...

Learn More 4 0Apr 10 '21