python template engine

Jinja2 is a full featured template engine for Python. It has full unicode support, an optional integrated sandboxed execution environment, widely used and BSD licensed. Python template engine

Your android phone as car dvr

Acting as a car blackbox, dash cam or auto DVR, DailyRoads Voyager continuously records videos and captures photos during your journeys. The app automatically records everything, but only important events are retained for future reference or as evidence. You get to choose what to keep, simply by touching the screen, even while you drive. Key […]

PocketBook A10 hard reset

So, how to reset PocketBook A10 Turn tablet off; Press and hold “Vol +” and “Power” at least 7 seconds; When service window appears release buttons; Select “wipe data/Factory reset”; After few minutes hard reset of PocketBook A10 completed

Setup apache2 with ssl on ubuntu

First of all we should install apache web server and add mod_ssl sudo apt-get install apache2 sudo a2enmod ssl Create folder for storing ssl certificates sudo mkdir /etc/apache2/ssl Now we generate self signed certificate for one year sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/apache2/ssl/server.key -out /etc/apache2/ssl/server.crt This command will ask you […]