'क' पासून...

केव्हातरी कोल्हापूरच्या कर्तव्यतत्पर केळकर काकांबद्दल काकांच्याच कचेरीतल्या केशवने काकूंसमोर कागाळी केली. काकू कावल्या. काकूंनी कपाटातून कात्री काढून काकांच्या कामाचे कोरे करकरीत कागद कचाकचा कापले. काकांचे कापलेले कागद केशवानेच कचऱ्यात कोंबून काकांच्याच किचनमध्ये ‘कजरारे-कजरारे’ कवितेवर कोळीनृत्य केले. काकूंनी कागद कापल्याचे कळताच काका कळवळले. काकांनीही कमालच केली. काकांनी काकूंचे काळे कुळकुळीत केस कात्रीने कराकरा कापले. काका काय करताहेत काकूंना कळेनाच! काकूंनी कर्कश्श किंचाळून कलकलाट केला. काका काकूंची कसली काळजी करणार! काकांना कामाची काळजी....

सप्टेंबर 20, 2014 · 1 min · 192 words · शंतनू

Management Lesson

Disclaimer: All characters in the story are not at all imaginary. Any resemblance to person living or dying of work is purely intentional. One night when the whole world was sleeping, a thief broke into the house of a washer man. The washer man was fast asleep but the donkey and the dog were awake. The dog decided not to bark since the master did not take good care of him and wanted to teach him a lesson....

ऑगस्ट 15, 2014 · 2 min · 383 words · शंतनू

Tao of Programming

The Silent Void Thus spake the master programmer: “When you have learned to snatch the error code from the trap frame, it will be time for you to leave.” 1.1 Something mysterious is formed, born in the silent void. Waiting alone and unmoving, it is at once still and yet in constant motion. It is the source of all programs. I do not know its name, so I will call it the Tao of Programming....

जुलै 21, 2014 · 17 min · 3497 words · शंतनू

Unique Date

एप्रिल 27, 2014 · 0 min · 0 words · शंतनू

Fizz Buzz

Problem: Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”. f = lambda x: 'FizzBuzz' if not (x%5 or x%3) else 'Fizz' if not x%3 else 'Buzz' if not x%5 else str(x) for x in range(100): print(f(x)) Fizz Buzz problem

एप्रिल 22, 2014 · 1 min · 73 words · शंतनू