Clear a map in Go

Clear a map in Go

0
In this post, I will share with you a quick tip to clear a map in Go. There are two ways to clear a map...
Check if order was created by customer or admin in Magento 2

Check if order was created by customer or admin in Magento 2

0
A little trick to check if order was created by customer or admin in Magento 2. In Magento 2, by default, if order was created...
Check if key exists in a map in Go

Check if key exists in a map in Go

0
In this post, I will show you a tip to check if key exists in a map in Go (golang). When we access the value...
URL Encode Query String Parameters in Go

URL Encode Query String Parameters in Go

0
In this post, I will show you how to perform URL encode query string parameters in Go (golang). To URL encode query string parameters in...
Capture webcam images using ffmpeg on MacOS

Capture webcam images using ffmpeg on MacOS

0
To capture webcam images using ffmpeg on MacOS, use the following command: $ ffmpeg -f avfoundation -r 30 -i "1" -frames:v 1 capture.jpg To...