Author: Mithun

  • Best method to configure cleartype

    Best method to configure cleartype

    TL:DR Switch on color inversion from Magnifier and run ClearType ClearType is Microsoft’s implementation of subpixel rendering technology in rendering text in a font system. and ClearType sucks. ClearType doesn’t give the best font and the font looks awful bad even after configuring several times. I have tried it several times to get the font…

  • When I couldn’t file the RTI : Possible solutions

    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

    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…