Tagged Questions

0
votes
3answers
49 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? T …
3
votes
3answers
67 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 argume …
2
votes
5answers
115 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 do …
1
vote
3answers
85 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 class="quot …
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 w …
-1
votes
1answer
61 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 …
0
votes
1answer
167 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 recor …
2
votes
6answers
270 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! Wha …
6
votes
5answers
770 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 …
0
votes
4answers
764 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 ex …
2
votes
6answers
521 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 commen …
1
vote
6answers
568 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 i …
0
votes
4answers
967 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 …
2
votes
3answers
308 views

LDAP Query Failure due to single quote

Hi, I'm trying to find an employee in Active Directory using the following c# code: "Select userPrincipalName, ADsPath, Department, Mail, HomeMDB, cn, ssn FROM 'LDAP://" + Doma …
0
votes
3answers
1k views

What’s the easiest way to add a quote box to mediawiki?

I installed mediawiki on my server as my personal knowledge base. Sometimes I copy some stuff from Web and paste to my wiki - such as tips & tricks from somebody's blog. How do …