I am on the cloud!

Sucessfully deployed my first Google app engine app on the cloud. Here are some pics. Here is how the app looks in the browser:   About the app: It uses google engine api user to display contextual message entered by the user.The user can log in or use service as an anonymous user.   Here is the url:Yask’s Chat   Continue reading I am on the cloud!

The best source of inspiration.This is the real example of Autodidacticism.(~Mahabharata)(~Lord Krishna)

In the Hindu epic, the Mahabharata, Ekalayva is depicted as a tribal boy who was denied education in the science of arms from royal teachers from the house of Kuru. Ekalavya went to the forest, where he taught himself archery in front of an image of the Kuru teacher, Drona, that he had built for himself. Later, when the royal family found that Ekalavya had practiced with the image of Drona as his teacher, Drona asked for Ekalavya’s thumb as part of his tuition. Ekalavya complied with Drona’s request, thus ending his martial career.   Continue reading The best source of inspiration.This is the real example of Autodidacticism.(~Mahabharata)(~Lord Krishna)

Another Migration!

I started Web Development by reading O’relly’s book.The book was super motivating.Ever since then I have followed thereof instructions for running Php  based website on Apache web server. I have recently been involved with lots of Python Coding.I must admit  , this is getting weird.It’s becoming my favourite programming language.The more I code in it , the more I love it.There is just so much to learn , and Python is Damn easy! Any one with endless coding sessions can get bored.That’s why , I often get myself involved in small projects related to what I am learning.Yea!I am thinking to take my … Continue reading Another Migration!

Learning Python!

Finally doing some python work.I finally made a module and distributed it in pyPI[Python Package Index].Also , I couldn’t stop myself from pushing the project to my repository. The cool thing about modules of Python is that they can be easily installed , distributed and reused.Similar to libraries in Java , but it’s easier in python to install the module. To create an installable module , create a separate file setup.py which will be used to install via terminal . It’s contens should be as follows from distutils.core import setup setup( name = ‘nester’, version = ‘1.0.0’, py_modules = [‘nester’], … Continue reading Learning Python!

Sayings of Chanakya!

1) “Learn from the mistakes of others… you can’t live long enough to make them all yourselves!!” 2)”A person should not be too honest. Straight trees are cut first and Honest people are screwed first.” 3)”Even if a snake is not poisonous, it should pretend to be venomous.” 4)”There is some self-interest behind every friendship. There is no friendship without self-interests. This is a bitter truth.” 5)” Before you start some work, always ask yourself three questions – Why am I doing it, What the results might be and Will I be successful. Only when you think deeply and find … Continue reading Sayings of Chanakya!

Finally GRUB 2 boot menu problem solved!.

To understand the solution , It would be better if we discuss about different types of partition and different UEFI first. The most common partition type we have heard of is MBR.While I was trying to fix the bootloader , I realized mine had GPT partition.That meant I couldn’t have loaded OS in UEFI mode as it was written is bootable USB for MBR system. I downloaded a software and re-wrote Ubuntu , but this time for GPT with UEFI , and now the problem seems to have gone! 😉 . To write data ,or create partitions on the hard … Continue reading Finally GRUB 2 boot menu problem solved!.

UEFI /BIOS secure boot crap!

BIOS is the first thing that appears in older computers. I recently purchased a new Laptop with UEFI . It felt awesome at first.The booting experience was quick and smooth.There was no flickering in the screen to indicate now the windows starts to load.Instead , the loading appears almost instantly as you press the power button. I had purchased this laptop as it came with pre-installed windows.Never had I thought this would create wonderful problems for me.I am seriously addicted to Linux.But also wanted Genuine windows on the dual boot.But little did I knew about this stupid secure boot crap. … Continue reading UEFI /BIOS secure boot crap!

Fermat’s Little Theorem

Let’s visually prove Fermat’s Little Theorem. Say , we have 4 beads of different colours (Red and Blue).We can arrange all the beads in Say , we remove those combinations where all the beads are of same color.In this case m there will be 2 such beads.If we remove 2 , we have 6 combinations remaining. What we observe from the remaining combinations is interesting.If we join the beads from beginning to end to form a circular neclace , we observe of all the different 6 combinations of necklaces , they can be distinctly be divided into 2 forms.Essential thing … Continue reading Fermat’s Little Theorem