Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
2k views

How many and which are the uses of “const” in C++?

as a novice C++ programmer there are some constructs that look still very obscure to me, one of these is const. You can use it in so many places and with so many different effects that is nearly ...
18
votes
19answers
2k views

uses for state machines

In what areas of programming would I use state machines ? Why ? How could I implement one ? EDIT: please provide a practical example , if it's not too much to ask .
14
votes
7answers
3k views

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. ...
13
votes
2answers
6k views

using __init__.py

I am not getting usage scenarios or design goals of python __init__.py in my projects. Assume that I have 'model' directory (refers as a package) which I have kept the following files. 1. ...
12
votes
7answers
2k views

Where is Ada used (apart from safety-critical software)?

When one thinks of Ada, one usually thinks of avionics. What I'm interested in are some other applications of Ada? Where is it used? Are there any shipped applications written in Ada? For example, ...
11
votes
4answers
8k views

Network usage top/htop on Linux

is there a htop/top on Linux where I get to sort processes by network usage ?
8
votes
5answers
608 views

What is a practical use for PHP's sleep()?

I just had a look at the docs on sleep(). Where would you use this function? Is it there to give the CPU a break in an expensive function? Any common pitfalls? Cheers.
8
votes
5answers
2k views

python optparse, how to include additional info in usage output?

Using python's optparse module I would like to add extra example lines below the regular usage output. My current help_print() output looks like this: usage: check_dell.py [options] options: -h, ...
8
votes
13answers
862 views

C++ reference type recommended usage

I am programming in C++ more then 5 years, and have never met any place where reference of the variable is recommended to use except as a function argument (if you don't want to copy what you pass as ...
7
votes
6answers
1k views

What really is the purpose of “base” keyword in c#?

Thus for used base class for some commom reusable methods in every page of my application... public class BaseClass:System.Web.UI.Page { public string GetRandomPasswordUsingGUID(int length) { ...
7
votes
2answers
699 views

C++: What is the appropriate use for the std::logic_error exception?

If you use std::logic_error exception in your code, in what case do you use it for?
7
votes
5answers
340 views

Should the command line “usage” be printed on stdout or stderr?

When printing the "usage" of an application, should it be done on stdout or on stderr? Depending on the application I've seen several cases, but there doesn't seem to be one rule. Maybe I'm mistaken ...
7
votes
6answers
744 views

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 ...
7
votes
3answers
3k views

MSSQL Database Cleanup - How do you find unused objects (Tables, Views, Procs, Functions)

Lets say you have inherited a MS SQL 2000 or 2005 database, and you know that some of the Tables, Views, Procs, and Functions are not actually used in the final product. Is there some kind of ...
6
votes
2answers
211 views

Supero (Haskell supercompiler) usage?

I'm having a look at this project http://community.haskell.org/~ndm/supero/ I have downloaded and compiled the program, and could use it on the included samples. But I tried it on my source code and ...
6
votes
4answers
768 views

How can you tell if a PL/SQL Package, Procedure, or Function is being used?

How can you tell if a PL/SQL Package, Procedure, or Function is being used? Is there an Oracle table or view that contains statistics on PL/SQL Package, Procedure, or Function usage?
6
votes
6answers
349 views

is it legal/ethical to use source code provided in academic papers, or talks given at trade events like siggraph?

Is it legal to use source code from papers and such? Like this paper on perlin noise: http://mrl.nyu.edu/~perlin/paper445.pdf Links to this source code: http://mrl.nyu.edu/~perlin/noise/ And Stam's ...
6
votes
1answer
2k views

c# calculate CPU usage for a specific application

I'm trying to figure out how to get the CPU usage for a particular process but can only find information relating to overall CPU usage. Does anyone know how to extract the current CPU usage in ...
6
votes
6answers
171 views

Getting a grasp of how many people use my software

We have a very small, specialized user base. No community. My boss wants to find out who is using it. And his approach is to simply make a hidden connection, maybe an auto update function, enabled by ...
6
votes
8answers
735 views

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 ...
6
votes
7answers
11k views

How to get current CPU and RAM usage in C++?

is it possible, in C++, to get the current RAM and CPU usage? Is there a platform-indepentent function call? Thank you.
5
votes
1answer
167 views

reading application usage information

All, as you probably know, when dialing " * # * # 4 6 3 6 # * # * " a testing menu appears. on this menu you van select > application statistics in order to read application usage time and lunch ...
5
votes
4answers
504 views

Can a 32-bit program use more than 4GB of memory on a 64-bit OS?

Is a 32-bit program running on a 64-bit OS able to use more than 4GB of memory if available?
5
votes
10answers
378 views

Should properties in C# perform a lot of work?

When a property is read from or is assigned to, one would not expect it to perform a lot of work. When setSomeValue(...) and getSomeValue(...) methods are used instead, one should not be that ...
5
votes
5answers
1k views

Success stories for JavaFX

Did anyone here a real company using JavaFX for real life applications? I did a shallow search about JavaFX usage, and found almost no heavy usage case. Anyone knows companies which actually using ...
5
votes
3answers
5k views

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; ...
5
votes
5answers
359 views

Software usage documentation tools for Web applications

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 ...
5
votes
8answers
672 views

Best traffic / performance / usage monitoring module?

Are there any open source (or I guess commercial) packages that you can plug into your site for monitoring purposes? I'd like something that we can hook up to our ASP.NET site and use to provide ...
4
votes
4answers
482 views

do while loop causing 100% CPU usage with curl_multi_exec

This is a loop used in our script with curl. It's causing CPU usage to shoot up to 100%. A friend said "Your computer is looping so fast here it doesn't have time to process the request since it is ...
4
votes
5answers
609 views

In HTML5, can the <header> and <footer> tags appear outside of the <body> tag?

I'm currently using the above tags in this way (classic tag order): <html> <head>...</head> <body> <header>...</header> ...
4
votes
2answers
262 views

Symfony form generation - why?

I've been pondering this for awhile now - I never fully grasped why you'd want to generate all your forms programmatically, unless they were going to be fully dynamic. But from my experience, most are ...
4
votes
5answers
348 views

Software usage analytics in C#

I have a project i am working on currently and would like to implement some sort of software tracking in the code. ideally, stuff like how often its launched. how long it runs for, feature tracking, ...
4
votes
3answers
561 views

How to get power usage on a Mac

I'm trying to get the power usage (in watts) but I can't figure out how. I looked at pmset and IOKit but couldn't find anything about it. coconutBattery can calculate it for laptops using the MacOS ...
4
votes
4answers
186 views

How to call a template method?

There are a lot of online documents explaining how to write template methods, but not much example about how to call them, how to use them in code. I have a template method like this: ...
4
votes
4answers
2k views

How to retrieve cpu usage per process

There is a PerformanceCounter in .net platform, which can retrieve the cpu usage of every single process. Is there any similar solution in delphi? Note that the names of all processes are already ...
4
votes
4answers
98 views

In what way do you use delegates and/or events other than for the UI?

I am curious as to how other developers use delegates and/or events other than for responding to UI events? I, personally, don't use them for anything other than responding to UI events but I have a ...
4
votes
4answers
331 views

Why would one want to use ruby over python or vice versa?

I wanted to know, while deciding which language or technology to use for implementing an idea; a design, what are the factors involved in making a decision? Specifically talking about popular ...
4
votes
5answers
262 views

Is there any way to determine the amount of time a client spends on a web page

Assuming I have an open source web server or proxy I can enhance, let's say apache or squid. Is there a way to determine the time each client spends on a web page? HTTP is of course stateless, so ...
3
votes
2answers
86 views

typeof usage for undefined variables

what is the best usage for the "typeof" JavaScript function? if (typeof (myvar) == 'undefined') { //or if (typeof (myvar) == undefined) { //or if (typeof myvar == 'undefined') { //or if (typeof ...
3
votes
3answers
251 views

How can I optimize or limit the CPU usage a zip process (DotNetZip) in c#?

Good day guys I have an app that I use to archive a folder using the DotNetZip library. I notice that when it goes to the actual "zipping" process, it uses up 100% of the CPU. This app will be used ...
3
votes
2answers
491 views

converting double values for making a Point type

I want to draw a curve (a diode curve) in a picturebox using imagefrom bitmap. I have a problem now and it is my point data are saved as Double and it is really important to keep the precesion. for ...
3
votes
2answers
105 views

Cellular data billing — does it include TCP/IP headers

I'm currently building an application that is intended to run on an embedded system hooked up to a cellular data card. I've been made aware of some low-data plans from several carriers, and our ...
3
votes
5answers
466 views

Usage patterns for private, static, final, public, abstract keywords in java

I know what all of these do except for abstract. I'm currently in the process of teaching myself java with what I consider a middle-school-level education (my highschool was in a bad neighborhood so ...
3
votes
3answers
159 views

MySQL: Why is DELETE more CPU intensive than INSERT?

Hey there. I'm currently taking the course "Performance Evaluation" at university, and we're now doing an assignment where we are testing the CPU usage on a PHP and MySQL-database server. We use ...
3
votes
3answers
129 views

When should I use a SQLTransaction

What is the appropriate time to use a SQLTransaction? I use them for all of my INSERT, UPDATE and DELETE statements. Is this the correct usage or am I doing a bit of overkill?
3
votes
1answer
940 views

Android — How to track bandwidth usage by application or process?

I can track the overall bandwidth usage of Android device . I wanted to know if there is any method or way , maybe any API or class that can help me track my bandwidth usage per application or process ...
3
votes
6answers
350 views

When to use static classes and methods?

I have a general question...when should i be using static classes or static methods?.. I know the idea that static methods can be called without instantiating...and static classes should only be used ...
3
votes
7answers
602 views

Can C++ memory leaks negatively affect CPU usage?

I have a C++ program that has a pretty terrible memory leak, about 4MB / second. I know where it's coming from and can fix it, but that's not my main problem. My program is taking up a very large ...
3
votes
6answers
660 views

What percent of web sites use JavaScript?

I'm wondering just how pervasive JavaScript is. This article states that 73% of websites they tested rely on JavaScript for important functionality, but it seems to me that the number must be larger. ...
3
votes
0answers
199 views

An explanation of memory usage on Windows server 2003

We've been working on a bit of puzzle at work. We have an application service installed on two machines, both running Windows server 2003. These services do exactly the same thing. However once ...

1 2 3 4 5