usage

Where is Python used? I read about it a lot on Reddit.

I have downloaded the Pyscripter and learning Python. But I have no Idea if it has any job value , especially in India. I am learning Python as a Hobby. But it would be comforting to know if Python programmers are in demand in India. ...

Using Awstats for generating usage statistics for a Liferay portal

Has anyone tried to use Awstats for generating usage statistics for a Liferay portal? Can you share your experience on how to do it? Aside from Awstats and Google Analytics, are there any other alternatives for generating statistics for a Liferay portal? (I can't use Google Analystics since it's a restricted internal portal) ...

Practical uses for threads

In your work, what specifically have you used threads for? (Please give a description of the application and how the thread helped/enhanced the application.) ...

How can I categorize the memory usage of a NON-.NET application/DLL ?

I have a 32-bit Visual Studio 8.0 C++ Windows DLL (non-.NET) that appears to be taking up more memory than I would expect. I want to determine exactly where the memory is going, not just a single figure of the total memory used (not interested in Task Manager or Resource Monitor's memory usage values). Back in 16-bit days HeapWalker was...

What is Sqlite used for?

I don't know how authoritative this is but I found this: http://www.sqlite.org/cvstrac/wiki?p=PerformanceConsiderations and it doesn't seem good to have a lot of connections to sqlite. This seems to be bad for the web and most applications that have more than a few users. I'm having a hard time thinking of what sqlite would be used f...

Issue while using libcurl in my app

Hi, I did download "http://curl.haxx.se/download/libcurl-7.19.3-win32-ssl-msvc.zip" and copied the dll and lib files to my app folder and added curllib.lib to the linker properties in msvc. when I build the application then no error is coming, but when I run the application I am receiving the following error. LDR: LdrpWalkImportDescript...

What is the HeadBucket operation in Amazon S3

I have been looking at the usage reports from Amazons S3 service and noticed that there is a DataTransfer-out-bytes charge for GetObject operations (ok i understand this one) and also a DataTransfer-out-bytes charge for HeadBucket operations. What is HeadBucket, when is this request made? cheers ...

Apache resource usage vs Mongoose or other lightweight web server

How much memory and/or other resources does Apache web server use? How much more are lightweight servers efficient? Say appache vs. Mongoose Web Server Neil Butterworth you out there? Thanks. ...

What's the best way to customise and view Amazon Web Service Usage reports ?

Hi, does anyone know the best tools to use to view amazon web service usage reports? I have downloaded previous reports as .csv and opened in Excel. I want to be able to generate custom reports with the data however and so think XML is a better bet and to use something like Altova XMLspy with a stylesheet to generate custom reports. Is ...

Is there any suggestions about cutting cpu usage in Java?

I wrote a Java program to download HTML page. But CPU usage is near to 100%, while network utilization is lower than 3%. It seems like that CPU became my bottleneck. So is there any suggestions about cutting my CPU usage. ...

Winform memory spike

Hi, I have the following issue. I have deployed a smart client application to several users. Memory usage is adequate for all of them except one. For this particular user the memory usage is 2 to 2 1/2 times the usage than for any other user. The desktop specs are the same as for the other users. The computer was defragged not long ago. ...

What usage/analytics information is available for iPhone applications?

If you deploy an application through the iTunes app store, what usage information do you get from Apple? Do you only get the number of downloads/sales, and does this differ for free vs. paid apps? Do you get any information regarding how often it is used, crash logs, demographics info, etc? Is the only way to build hooks to your own s...

Is Objective-C only used for development on Mac OS/iPhone?

The title says it all. I don't know Objective-C but to me it appears a nice language. But the only context I know it from is everything Apple. But Objective-C is even in the gnu compiler collection. Is there something missing in the open ones? Or is there already a broader base for Objective-C? I'm interested if there are companies tha...

Software usage documentation tools for Web applications

Hi, We would like to prepare the software usage documentation for a web application. This mainly contains the screen shots ( along with relevant documentation ) in most of the pages. Also we would like to have a top menu links using which we can jump to the corresponding pages. Please suggest the tools which can be useful to fulfill th...

When should I use a Domain Specific Language?

I would like some practical guidance on when I should use a Domain Specific Language. I have found resources about advantages and disadvantages, but what kind of project would warrant its use? It seems like there is a big investment in time to create and maintain a DSL, so in what application space would I get a productivity return on ...

How do I get total GPRS usage in KBs on a Windows Mobile Device?

Anyone knows how to do this programmatically? I looked at the registry keys but I couldn't find anything. I don't know maybe I missed it. Under the registry key HKLM/Software/Microsoft/shell/cumulativecalltimers/line_0/ there are the values "OutgoingDataPhoneLifeTime" and "OutgoingDataPhoneLifeTimeNumCalls"; but these don't seem to be w...

Usage for databases

I've tried to motivate myself to learn databases several times now, but I'm having a hard time seeing where they're used. I don't do any web development nor any scientific computing, so is there anyplace where I could reasonably use a database? ...

Track application usage - C#

I would like to develop an application (that runs at all times in the background I guess) to track the usage of applications (msword, excel, powerpoint, *.exe, etc.). I can handle posting the data to a database but don't exactly know where to start with monitoring running applications (when they start, when they stop). Anyone have any ...

Track application Usage - C# .Net 2.0

I asked this question yesterday and got a great response/code example. The only problem is that I forgot to mention that I am forced to work with the .Net Framework 2.0 and can't use the List.Select ( I assume the linq namespace). Does anyone have a good work around for List.Select seen below: class Program { struct ProcessStartTi...

How to use stdext::hash_map where the key is a custom object?

Using the STL C++ hash_map... class MyKeyObject { std::string str1; std::string str2; bool operator==(...) { this.str1 == that.str1 ... } }; class MyData { std::string data1; int data2; std::string etcetc; }; like this... MyKeyObject a = MyKeyObject(...); MyData b = MyData(...); stdext::hash_map <MyKeyObjec...