Author: Mithun
When I couldn’t file the RTI : Possible solutions
RTI – Right to Information I tried to file an RTI from the website https://rtionline.gov.in . But no matter what I have tried, i will get the following error Only alphabets A-Z a-z number 0-9 and special characters , . – _ ( ) / @ : & \ % are allowed in Text for RTI Request…
Happy New Year 2017
Ok, we are going to a new year. As usual i am going to tell you how it was me personaly, professional and in coding. Personaly, ups and downs. Professionally, great. Coding, neutral. Now to the new year ritual, there are some changes this year, i actually achieved some of the resolutions. Yup, even i…
Fix ubuntu 16.04 macbook brightness issue after lid close
Note: All tests are being done on 2013 macbook air Ubuntu on MacBook almost works perfectly like any other laptops out there. There are some issues though. One the most annoying one is the brightness issue. Once the lid is closed, it goes to sleep state. After waking up, only 2 options for the brightness…
Serving Flask helloworld using uwsgi
uwsgi is a high performance, low-resource usage web server for deploying python application. In this post, i am going to show how to serve a simple HelloWorld application in flask using uwsgi Prerequisites pip install flask pip install uwsgi Now lets create our app.py from flask import Flask app = Flask(__name__) @app.route(“/”) def hello(): return…
Solution for gpg: skipped: ” secret key not available” in windows
This occurs when GPG is not specified in the path. Excellent solution for this problem is given by Thomas Muntaner here http://www.thomasmuntaner.com/blog/gpg-with-git-on-windows-secret-key-not-available/ He gave me the solution, I am not going to copy paste it here. Enjoy smile