Javascript Closure Function
One of the most interesting concepts of Javascript Closure is the ability the retain/remember its value even after the closure. I attached several examples of how closure is used in javascript. Here is a simple example. A simple closure function.Closure...
Cannot drop sequence drizzle.__drizzle_migrations_id_seq because other objects depend on it [DRIZZLE POSTGRES]
You are trying to initiate drizzle -kit push and you have this error message at the terminal “cannot drop sequence drizzle.__drizzle_migrations_id_seq because other objects depend on it”, So what sould you do to solve this issue. Try to DROP the...
Download NVM for Windows
I recommend you learn to install NVM before installing the node.js packages. The NVM is a node package versioning where users can select which nodejs version to use when developing web applications. Before I show you how to install NVM,...
ENOENT: no such file or directory, open ‘C:\next14\.next\BUILD_ID’
Are you having this weird error when you try to launch your Next.js. Maybe this is the solution you can do to solve the issue. ENOENT: no such file or directory, open ‘C:\next14\.next\BUILD_ID’ .There is something wron with the next14...
Javascript Tutorial 4: Coding Class Penang
Let’s explore JSON file structure and how you can retrieve information from a JSON format. Lets look at the code below. Json array can store different type of data Strings: Like names, titles, or descriptions. Numbers: Like ages, prices, or quantities. Booleans: True or False values. Objects: Groups...
Xampp Mysql Error
If you are running Xampp and found that you experience MySQL Error with the following error message: (as describe below), you can solve the MySQL issues using the backup folder. Let me show you step by step how to resolve...
Drag and Drop Javascript: Coding Class Penang
One of the coolest parts of the javascript is the ability to create human interaction masterpieces. Allowing users to drag and drop objects in web applications is one of the coolest features for your web design and web application. Writing...
Javascript Tutorial 3: Coding Class Penang
Have you heard of Canva? not the Canva that you used to design banners and fliers, what I meant is HTML Canva. Recently I completed a project for one of my clients using Canva. With the flexibility of Canvas, coming...
Regex for PHP
You maybe looking for a way to perform string comparison. Regex, short for “regular expression,” is a powerful and flexible tool used for pattern matching and searching within text. In regex, we use the regex function to perform matching, validation...