Thursday, May 6, 2010
Good News for Bloggers
Wordpress is coming with an app for Nokia Devices (Both Symbian and Maemo/Meego) which is written in Qt. For more information, pls visit http://blog.qt.nokia.com/2010/05/04/qt-and-wordpress-for-nokia/#more-1034.
Tuesday, December 29, 2009
Pankhudi - Wonderla - Anatha Sishu Seva Ashram
I am working with Pankhudi, NGO which is working for underprivileged children. We teach kids at Anatha Sishu Seva Ashram on Sundays. We have taken them for an outing to Wonderla and it is one the best and memorable events I involved. Few pics can be found at
http://picasaweb.google.com/vaibhav.kumar/WonderLaTrip_WS and
http://picasaweb.google.com/trivenicat/Xmas#
I thank all my friends who supported financially and morally to organize this.
--
Many Smiles
Koteswara sarma
http://picasaweb.google.com/vaibhav.kumar/WonderLaTrip_WS and
http://picasaweb.google.com/trivenicat/Xmas#
I thank all my friends who supported financially and morally to organize this.
--
Many Smiles
Koteswara sarma
Labels:
Anatha Sishu Seva Ashram,
Pankhudi,
Wonderla
Monday, December 21, 2009
Amigos Paint Event
Amigos, a community which is working for needy and poor painted a kannada primary school in Shanti nagar, Banglore. I was part of that team and really enjoyed the event. Few photos can be found at here
Many Smiles
Kova
Many Smiles
Kova
Thursday, December 3, 2009
KCR's Fast-Unto-Death ??
Its been 3 days now KCR's Fast Unto Death is going on and there are so many people(in fact very few extremists) supporting it. I belong to Telangana Region only, It is true that it is under developed, but does separate state solve the problem? The answer is NO. I wish this will end soon and people live at peace.
Jaya Ho
Jaya Ho
Tuesday, October 27, 2009
Happy times in Banglore
I had excellent time in Mumbai and its turn for Banglore for my amazing journey called Life.
Friday, September 25, 2009
Ministers - Austerity Drive
Its some time that everybody is talking about Minister's austerity drive. I have come across some wonderful article on the same. weblink is http://ibnlive.in.com/blogs/rajdeepsardesai/1/53803/politicians-and-paisepinching.html
Monday, September 7, 2009
Meet top industry leaders from Rediff, Syntel, Netmagic and more
Hey,
Just wanted to let you know about an exciting event siliconindia is organizing on September 12 (Saturday in Mumbai). It's by far the largest and most exciting event of its kind in Mumbai.
Just wanted to let you know about an exciting event siliconindia is organizing on September 12 (Saturday in Mumbai). It's by far the largest and most exciting event of its kind in Mumbai.
It is your chance to know the building of companies like Rediff.com, Syntel, Netmagic, Sulekha, Microworld and many more as their founders come and share their journey with us:
Venki Nishtala, Founder & CEO, Rediff.com
Keshav R. Murugesh, CEO, Syntel
Sharad Sanghi, Founder & CEO, Netmagic
Govind Rammurthy, Founder, CEO & MD, MicroWorld Technologies
Satya Prabhakar, Founder & CEO, Sulekha.com
There will be 30 most promising technology startups showcasing their products. You can meet these entrepreneurs and also over 30 investors.
To attend this event, register FREE at http://www.siliconindia.com/startupcity_mumbai/index.php
Watch live product demonstrations
Get a peek into cutting edge technologies
Lay hands on the best-of-breed solutions
Meet young, energetic, passionate geeks
Experience the culture of innovation in small companies
Visionary Keynotes
In-depth Panel Discussions
TIME: 8.45 AM to 5 PM
WHEN: Saturday, September 12, 2009
WHERE: Hotel RanSgarda, Bandra, Mumbai
@kova
Saturday, August 15, 2009
Monday, August 10, 2009
Finding Memory Leaks in Solaris
I work on Unix platform. I used to think that to find memory leaks/corruptions, we have valgrind in Linux, but there is no such tool for Solaris. While browsing, I came across many tools available for Solaris also and here I am mentioning about one of such tools which is simple and straight. dbx - is a utility for source-level debugging and execution of programs written in C++, ANSI C, Fortran 77, Fortran 95, and Java programming languages.
Here is step by step procedure to use it.
1)Here is my sample program
/* To Compile - cc prog.c */
int main()
{
void fun();
fun();
return 0;
}
void fun(void)
{
int *p;
p = (int *)malloc(sizeof(int));
return;
}
2) Compile this program
$> cc ex1.c
3) Start executable using dbx
$> dbx ./a.out
4) set memory checks option on check -memuse
(dbx) check -memuse
5) run the executable
(dbx) run
The output will be something like this,
=============================================================
Actual leaks report (actual leaks: 1 total size: 4 bytes)
Total Num of Leaked Allocation call stack
Size Blocks Block
Address
========== ====== =========== =======================================
4 1 0x8060c20 fun < main
Possible leaks report (possible leaks: 0 total size: 0 bytes)
Checking for memory use...
Blocks in use report (blocks in use: 0 total size: 0 bytes)
execution completed, exit code is 0
====================================================================
Here, actual leaks is 1 which is 4 bytes, at 0x8060c20 , reason is fun < main. So we can know that fun() has a memory leak.
dbx tells only function where memory leaks are there, but it will not give exact Line Number.
@kova
Here is step by step procedure to use it.
1)Here is my sample program
/* To Compile - cc prog.c */
int main()
{
void fun();
fun();
return 0;
}
void fun(void)
{
int *p;
p = (int *)malloc(sizeof(int));
return;
}
2) Compile this program
$> cc ex1.c
3) Start executable using dbx
$> dbx ./a.out
4) set memory checks option on check -memuse
(dbx) check -memuse
5) run the executable
(dbx) run
The output will be something like this,
=============================================================
Actual leaks report (actual leaks: 1 total size: 4 bytes)
Total Num of Leaked Allocation call stack
Size Blocks Block
Address
========== ====== =========== =======================================
4 1 0x8060c20 fun < main
Possible leaks report (possible leaks: 0 total size: 0 bytes)
Checking for memory use...
Blocks in use report (blocks in use: 0 total size: 0 bytes)
execution completed, exit code is 0
====================================================================
Here, actual leaks is 1 which is 4 bytes, at 0x8060c20 , reason is fun < main. So we can know that fun() has a memory leak.
dbx tells only function where memory leaks are there, but it will not give exact Line Number.
@kova
Tuesday, August 4, 2009
Something to be proud of
Subscribe to:
Posts (Atom)
