4
votes
10answers
502 views
Help me understand this Brian Kernighan quote
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."
--Brian Kernighan
…
527
votes
654answers
81k views
Great programming quotes
There are a lot of great programming quotes out there. Which do you like?
Today (Sept 12, 2008) I heard a new one from a friend, Lars-Gunnar, he said "Gud finns i Emacs" (in Swedish). This basically …
0
votes
1answer
12 views
Is it possible to query an OleDB connection to find out if you must use square brackets or quotes?
Is it possible to query an OleDB connection to find out if you must use square brackets or quotes?
SQL:
SELECT [FullName] From [My Users]
Oracle
SELECT "FullName" From "My Users"
MySQL:
SELECT …
0
votes
3answers
34 views
How do I concatenate html as a string in VBA?
I'm a newbie at VBA and html and I'm getting very confused.
I'm trying to set a string variable to equal several concatenated html strings and control values. I can't figure out what I'm doing wrong.
…
1
vote
6answers
81 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 …
0
votes
1answer
32 views
Tricky makefile syntax with quotes
Hello,
I have the following start on a makefile rule (thanks to help from others), but it doesn't quite work yet:
test_svn_version:
@if [ $$(svn --version --quiet \
perl -ne …
0
votes
3answers
33 views
Windows Shell Scripting: Check for batch options containing double quotes…
Greetings, dear Experts!
I want to check the existense of parameter (or argument) sting at all in my batch script:
if "%*"=="" findstr "^::" "%~f0"&goto :eof
This works fine if none of …
0
votes
3answers
40 views
regex expression for escaped quoted string won’t work in php’s preg_match_all
I am trying to match quoted strings within a piece of text and allowing for escaped quotes within it as well. I tried this regular expression in an online tester, and it works perfectly. However, when …
1
vote
2answers
83 views
google finance tools on my website?
i am on the process of building a website execlusively for trading purposes. including live quotes and level 2 quotes. charts. user protofollio with automatic updates. news and so on.
am i allowed to …
2
votes
0answers
40 views
Quotes versus non quotes in bing [closed]
in bing.com :
java jobs -> 57,000,000 hits ("http://www.bing.com/search?q=java+jobs&go=&form=QBRE&scope=web&qs=n")
"java jobs" -> 234,000,000 hits …
5
votes
7answers
3k views
How can i parse a comma delimited string into a list (caveat)?
I need to be able to take a string like:
'''foo, bar, "one, two", three four'''
into:
['foo', 'bar', 'one, two', 'three four']
I have an feeling (with hints from #python) that the solution is …
0
votes
6answers
75 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 = …
1
vote
3answers
104 views
Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically?
In PHP, $_POST add slashes before a quotation mark automatically, so why bother applying mysql_real_escape_string()? For example, when I input 'rrr in an input field, and I get \'rrr when I echo it.
1
vote
4answers
869 views
How to insert text with single quotation sql server 2005
I want to insert text with single quote
Eg john's to table in sql server 2005 database
0
votes
1answer
37 views
zend framework : automatic quoting mysql queries doubts
I've got few doubts regarding quoting mysql queries in Zend framework. Though this question has helped me a bit but few things are still confusing:
1) $table is Zend_Db_Table. Trying to fetch a row …
