Raspberry Pi & Camera

Apply image effect to Raspberry Pi camera module

0
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...
Raspberry Pi & Camera

Capture images from Raspberry Pi camera module using picamera

0
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...
NodeJS & ExpressJS

Serve static files with ExpressJS

0
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

Schedule shutdown computer on Windows

0
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

Config multiple database connections in Laravel

0
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 ...