Posts

Showing posts from April, 2014

How to know your prepaid BSNL mobile number

I was informed to dial"*888#" to know my BSNL prepaid number last week in Bangalore for my new SIM. I tried it multiple times for 2-3 days but in vain. After searching in Google, I figured out that it is: " *1# "

New-Relic T-shirt real or gimmick?

I installed and used one of the New Relic products in beginning of 2013. I was promised that a T-Shirt would be shipped to me for trying their product. They asked my size and I  provided them  the same. I waited it for 3 months but the shirt never reached me. I pinged them again to mention that the shirt has not reached me. They promised a delivery again, but it never reached me even after an year. Now I a m really wondering if it is a real gimmick from their side. Note: I live outside U.S.

C++11 Feature Series: 1. Lambdas

Image
Lambdas are simple but powerful anonymous functions in C++11.You can use lambdas wherever a function object or a functor or a std::function is expected. A simple example to explain Lambda functions in C++11. Attached is a sample to demonstrate Lambda.