Skip to main content

Cloud-Based Driver Monitoring and Vehicular Diagnostic With OBD2 Telematics


Comments

Popular posts from this blog

IbirdsPro – Identify birds in Sri Lanka via their colours

This application for nature lovers especially who interested in birds. This is recommended for anyone to improve the knowledge about birds even for beginners. Users can use this application in anywhere because this application doesn’t need any internet connection. This is the upgraded version of the application - Ibirds which is capable to identify forest birds in Sri Lanka. There are more enhanced features in the application. 3 detailed sketches with including 8 parts. (bill, head, face, neck, feathers, breast, tail, legs) High efficient colour matching algorithm Optimized for both android phones and tablets. Contain a large database about the birds. This is the list of birds containing in three sections in IBirdsPro 1.0 version. Section 1     Crimson-fronted Barbet Brown-headed Barbet Yellow-fronted Barbet Brown-capped Woodpacker Yellow-crowned Woodpecker Lesser Yellownape Streak-throated Woodpecker Rufous Woodpecker Black-rumped Flameback Greater Flameb

Install Mongodb using binaries in linux

Mongodb is open source, no sql database which widely use in modern applications. You can go through official mongodb site for more details. First we need to download the suitable(32-bit or 64-bit) tgz file through this link Then put that tgz file where you need (Note :- I put that file in 'installs' directory in Home directory) Extract the tar file Then we can see there is only one directory which called 'bin' inside the extracted mongodb directory. Now we need to create additional four directories which called conf , data , pid and logs . Then we need to add a mongodb configuration file to conf directory which called mongo_default.conf Here is my file. You have to set paths in the file according to your configurations.  If the configuration file is configured correctly, now you can start mongo server explicitly and access mongo database. First we need to go the the mongodb bin directory. Start mongo server with

Redirect non-www URLs to www

In web hosting, this would be a challenge for beginners and even for experts. We might feel this can be achieved through CNAME records. Though we can achieve this with a conditional rule in .htaccess file. RewriteEngine On RewriteCond % { HTTP_HOST } ^ yourdomain . com [ NC ] RewriteRule ^ ( . * ) $ http : //www.yourdomain.com/$1 [L,R=301] Where youdomain.com is your actual domain name.