0
votes
2answers
55 views
passing a command to gdb when running a program
I am using gdb to debug a program, and I want to have the output of the command
$(perl -e 'print "A"x20')
as my argument. How can I do that? This way the argument would be very …
0
votes
4answers
91 views
To understand Python’s optparse
Thank you for quack in pointing out the off-by-one!
The following code is my first attempt in writing code with Optparse.
How can you fix the following bug in getting the help by …
0
votes
3answers
80 views
“error: too few arguments to function”
I have a C program called opencv2.0 function :
cvSaveImage( out_img_name, img);
Compiler gcc reports that
too few arguments to function cvSaveImage
The prototype of cvSave …
0
votes
1answer
19 views
Nant, SqlCmd -v switch and spaces in nant property fails build with invalid argument
I have a nant script that ...
1. takes the content of disc-file
2. assigns that content to a nant property
3. and then calls sqlcmd with a -v passing in that property containg the …
0
votes
2answers
48 views
Expect argument handling
I'd like to create an expect script that connects to the server via telnet and does some authorisation. I have a problem with using script parameters though. Based on man I expecte …
1
vote
5answers
121 views
default arguments in constructor
Can I use default arguments in a constructor like this maybe
Soldier(int entyID, int hlth = 100, int exp = 10, string nme) : entityID(entyID = globalID++), health(hlth), experienc …
3
votes
8answers
335 views
What is the meaning of leading underscores in a C++ constructor?
OK I am not a very experienced C++ programmer, but I was wondering what is the significance of the underscores in the arguments of the following constructor?
class floatCoords
…
1
vote
4answers
152 views
Difference between variable-length argument and function overloading
This C++ question seems to be pretty basic and general but still I want someone to answer.
1) What is the difference between a function with variable-length argument and an overlo …
0
votes
1answer
104 views
What is the funniest technical coding/design argument you had with your manager. [closed]
What is the funniest technical coding/design argument you had with your manager? Just to check whether managers are really like that !!
1
vote
3answers
65 views
String arguments in python multiprocessing
I'm trying to pass a string argument to a target function in a process. Somehow, the string is interpreted as a list of as many arguments as there are characters.
This is the cod …
1
vote
1answer
130 views
How do you specify a required switch (not argument) with Ruby OptionParser?
Say I'm writing a script and I want to require a --host switch (with value of course) but if the --host switch isn't specified I want the option parsing to fail. I can't seem to f …
1
vote
7answers
79 views
Python object intialization bug. Or am I misunderstanding how objects work?
1 import sys
2
3 class dummy(object):
4 def __init__(self, val):
5 self.val = val
6
7 class myobj(object):
8 def __init__(self, resources):
9 …
0
votes
4answers
54 views
Where to perform argument validation in JavaScript?
Yeah, read properly. In the last time I saw different patterns of argument validation in JavaScript (functions) and wondered which of them would be best-practice. At first I'll sho …
0
votes
4answers
237 views
Redirecting output to a command-line argument of another command in Windows
How can I, in Windows, use the output of a script/command as an argument for another script?
(A pipe | will not work here, since that other script doesn't read from the standard in …
3
votes
8answers
226 views
pythonic way to convert variable to list
I have a function whose input argument can either be an element or a list of elements. If this argument is a single element then I put it in a list so I can iterate over the input …
