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.
…
6
votes
5answers
847 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
…
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
129 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 …
2
votes
6answers
275 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 …
2
votes
3answers
322 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://" + DomainName + "'
WHERE …
2
votes
6answers
539 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
2answers
38 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 …
1
vote
3answers
116 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 …
1
vote
4answers
850 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 …
1
vote
6answers
584 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
3answers
56 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
0
votes
1answer
212 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: …
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... …
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 I make the copied …
