Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
11answers
1k views

Giving estimates for large scale projects in an Agile Environment

My firm just got its first large-scale development project inquiry and I would like to use an Agile process. The client has a vision for the application but openly admits to having very few ...
20
votes
5answers
8k views

BASH, escaping single-quotes inside of single-quoted strings

There is an example of "how to do this" on Stuart Colville's blog, but the example used there and the explanation of why it works is unclear. To keep things simple: Let's say you have a bash alias ...
14
votes
4answers
536 views

Invoicing vs Quoting or Estimating

If invoices can be voided, should they be used as quotations? I have an Invoices tables that is created from inventory associated with a Job or Order. I could have a Quotes table as a halfway-house ...
9
votes
4answers
259 views

Is > ever necessary?

I now develop websites and XML interfaces since 7 years, and never, ever came in a situation, where it was really necessary to use the > for a >. All disambiguition could so far be handled ...
8
votes
6answers
5k views

Stripping single and double quotes in a string using bash / standard Linux commands only

I'm looking for something that will translate a string as follows, using only bash / standard Linux commands: Single-quotes surrounding a string should be removed Double-quotes surrounding a string ...
6
votes
3answers
230 views

Strange Lisp Quoting scenario - Graham's On Lisp, page 37

I'm working my way through Graham's book "On Lisp" and can't understand the following example at page 37: If we define exclaim so that its return value incorporates a quoted list, (defun exclaim ...
6
votes
3answers
901 views

Unix: How to properly nest Bash backticks

Either I missed some backlash or backlashing does not seem to work with too much programmer-quote-looping. $ echo "hello1-`echo hello2-\`echo hello3-\`echo hello4\`\``" hello1-hello2-hello3-echo ...
5
votes
4answers
688 views

Python __setattr__ and __getattr__ for global scope?

Suppose I need to create my own small DSL that would use Python to describe a certain data structure. E.g. I'd like to be able to write something like f(x) = some_stuff(a,b,c) and have Python, ...
4
votes
3answers
418 views

General string quoting for TCL

I'm writing a utility (which happens to be in python) which is generating output in the form of a TCL script. Given some arbitrary string variable (not unicode) in the python, I want to produce a TCL ...
3
votes
5answers
83 views

In PHP, how do I make a mySQL select query that contains both quotation marks and apostrophes?

I'm getting data into my database without any problem using mysql_real_escape_string. So an entry in the database might be: 1/4" Steve's lugnuts So that's perfectly in the database. Now I want to ...
3
votes
1answer
91 views

XML quoting in Python

How to quote XML to get the string with quoted control characters in python? Source string: <root namespace="value" id="guid"> <child name="child1">Content</child> ...
2
votes
3answers
101 views

Create dynamic options menu with kdialog bash script : Printf can't do the job ? quoting issue

i would like create a menu with kdialog like this kdialog --menu "choose your profile" "\"-vcodec mpeg2\"" "mpeg" "\"vcodec stuff -ab 100ak\"" "avi" "\"-acodec mp3 -ab 128k"\" "mp3" now ...
2
votes
5answers
72 views

Which form is preferable to use in Bash?

I'm studyng Bash, and I see that the form C=example echo "$C" give the same result of the form C="example" echo $C I'd like to know if is better put the " " in the assignment ...
2
votes
2answers
123 views

Forcing an argument in a Clojure macro to get namespace-captured

I am working on a Clojure macro to help build GridBagLayout-based JPanels. I can get Java classes in a defaults map inside the macro to namespace-qualify, but not those passed in as arguments. What ...
2
votes
3answers
237 views

Bash argument passing to child ($@ or $*)

I'm trying to write a script that can be prepended to any command. When done, it will run the command given by the arguments following, then email the user when the command is complete. $PROG=$1 // ...
2
votes
6answers
1k views

Bash problem with eval, variables and quotes

I've been reading about quotes in bash here and everywhere else, but i got no help solving this problem. The thing is, I have a little script for doing backups in a loop. If I don't use eval then I ...
2
votes
7answers
3k views

Write CSV To File Without Enclosures In PHP

Is there a native function or solid class/library for writing an array as a line in a CSV file without enclosures? fputcsv will default to " if nothing is passed in for the enclosure param. Google is ...
2
votes
6answers
452 views

quoting constants in php: “this is a MY_CONSTANT”

I want to use a constant in php, but i also want to put it inside double quotes like a variable. Is this at all possible? define("TESTER", "World!"); echo "Hello, TESTER"; obviously outputs "Hello, ...
2
votes
1answer
287 views

GNU Screen: programmer-quotes ` ` in Readbuf?

The commands need absolute paths in slurping. So I need programmer-quotes, because of laziness to write long paths. How can I use them like: ^a :readbuf `pwd`/file
2
votes
2answers
522 views

My Zend Framework 'quoting' mess

I've got a probably very simple issue to which I can't find a satisfactory (subjectively seen) answer in the Zend Framework manual or elsewhere... There are so many ways how I can hand over my php ...
2
votes
1answer
106 views

Estimate quote for a Flash Application with server side interaction

I am building a Flash AS3 application that allows users to modify images, (drag and drop, select, scale, alter saturation, etc) and then submit-save them to a server. The user will then have the ...
2
votes
1answer
389 views

\\\\$ converted to \$ in jsp template data

I just stumbled unto a weirdness in my JSP code. It seems that a double backslash followed by a dollar or percent symbol gets converted to a single backslash (plus symbol). That is, the following ...
1
vote
1answer
36 views

Parsing of HTTP Headers Values: Quoting, RFC 5987, MIME, etc

What confuses me is decoding of HTTP header values. Example Header: Some-Header: "quoted string?"; *utf-8'en'Weirdness Can header value's be quoted? What about the encoding of a " itself? is ' a ...
1
vote
2answers
109 views

svn | awk | mail works in bash, but not in cron job

I have the following command to show changes to a subversion repository svn log -v -r{$(date +%Y-%m-%d)}:HEAD http://therepository | awk '/^r[0-9]+ / {user=$3} {if (user=="username") {print $1 $2 ...
1
vote
1answer
79 views

Get a file content in Bash after expanding its variables

cat file $VAR cat script #!/bin/bash CONTENT=$(<file) echo $CONTENT ./script $VAR I'd like to get the variable's actual value, not "$VAR". How to get a weaker quoting? Many thanks!
1
vote
2answers
457 views

Process.Start, Batch files and Quoting

I wrote a BAT script that automatically connects and disconnects a broad band connection: netsh mbn connect interface="Mobile Broadband Connection" connmode=name name="My Provider" netsh mbn ...
1
vote
4answers
561 views

Perl one-liner with single quote

I was use perl one-liner to create SQL statement, but I am not able to include single quotes. This is what I want, take first filed and add quotes to it. echo "a,b" | perl -F',' -lane 'print $F[0];' ...
1
vote
1answer
148 views

How do I disable quoted identifiers when scripting out SQL Server database objects in Visual Studio?

I'm using Visual Studio 2005 to script out a database so that I can put it in subversion. Now one complaint that I have is that it puts my stored procedure code in a single literal string, like in the ...
1
vote
3answers
1k views

Escape backquote in a double-quoted string in shell

For the command: /usr/bin/sh -c "ls 1`" (a backquote after 1). How to make it run successfully? Adding a backslash before "`" does not work. ` is a special char as we know, and I tried surrounding ...
1
vote
2answers
2k views

Using Make $(dir) or $(notdir) on a path with spaces

I'm using code similar to the following in a Makefile: empty:= space:= $(empty) $(empty) path_escape = $(subst $(space),\$(space),$(1)) TOP=$(call path_escape,$(abspath .)) TARGET=$(TOP)/foo $(info ...
1
vote
3answers
4k views

KSH scripting: how to split on ',' when values have escaped commas?

I try to write KSH script for processing a file consisting of name-value pairs, several of them on each line. Format is: NAME1 VALUE1,NAME2 VALUE2,NAME3 VALUE3, etc Suppose I write: read l ...
0
votes
2answers
46 views

Ajax request quoting

I am trying to send an Ajax request using the prototype framework that adds a new row to my table (existing) on success. I have already made successful requests with other functions but i can't get ...
0
votes
2answers
66 views

how to recognize \n in bash

Have such script: #! /bin/bash typeset -i i END let END=500 i=1 remainder=1 accum="use yola_test;\n" for ((i=1;i<=END;++i)); do # str1=$( echo "$i" | md5sum | md5sum ) title="title_$i" # ...
0
votes
1answer
31 views

MySQL Escaping issues

I am doing the following SQL Command: INSERT INTO lastlogon( username, lastlogon, datechecked ) VALUES ('? Guest_SeEeTooxSafiaH? ? ? ? ? ? ', '1969-12-31', NOW( )) Which PHPMyAdmin states was ...
0
votes
1answer
50 views

BASH quotes in debug mode

I'm using debug mode in a BASH script to trace the commands that have been executed by the script. So far this has all worked very well but now I need to run a command with some options contained in a ...
0
votes
2answers
56 views

Quoting in the function arguments error

How should be fixed command variable to get a correct behavior? #!/bin/bash function f ( ) { echo "$2" } command="f --option=\"One Two Three\" --another_option=\"Four Five Six\"" $command f ...
0
votes
2answers
74 views

Quoting in VBscript

I am using vbscript to query an "at" job that is executing a specific command and I believe I have the quoting wrong. I have confirmed the script works as intended when I query something that does not ...
0
votes
2answers
66 views

What is the best way to write a part of buffer with quoting?

For exaplme, I have some buffer : const char* buf with next content (mysql packet): 72 00 00 00 select * from `db` where (`name` = "Bill's car") and i need to write to ostream only query with ...
0
votes
2answers
34 views

Inserting text into a varchar which happens to contain sql in MySQL?

I'm trying to insert text which happens to contain a sql query into a varchar, but MySQL is producing an error when I execute the insert. How can I accomplish this without producing an error? Here's ...
0
votes
2answers
49 views

How do I isolate quoted text from a file to a shell variable?

How do I isolate quoted text from a file to a shell variable? Also: how do I ignore lines starting with '#'? Let's say I have the text file 8723 "full name" "more data here" #5002 "another name" ...
0
votes
2answers
226 views

bash script code inside C program

my problem is the following: I have this bash script: #!/bin/bash IFSBAK=$IFS if [ "$TXTEXT" = "" ]; then CMD="find . -iname \"*.txt\" -or -iname \"*.text\"" else CMDTEMP="find . " IFS=":" ...
0
votes
2answers
218 views

One Makefile, used in many subdirectories

I'm looking to write a single makefile that calls a target in it itself in all the subdirectories of the current directory. I've come up with this as a starting point: SUBDIRS := $(shell find . ...
0
votes
2answers
103 views

Ruby strange quoting

sorry for bad English. Why Ruby quoting so strange? Or may be this is a bug? irb(main):027:0> p eval "\" \+ \\+ \\\+ \\\\+ \\\\\+ \"" produces => " + + + ...
0
votes
2answers
121 views

R: quoting unquoted members in nested list-

Using R, I generate a list that contains certain unquoted elements. Please see at the bottom- it is invalid javascript code. R code (does not work) outq <- lapply (out, function (el){ el <- ...
0
votes
5answers
148 views

Quoting of decimal values

I am storing a running total in a Decimal(10,2) field and adding to it as items are processed. update foo set bar = bar + '3.15' About 20% of the times a warning is issued "Data truncated for column ...
0
votes
6answers
389 views

PHP-generated javascript and quote marks

I'm generating some javascript in my PHP code, and I need to assign some php variables to javascript variables. Unfortunately, sometimes my PHP variables contain quote marks. for instance: $foo = ...
0
votes
2answers
582 views

How to call popen() with a pathname containing spaces under Windows in C/C++?

I'm trying to call popen() using mingw like this: #define RUN_COMMAND "\"C:\\Program Files\\CA\\BrightStor ARCserve Backup\\ca_qmgr.exe\" \"-list\"" int main() { outputPointer = ...
0
votes
3answers
850 views

BASH - Single quote inside double quote for SQL Where clause

I need to send a properly formatted date comparison WHERE clause to a program on the command line in bash. Once it gets inside the called program, the WHERE clause should be valid for Oracle, and ...
0
votes
1answer
705 views

PHP: Using quote() on strings in MDB2 with MYSQL

I'm using Pear's MDB2 and really enjoying it, but there is something that is starting to annoy me. I build the SQL string in the following way, using the quote method of the mdb2 package: $sql = ...