ardsrk

436
Reputation
203 views

Registered User

Name ardsrk
Member for 1 year
Seen 2 days ago
Website
Location Bangalore, Karnataka, India
Age 25
I am a Linux fanboy. I program in C, C++ and Python. I am also an opensource enthusiast and prefer to plough through heaps on code or read books in free time.
Nov
21
answered How to compare size_t and pid_t with int
Nov
21
answered Reading code of real production projects. How to find?
Nov
19
accepted How to find shift/reduce conflict in this yacc file?
Nov
18
comment Memory full on calling a method through its method pointer
laalto: Though hard to find the leave was caused by a failed memory allocation. The lesson I have learned is to TRAP every call that can leave. Thanks.
Nov
15
comment C structs don’t define types?
Mikael is right, C++ does not require you to use struct while declaring types of the structure. Why was the answer down voted?
Nov
15
answered How to find shift/reduce conflict in this yacc file?
Nov
14
comment Good C code to read for learning
I would personally ask you to look at wget. It is a useful utility backed by friendly and talented bunch of programmers.
Nov
14
answered Javascript code,unterminated string literal
Nov
14
answered I want to start reading the Python source code. Where should I start.
Nov
13
asked Memory full on calling a method through its method pointer
Nov
11
answered Is this simple python code thread safe?
Nov
11
answered what is operation overloading?
Nov
11
comment Very fast memcpy for image processing?
banister: don't forget to mail him that you used his code in your project ;) [ williamchan.ca/portfolio/assembly/… ]
Nov
11
answered Function to read files one by one in a directory
Nov
6
comment Finding out the time taken to execute a function
I think the library function that I call for actually matching the templates has a very sophisticated and efficient implementation. It just takes few hundred nanoseconds to complete. Thanks!
Nov
6
asked Finding out the time taken to execute a function
Nov
4
asked Store some text persistently in a browser using Javascript
Sep
30
comment Behavior of C++ after destruction
@ChrisW - yeh this would have been even more easier to implement. Its not the messageProcessor I want to delete but the CSocketReader object. Anyway, I got your idea. Thanks.
Sep
29
comment Behavior of C++ after destruction
This solution worked without needing significant changes to the source. Thanks.
Sep
29
comment Behavior of C++ after destruction
This is a neat solution. Except that if ResponseReceived method leads to a chain of method calls and the decision to delete the SocketReader object is made at the last call I would need to return bool all along the chain of calls.
Sep
25
asked Behavior of C++ after destruction
Sep
16
awarded  Yearling
Aug
29
comment C++ class design problem
@rocknroll: I would call MsnUtility::Instance() method during single threaded startup of the application, say in one of the class's constructors. I think that would suffice to make it thread safe. What say?
Aug
28
comment C++ class design problem
Vijay, does instance need to be a static class variable? What are the drawbacks if I make instace a local static variable and declare it in the MsnUtility::Instance() method itself as Abhay suggests.
Aug
28
comment C++ class design problem
Maciek: I am not going to need multiple instances of MsnUtility. Just a single instance that contains all necessary protocol variables and the associated setter/getter methods.
Aug
28
asked C++ class design problem
Aug
3
comment loop through $_GET results
sanitize the user input before doing anything with them
Jul
28
answered How to parse a URL in C?
Jul
28
revised What undefined behaviour does this C++ code contain
added 1862 characters in body
Jul
27
comment What undefined behaviour does this C++ code contain
oops! I will forever remain a dyslexic
Jul
27
revised What undefined behaviour does this C++ code contain
added 2559 characters in body
Jul
27
comment What undefined behaviour does this C++ code contain
This was the Eureka moment
Jul
27
comment What undefined behaviour does this C++ code contain
Charles, I don't think a copy constructor is needed in this example. I declared the copy constructor to be private and did not provide a definition. Yet the code compiled. The intention was to implement the copy-and-swap idiom in Widget::SelfAssignmentAndExceptionSafe
Jul
27
comment What undefined behaviour does this C++ code contain
Greg, thanks!!!
Jul
27
comment What undefined behaviour does this C++ code contain
Neil, that I could. I only wanted to know the nuances involved.
Jul
27
comment What undefined behaviour does this C++ code contain
But under self assignment both origColorPallete and rhs.colorPallete are the same. Correct?
Jul
27
asked What undefined behaviour does this C++ code contain
Jul
26
answered firefox addon installation issue
Jul
14
comment url problem with json data
GET is a method of the HTTP [ en.wikipedia.org/wiki/… ]. But you are using GET as part of the URL. URL only specifies the pathname of the file to be fetched from the server's file system and including GET as part of the pathname would be incorrect.
Jul
14
answered Projects for C++ Beginner/Intermediate?
Jul
8
asked User input, PHP, Javascript and security
Jun
26
comment Help me understand this “Programming pearls” bitsort program
I will accept Laurence's answer as it helped me understand about the mechanics of the program at a fundamental level.
Jun
26
comment Help me understand this “Programming pearls” bitsort program
No worries. I appreciate your participation.
Jun
26
comment Help me understand this “Programming pearls” bitsort program
quinmars, could you please elaborate
Jun
26
asked Help me understand this “Programming pearls” bitsort program
Jun
23
answered Why do you have to link the math library in C?
Jun
17
comment Symbian: Is it possible to get access to a list of contacts through an application?
Dude try adding some more detail to your answer. It would really help others too
Jun
9
answered I had written a simple cobol prog in ECLIPSE. But i am unable to compile,run that program
Jun
5
awarded  Critic