PHP jpg compression Imagick vs Vanilla
Compressing a jpg file in PHP can be done without installing a third-party library, we call this method Vanilla as it is done stock standard, no extras needed. Imagick is…
Compressing a jpg file in PHP can be done without installing a third-party library, we call this method Vanilla as it is done stock standard, no extras needed. Imagick is…
To set a bitrate for a video encode in FFmpeg use -b:v which means bitrate for video, then specify the bitrate value. This can be k for kBits or m…
The hover selector in CSS is a very well known selector, it can do great things for when your mouse hovers over an element. However this snpappy change can be…
Checking if a channel is live and streaming on Twitch requires a client id, you can get your client id from here. The endpoint for getting a streams information is…
Installing the new PHP 7.4 Beta 4 on an Ubuntu 18.04 server, 7.4 Beta4 was released on the 22nd of August 2019. Start by updating package lists and information sudo…
The major PHP Version 7.4 is set to be released November 28th 2019. All indicators are that it will again make PHP faster, building on the improvments 7.2 and 7.3…
Chart JS is a very comprehensive framework for creating and customizing many charts and graphs. The ease of use and ability to configure the charts makes Chart JS a good…
It may be getting data from inbetween two dates or even a SELECT query for data from now to 1 week ago or older than 1 month, there is a…
Using CSS keyframe animations on page load can add something extra to your design. Whether it be animating a border, a background change or section grow, using keyframes to change…
Unix epoch time is the amount of seconds elapsed since 00:00:00 1st January 1970. Even more interesting is in 2038 the count will go to negative as it will reach…