Apply image effect to Raspberry Pi camera module
To apply image effects to the camera, we will use the image_effect property to set the appropriate effect to the camera while working.
The list...
Capture images from Raspberry Pi camera module using picamera
Working with Raspberry Pi camera module is pretty fun, and it gets even more interesting if we can do it via some code. Let’s...
Serve static files with ExpressJS
Serving static files is one of very basic techniques when working with NodeJS and ExpressJS. For anyone who doesn’t know about it, or want...
Schedule shutdown computer on Windows
On Windows, you can shutdown computer easily via Start Menu > Shutdown button click.
So what if you want to schedule a shutdown, what should...
Config multiple database connections in Laravel
In Laravel, you can easily configure multiple database connections for your Eloquent models and queries.
First, you need to config the database connection in config/database.php
...