Skip to main content

Donated a meager amount to Wikipedia

Heleena is madly interested in charity works and after reading Shiv Nadar's interview in Entrepreneur magazine, it gave us some direction as he mentioned only Education can change the lives.

Been one of the early contributor of Wikipedia (13th or 18th Wikipedian, I hope), I've just donated a meager amount as it's a very good tool for Education. (In reality, these sort of things shouldn't be blogged (I know that); I just thought that it would let other people to donate to Wikipedia. Sorry for the noise)

Comments

Anonymous said…
When you are doing or done even small good thing publish as much as you can. When your are doing like that many people may scold, many people may jealous, many people may say you are showing off, but any one may impress and do the same. So don't stop to publish things like that :)
Anand Nataraj said…
Dear Rajesh,

I appreciate your noble cause... But these days I think WikiPedia is exploiting its donors... There is no transparency on how these funds are used... See to it that your donation reaches the right hands...

Keep up the good work...

Regards,
Anand
Thanks a lot, Mr. Anand for your kind time and heads up. I hope, Wikipedia will look into it. Thanks again.

Popular posts from this blog

Interview question #1

Since I have been asked to interview experienced PHP programmers, I was preparing few interview questions. I came to know, most of the people ask questions found in the Internet; most of them are like "What is the function used to connect MySQL DB in PHP". Personally, I don't like these types of questions; I'd thought the person must apply ideas what he was taught in colleges--finally I came out with one question: A product vendor has Quantity Vs. Price data like 1 -> Rs. 50 2 -> Rs. 95 3 -> Rs. 140 .... like upto 1 million data. He wants a system, which gives the price when the quantity is provided. For example, if you provide the quantity value as 2, then it should provide Rs. 95. How this system can be designed? As expected, all the people said about using database tables and quering on quantity. I have asked them to find out a system which doesn't use databases--provided the accuracy of the system may not be 100%--it may give at least 90% ac...

Interview question #2

This is related to PHP's array . An array has number of elements. All elements are integers and unique, which means there is no repetitive integers. (e.g.) $foo = array(7, 5, 9, 13, 2, 8); You have to sort the array, provided: You should scan the elements only once. You're not allowed to compare the elements when sorting. (i.e., you're not supposed to use any comparison operators) Sorted resultant array may not be the source array. How will you do that?

Converting PSD with PHP/ImageMagick

After seeing feature rich options in Imagick PECL extension at Mikko Koppanen 's (the author) website and also impressed with ImageMagick 's features, I have decided to use it for the PSD to XHTML conversion website that I'm architecting and managing. Since, the team wants programming help for converting PSD images, I have tried it (documentation is sparse on PSD handling) Converting PSD to PNG/JPEG/etc Note that, flattenImages() is needed for layered/multi-page PSD file. <?php $im = new Imagick('test.psd'); $im->flattenImages(); $im->setImageFormat('png'); $im->writeImage('test.png'); ?> Extracting PSD layers One by one <?php $im = new Imagick('test.psd'); $im->setImageFormat('png'); for ($i = 0, $num_layers = $im->getNumberImages(); $i $im->setImageIndex($i); $im->writeImage('layer' . $i . '.png'); } ?> Note that, there is a better version below In a single call with writeIm...