EDDYMENS

Published 2 years ago

Here's How To Create A Responsive Pagination Outline | Scrollable

Displaying all page numbers can distort your page if there are too many of them. You can prevent this by applying a horizontal scrolling effect to the pager. By applying a scroll effect you can tack away page numbers that don't fit the page and access them by scrolling. The code below show...

Published 2 years ago

PHP Check If String Contains

...

Published 2 years ago

Prevent MacOS From Creating A .ds_store File

If you work on macOS, you might have noticed whenever you add image files or some media file to your project, a hidden file is created automatically. This is how macOS stores metadata for media files. But you don't want this in your project. There are two ways you can prevent this...

Published 2 years ago

Laravel PHP 8 Throws Error Too Few Arguments To Function | Fix

Generally, when you get this error your controller is likely expecting more arguments than you are passing to it. However, if you got the above error after updating to PHP 8 then it's likely an issue with PHP 8s expected parameter arrangement. In PHP 8, all required parameters nee...

Published 2 years ago

Resize Image To Exact Dimensions | Imagemagic

ImageMagick provides a host of tools like the Convert command for modifying images. The Convert command can be used to resize images. You can resize your images in two ways....

Published 2 years ago

Compile NodeJS To Executable

You can bundle your NodeJS project into a single executable program for several operating systems using the PKG CLI tool . This is a tool provided by ...