1,359 reputation
1017
bio website
location
age
visits member for 4 years
seen 23 hours ago
stats profile views 191

Currently I develop application for mobile platforms. Earlier, worked on C/C++ (cross-platform, . Earlier, worked on C/C++ (cross-platform, client-side, server-side, networking, drivers and more...). Even earlier, worked on wxPython.

Also coding indicators and experts on MQL4 for MetaTrader 4 (forex trading platform) in my free time.


Aug
10
comment Android emulator screen too tall
Exactly what I needed
Feb
16
awarded  Notable Question
Oct
21
comment What is the difference between a synchronized method and synchronized block in Java?
In the lock scope, you probably meant "... while in the synchronized block, the lock is held only during the synchronized block" and not "... while in the synchronized method the lock is held only during the synchronized block"
Jul
26
awarded  Notable Question
Jul
20
answered TinyXML: how to parse a file pointer
Jul
20
awarded  Popular Question
Jul
20
awarded  Popular Question
Jul
20
awarded  Commentator
Jul
20
awarded  Scholar
Jul
20
awarded  Supporter
Jul
20
awarded  Editor
Jul
20
awarded  Student
Jul
20
awarded  Teacher
Jul
12
comment Simple email program / library recommendations
There is also libvmime. It is a free mail library for C++ (vmime.org) and can be used to send mail.
Mar
18
comment How to generate .sln/.vcproj using qmake
Worked like a charm. Thanks.
Sep
24
answered How do you iterate through every file/directory recursively in standard C++
Sep
18
revised getsockopt() returns EINPROGRESS in non blocking connect()+select() flow
added 15 characters in body
Sep
17
comment How do I zip a directory of files using C++?
You can compress whole directories with minizip (can be found in zlib/contrib/minizip) but you will have to iterate over directory's contents and add the files one by one (boost::filesystem can help).
Aug
31
revised getsockopt() returns EINPROGRESS in non blocking connect()+select() flow
closed
Aug
26
comment Is persistent HTTP with HTTP/1.0 possible?
meandmycode: Suppose that my server responds with http/1.0. Still the proxy will send the "Proxy-Connection: close" and tear down my underlying socket because it doesn't support persistent http.