0
votes
0answers
14 views
How to escape backquote in a double quoted command string in shell
For the command: /usr/bin/sh -c "ls 1`" ( a back quote after 1)
How to make it run successfully? Adding "\" before "" does not work.
is a special char as we know, and I tried surrounding it with …
1
vote
2answers
41 views
IE doesn’t support Q tag but you can style it.
I am puzzled with the statement that IE does not support <q> tag but it renders just fine on IE as an inline element so if it doesn't support it, so what? We can just style it with CSS to …
0
votes
3answers
66 views
how to open a URL with non utf-8 arguments
Hello,
Using Python I need to transfer non utf-8 encoded data (specifically shift-jis) to a URL via the query string.
How should I transfer the data? Quote it? Encode in utf-8?
Thanks
3
votes
3answers
70 views
something confusing about define-key (and the issue of when to quote an argument)
It seems one is not supposed to quote KEYMAP when using define-key.
(define-key org-remember-mode-map "\C-c\C-r" 'org-remember-kill)
I'm confused because I think that all arguments of a function …
2
votes
5answers
139 views
What is a Good Programming Related Senior Quote? [closed]
Although I expect this question to last for no more than 30 seconds its worth a try.
What would be a good programming related senior quote that would be subtle enough so that I don't look like a flat …
1
vote
3answers
124 views
Simple regex - replace quote information in forum topic in C#
Hi!
This should be pretty straightforward I would think.
I have this string:
[quote=Joe Johnson|1]Hi![/quote]
Which should be replaced with something like
<div …
21
votes
7answers
9k views
Help me remember a quote from Alan Kay
Alan Kay was quoted several years ago to the effect that there had been only three new things in software in the preceding 20 years (effectively the lifespan of PCs). One of them was Spreadsheets.
…
-1
votes
1answer
70 views
character for single quote
(backtick) and ' are two different characters for single quote. I have a mysql script that shows the former two quote characters, if I change them to ', it breaks the syntax.
how do I type ` from the …
0
votes
1answer
230 views
Escape Single Quote Characters when Importing to SQLite
Hi everyone.
I have a records.txt file like this:
INSERT INTO 'blogtitles' VALUES('Kelly's at house');
INSERT INTO 'blogtitles' VALUES('Nice catch!');
When i try to import records.txt into the db: …
2
votes
6answers
280 views
What does this software quote mean?
I was reading Code Complete (2nd Edition), and came across a quote in the margin on page 87 by Bertrand Meyer.
Ask not first what the system does; ask WHAT it does it to!
What exactly is the …
6
votes
5answers
876 views
Stripping single and double quotes in a string using bash / standard Linux commands only
Hello Stack Overflow :-)
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
…
1
vote
4answers
866 views
How to use environment variable inside a quoted string in BASH script
I've tried various forms of the following in a bash script:
#!/bin/bash
svn diff $@ --diff-cmd /usr/bin/diff -x "-y -w -p -W $COLUMNS"
But I can't get the syntax to correctly expand the COLUMNS …
2
votes
6answers
553 views
What’s your best trick to break out of an unbalanced quote condition in BASE SAS?
As a base SAS programmer, you know the drill:
You submit your SAS code, which contains an unbalanced quote, so now you've got not only and unclosed quote, but also unclosed comments, macro function …
1
vote
6answers
597 views
Coding of parameter-value for SELECT in PHP-MySQL
alt A below is a statement from a php-mysql tutorial. It works as it should.
I found the id-value rather obfuscated and tested alt B. This also worked!
What is the point with the id-value of alt A?
…
0
votes
4answers
1k views
How can I convert JavaScript code into one big Java string
So I have 1000 lines of javascript. I need to turn it into a Java String so that I can output (via System.out.println or whatever).
I'm looking for an online tool to escape all the quotes... …
